Generate USDT Address
https://sandboxapi.bitnob.co/api/v1/addresses/generate-usdt-address (opens in a new tab)
Generate a new USDT address for a specific blockchain network (BEP20 or ERC20).
Body Parameters
Parameter | Type | Required | Description |
---|---|---|---|
chain | string | ✅ | Blockchain network for USDT (enum) |
Allowed values for chain
: "BEP20"
, "ERC20"
Request
Addresses/Generate USDT Address [POST]
curl --request POST \
--url https://sandboxapi.bitnob.co/api/v1/addresses/generate-usdt-address \
--header 'Authorization: Bearer API-KEY' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"chain": "BEP20"
}
'
Responses
🟢 200 - Result example
{
"status": true,
"message": "address generation successful",
"data": {
"id": "e7553399-8baf-4d6d-aac8-b518fef737c8",
"createdAt": "2024-07-31T17:46:27.228Z",
"updatedAt": "2024-07-31T17:46:27.228Z",
"address": "0x9e81e702cac66c521c1d9d7e7b361f7d8dfc",
"label": "Usdt Clerk Chain Address",
"addressType": "BEP20"
}
}
Last updated on