API Reference
Stablecoins
Send USDC [POST]

Send USDC

https://sandboxapi.bitnob.co/api/v1/wallets/send-usdc (opens in a new tab)


Body Params

ParametertypeRequired
amount
amount in cents
int32
address
address to send to
string
descriptionstring
chain
Defaults to TRX
string
reference
reference
string
customerEmail
customerEmail
string

Request

Stablecoins/ Send USDC [POST]
curl --request POST \
     --url https://sandboxapi.bitnob.co/api/v1/wallets/send-usdc \
     --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": "finalize send usdc successful",
  "data": {
    "reference": "47230508aa2a",
    "description": "send payment",
    "amount": "100",
    "centAmount": "10000",
    "fees": "2",
    "centFees": "200",
    "action": "send_usdc",
    "type": "debit",
    "status": "pending",
    "id": "82528371-63d8-4dc7-81a4-867c256187a7",
    "createdAt": "2022-02-01T07:34:52.430Z",
    "updatedAt": "2022-02-01T07:34:52.430Z"
  }
}