Send USDT
https://sandboxapi.bitnob.co/api/v1/wallets/send-usdt (opens in a new tab)
Body Params
Parameter | type | Required |
---|---|---|
amount amount in cents | int32 | ✅ |
address address to send to | string | ✅ |
description | string | ✅ |
chain Defaults to TRX | string | ✅ |
reference reference | string | ✅ |
Request
Stablecoins/ Send USDC [POST]
curl --request POST \
--url https://sandboxapi.bitnob.co/api/v1/wallets/send-usdt \
--header 'Authorization: Bearer API-KEY' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"amount": 0,
"address": "string",
"description": "string",
"chain": "TRX",
"reference": "string",
"customerEmail": "string"
}
'
Response
🟢 200 OK
{
"status": true,
"message": "sending USDT in progress",
"data": {
"reference": "9fa9b59a1c0f",
"description": "send payment",
"amount": "10",
"centAmount": "1000",
"fees": "2",
"centFees": "200",
"action": "send_usdt",
"type": "debit",
"status": "pending",
"id": "f7373939-5e4b-491c-b20d-a666281adcc5",
"createdAt": "2022-03-10T18:35:24.574Z",
"updatedAt": "2022-03-10T18:35:24.574Z"
}
}
Last updated on