Retrieve a single funding method by ID.
curl --request GET \
--url https://api.nxos.io/v1/funding-methods/{fundingMethodId} \
--header 'Authorization: <authorization>'{
"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>"
}Bearer token. Format: Bearer <api_key>
Funding method identifier.
The request has succeeded.
A funding method, discriminated by type. Use the type field to narrow
the details payload:
CRYPTO_ADDRESS → details is CryptoFundingMethodDetailsBANK → details is BankFundingMethodDetailsObject type. Always funding_method.
funding_method Unique funding method identifier.
Account this funding method belongs to.
Display name for this funding method (set when the funding method was created).
Discriminator. Always CRYPTO_ADDRESS for this variant.
CRYPTO_ADDRESS Current status of this funding method.
ACTIVE, INACTIVE, DELETED Asset codes that can be sent to this address — e.g. ["USDC", "USDT"].
Crypto-specific deposit details.
Show child attributes
When this funding method was created.
curl --request GET \
--url https://api.nxos.io/v1/funding-methods/{fundingMethodId} \
--header 'Authorization: <authorization>'{
"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>"
}