Skip to main content

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"
});
receiver_id
string
required
The unique identifier of the receiver
bank_account_id
string
required
The unique identifier of the bank account
data
array
Array of offramp wallet objects

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"
});
receiver_id
string
required
The unique identifier of the receiver
bank_account_id
string
required
The unique identifier of the bank account to link
external_id
string
required
Your external identifier for this wallet
network
'tron'
required
Blockchain network (currently only “tron” is supported)
data
object

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"
});
receiver_id
string
required
The unique identifier of the receiver
bank_account_id
string
required
The unique identifier of the bank account
id
string
required
The unique identifier of the offramp wallet
data
object