API Reference
Stablecoins
Create USDT Address [POST]

Create USDT Address

https://sandboxapi.bitnob.co/api/v1/addresses/generate/usdt (opens in a new tab)


Body Params

ParametertypeRequired
chain
Defaults to TRX
string
label
string
customerEmailstring

Request

Stablecoins/ Create USDT Address [POST]
curl --request POST \
     --url https://sandboxapi.bitnob.co/api/v1/addresses/generate/usdt \
     --header 'Authorization: Bearer API-KEY' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "chain": "TRX",
  "label": "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"
  }
}