Consult Payment Wallet
Consult wallet address for payment.
Description:
This endpoint allows users to retrieve details of what wallet addresses to pay. It provides a comprehensive view of the wallet addresses, the stable coin, and the network of that specific wallet.
Mode:
GET
Node:
/third-party-service/wallet/payment-list
GET
third-party-service/wallet/payment-list
Consult an invoice of a Withdrawal or Deposit
Headers
Name
Type
Description
API-Key*
String
Your API key for authentication.
API-Secret*
String
Your API secret for enhanced security.
//
{
"statusCode": 202,
"data": [
{
"id": 1,
"coin": "USDC",
"address": "0xd3E24A9efCAC3A67Dude233cD54631c7Caae3e8390",
"network": "polygon",
"createdAt": "2023-12-05T20:43:59.023Z"
},
{
"id": 3,
"coin": "USDT",
"address": "TR7NHahaqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"network": "tron",
"createdAt": "2023-12-05T20:45:21.427Z"
},
{
"id": 2,
"coin": "USDC",
"address": "GA5ZSEJYB37JRC5AVCIApp5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN",
"network": "stellar",
"createdAt": "2023-12-05T20:44:21.427Z"
}
],
"message": "All valid wallet payment"
}
Considerations:
It's essential to ensure that the provided api-key
and api-secret
are accurate and have the necessary permissions to retrieve this data. The endpoint provides comprehensive details of each wallet to send your payment to.
Last updated