List beneficiaries for an account, optionally filtered by type. Returns crypto and bank beneficiaries in a single flat list.
curl --request GET \
--url https://api.nxos.io/v1/beneficiaries \
--header 'Authorization: <authorization>'{
"object": "list",
"data": [
{
"object": "beneficiary",
"beneficiaryId": "bene_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"accountId": "acct_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"type": "CRYPTO",
"nickname": "Treasury Wallet",
"status": "ACTIVE",
"entityType": "INDIVIDUAL",
"email": "[email protected]",
"phoneNumber": null,
"firstName": "John",
"lastName": "Doe",
"businessName": null,
"country": "US",
"crypto": {
"chainName": "ethereum",
"chainDisplayName": "Ethereum",
"platform": "EVM",
"address": "0x1234567890abcdef1234567890abcdef12345678"
},
"bank": null,
"createdAt": "2025-03-10T12:00:00.000Z"
}
],
"hasMore": true,
"nextCursor": "<string>"
}Bearer token. Format: Bearer <api_key>
Account to list beneficiaries for.
Filter by beneficiary type. Beneficiary type.
CRYPTO, BANK Maximum number of items to return. Defaults to 25, max 100.
Cursor for the next page of results, returned in previous responses.
The request has succeeded.
Paginated list envelope. All list endpoints return this shape.
Object type. Always list for paginated responses.
list Array of results.
Show child attributes
Whether more results are available beyond this page.
Cursor to pass as cursor query parameter for the next page. Null when there are no more results.
curl --request GET \
--url https://api.nxos.io/v1/beneficiaries \
--header 'Authorization: <authorization>'{
"object": "list",
"data": [
{
"object": "beneficiary",
"beneficiaryId": "bene_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"accountId": "acct_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"type": "CRYPTO",
"nickname": "Treasury Wallet",
"status": "ACTIVE",
"entityType": "INDIVIDUAL",
"email": "[email protected]",
"phoneNumber": null,
"firstName": "John",
"lastName": "Doe",
"businessName": null,
"country": "US",
"crypto": {
"chainName": "ethereum",
"chainDisplayName": "Ethereum",
"platform": "EVM",
"address": "0x1234567890abcdef1234567890abcdef12345678"
},
"bank": null,
"createdAt": "2025-03-10T12:00:00.000Z"
}
],
"hasMore": true,
"nextCursor": "<string>"
}