Endpoint

POST /v1/account/address/create

Request Parameters

ParameterTypeRequiredDescription
chainNameIntegerYesName of the blockchain to specify the target chain.
timestampLongYesUNIX timestamp (in milliseconds).
addressNumIntegerNoNumber of addresses to generate. Maximum value: 5. Default: 1.
aliasStringNoAlias for the address to help identify and recognize it better.
callbackUrlStringNoCallback URL to notify payment information. Takes precedence if set.

Response Parameters

ParameterTypeRequiredDescription
addressStringYesThe generated blockchain address.

Response Example

{
    "code": 200,
    "msg": "success",
    "timestamp": "1725620148293",
    "data": {
        "address": [
            "TTxcUtirXHxAhUqxnZxTNy3qKonq7E5HAH"
        ]
    }
}