List funding methods for an account, with full deposit details (crypto address + wire instructions) for each.
curl --request GET \
--url https://api.nxos.io/v1/funding-methods \
--header 'Authorization: <authorization>'{
"object": "list",
"data": [
{
"object": "funding_method",
"fundingMethodId": "<string>",
"accountId": "<string>",
"name": "<string>",
"type": "CRYPTO_ADDRESS",
"status": "ACTIVE",
"supportedAssets": [
"<string>"
],
"details": {
"address": "<string>",
"chainName": "<string>",
"chainDisplayName": "<string>"
},
"createdAt": "<string>"
}
],
"hasMore": true,
"nextCursor": "<string>"
}Bearer token. Format: Bearer <api_key>
Account whose funding methods to list. Must belong to the API key's organization.
The request has succeeded.
Paginated list envelope. All list endpoints return this shape.
Object type. Always list for paginated responses.
list Array of results.
A funding method, discriminated by type. Use the type field to narrow
the details payload:
CRYPTO_ADDRESS → details is CryptoFundingMethodDetailsBANK → details is BankFundingMethodDetailsShow 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/funding-methods \
--header 'Authorization: <authorization>'{
"object": "list",
"data": [
{
"object": "funding_method",
"fundingMethodId": "<string>",
"accountId": "<string>",
"name": "<string>",
"type": "CRYPTO_ADDRESS",
"status": "ACTIVE",
"supportedAssets": [
"<string>"
],
"details": {
"address": "<string>",
"chainName": "<string>",
"chainDisplayName": "<string>"
},
"createdAt": "<string>"
}
],
"hasMore": true,
"nextCursor": "<string>"
}