getCustodianDetails
The getCustodianDetails query allows you to fetch the public wallet addresses (BEP20, Solana, TON, USDT-TON) linked to your API key. This helps you confirm that your custodian wallets are correctly registered.
π Endpoint
URL: https://argonpay.onrender.com/graphql
Method: POST
Content-Type: application/json
π Query Structure
query GetCustodianDetails($apiKey: String!) {
getCustodianDetails(apiKey: $apiKey) {
code
message
custodian {
apiKey
bep20
solana
ton
usdtTon
}
}
}π₯ Parameters
Name
Type
Required
Description
apiKey
String
β
Your issued API key
β
Successful Response
π« Error Codes
Code
Description
200
Success
401
Invalid or expired API key
404
No custodian details found for the API key
500
Internal server error
π§ͺ Code Examples
Python Example
JavaScript Example
Last updated