Get Business Info and Wallet Address
Before you can process transactions, you will be provided wallet address where you will prefund or receive stablecoin payments if you are facilitating crypto-to-fiat & fiat-to-crypto services respect.
Get Business Info
To get the business information provided for registration, and also the list of crypto wallet addresses for your business profile. This is where you will receive funds.
Endpoint: Get /info
address: The public address of your wallet.
chain: The blockchain for the address (e.g., BSC, TRON, SOLANA, BASE).
Success Response (200):
The response provides the information about the business and the list of wallet addresses
and chains supported for the business.
{
"data": {
"name": "Your Business Name",
"emailaddress": "[email protected]",
"walletAddresses": [
{
"_id": "7fe13ba7-4780-49d8-a494-21c952e43d44",
"address": "0xF09847df0Cba63A6f5dAcF115b3FC2bf0df1D832",
"chain": "BSC"
}
]
},
"message": "success",
"error": null,
"statusCode": 201
}
Last updated