Overview
List all linked accounts (bank, card, or international bank) associated with your account for a specific currency. This endpoint supports pagination to handle large numbers of linked accounts.Prerequisites
- Valid access token
Endpoint
- GET
{{LIQUIDITY_URL}}/v1/ext/linked-accounts/:currency?limit=10&page=1 - Auth: Bearer
{{accessToken}}
Path Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
currency | string | Currency code (e.g., USD) | Yes |
Query Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
limit | integer | Number of results per page (default: 10) | No |
page | integer | Page number (default: 1) | No |
Request
Response (200)
Response Fields
| Field | Type | Description |
|---|---|---|
data | array | Array of linked account objects |
data[].id | string | Linked account ID |
data[].currency | string | Currency of the linked account |
data[].optionType | string | Account type: bank, card, international_bank, zelle, venmo, paypal, prepaid_card |
data[].account.label | string | Display label for the account (if applicable) |
data[].account.lastFourDigits | string | Last 4 digits of account/card number (when available) |
data[].wallet.id | string | Associated wallet ID |
data[].wallet.balance | string | Current wallet balance |
data[].wallet.disabled | boolean | Whether the wallet is disabled |
data[].entity.id | string | Entity ID associated with the account |
data[].entity.entityType | string | Entity type: USER or BUSINESS |
meta.page | integer | Current page number |
meta.pageSize | integer | Number of items per page |
meta.pageCount | integer | Total number of pages |
meta.total | integer | Total number of linked accounts |
Notes
- Use the
idfrom each linked account for withdrawal requests - The
optionTypefield indicates the type of linked account - Results are paginated; use
limitandpageparameters to navigate through results - The
metaobject provides pagination information for building pagination controls - Linked accounts are filtered by currency, so you’ll need separate requests for different currencies