Request sandbox mock USDT
Creates an asynchronous request to send mock USDT to an Ethereum Sepolia address. This endpoint is available only in the sandbox environment. Poll the returned request with the GET endpoint until its status is confirmed or failed.
depositAddresses.ethereum_sepolia
address, then poll the returned request ID until it is confirmed or failed.
Use a new UUID v4 Idempotency-Key for each intended transfer. Reusing the key
returns the original request without sending another transfer.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Client-generated UUID v4. Reusing it with the same request returns the existing transfer; reusing it with different input returns 409.
Body
Nonzero EVM address that will receive mock USDT on Ethereum Sepolia.
"0x1111111111111111111111111111111111111111"
Mock USDT amount as a decimal string. Must be greater than zero and no more than 100, with up to six decimal places.
^(?:0|[1-9][0-9]*)(?:\.[0-9]{1,6})?$"25.000000"
Response
Existing faucet transfer returned for an idempotent replay.
requested, processing, submitted, confirmed, failed ethereum_sepolia usdt EVM address receiving the mock USDT.
Requested mock USDT amount with six decimal places.
^[0-9]+\.[0-9]{6}$Ethereum Sepolia transaction hash once submitted.
Machine-readable failure code when status is failed.