API Reference

Get custodian details

Fetch custodian configuration for the authenticated API key.

POSThttps://api.argonpay.app/graphqlgetCustodianDetails

Fetches custodian configuration for your API key. Debits 1 query.

Endpoint

POST https://api.argonpay.app/graphql

Query

GraphQL
query GetCustodianDetails($apiKey: String!) {
getCustodianDetails(apiKey: $apiKey) {
code
message
custodian {
id
apiKey
wallets {
bep20
polygon
base
solana
}
callbackUrl
createdAt
}
}
}

Arguments

NameTypeRequired
apiKeyString!Yes

Example variables

JSON
{
"apiKey": "YOUR_API_KEY"
}

Note

The GraphQL Custodian type may include sensitive settlement fields. Prefer requesting only public wallet addresses and callbackUrl in production clients, as shown above.