Documentation Index
Fetch the complete documentation index at: https://mintlify.com/blindpaylabs/blindpay-node/llms.txt
Use this file to discover all available pages before exploring further.
List Offramp Wallets
Retrieve all offramp wallets for a specific bank account.
const response = await blindpay.wallets.offramp.list({
receiver_id: "rcv_123",
bank_account_id: "bank_123"
});
The unique identifier of the receiver
The unique identifier of the bank account
Array of offramp wallet objectsShow Offramp Wallet Object
Unique identifier for the offramp wallet
External identifier for the wallet
ID of the BlindPay instance
ID of the receiver who owns this wallet
ID of the associated bank account
Blockchain network (currently only supports Tron)
The wallet address on the blockchain
ISO 8601 timestamp of when the wallet was created
ISO 8601 timestamp of when the wallet was last updated
Create Offramp Wallet
Create a new offramp wallet linked to a bank account.
const response = await blindpay.wallets.offramp.create({
receiver_id: "rcv_123",
bank_account_id: "bank_123",
external_id: "ext_wallet_123",
network: "tron"
});
The unique identifier of the receiver
The unique identifier of the bank account to link
Your external identifier for this wallet
Blockchain network (currently only “tron” is supported)
Unique identifier for the created offramp wallet
External identifier for the wallet
The generated wallet address on the blockchain
Get Offramp Wallet
Retrieve a specific offramp wallet by ID.
const response = await blindpay.wallets.offramp.get({
receiver_id: "rcv_123",
bank_account_id: "bank_123",
id: "offramp_wallet_123"
});
The unique identifier of the receiver
The unique identifier of the bank account
The unique identifier of the offramp wallet
Show Offramp Wallet Object
Unique identifier for the offramp wallet
External identifier for the wallet
ID of the BlindPay instance
ID of the receiver who owns this wallet
ID of the associated bank account
Blockchain network (currently only supports Tron)
The wallet address on the blockchain
ISO 8601 timestamp of when the wallet was created
ISO 8601 timestamp of when the wallet was last updated