Skip to main content
GET
/
v1
/
funding-methods
cURL
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>"
}

Headers

Authorization
string
required

Bearer token. Format: Bearer <api_key>

Query Parameters

accountId
string
required

Account whose funding methods to list. Must belong to the API key's organization.

Response

The request has succeeded.

Paginated list envelope. All list endpoints return this shape.

object
enum<string>
required

Object type. Always list for paginated responses.

Available options:
list
data
object[]
required

Array of results.

A funding method, discriminated by type. Use the type field to narrow the details payload:

  • CRYPTO_ADDRESSdetails is CryptoFundingMethodDetails
  • BANKdetails is BankFundingMethodDetails
hasMore
boolean
required

Whether more results are available beyond this page.

nextCursor
string | null
required

Cursor to pass as cursor query parameter for the next page. Null when there are no more results.