BlockonomicsAPI Reference
Merchants
POST/monitor_txAuth required

Monitor USDT Transaction

Begin tracking a USDT transaction. Callbacks are sent to your store's endpoint whenever the transaction status changes.

Requires Bearer token authentication. Include Authorization: Bearer YOUR_API_KEY in the request header.

Request Body

txhashstringrequired

The transaction hash to monitor.

cryptostringrequired

The cryptocurrency used (USDT).

match_callbackstringrequired

String to match part of your store's callback URL. Used to identify the correct store when you have multiple.

testnetintegerrequired

Network. 0 = mainnet (Ethereum), 1 = Sepolia testnet.

Responses

statusinteger

Current status of the transaction. -1 = Reverted, 0 = Unconfirmed, 1 = 1 confirmation, 2 = 2 confirmations (final).

txhashbody · stringrequired

The transaction hash to monitor.

cryptobody · stringrequired

The cryptocurrency used (USDT).

match_callbackbody · stringrequired

String to match part of your store's callback URL. Used to identify the correct store when you have multiple.

testnetbody · integerrequired

Network. `0` = mainnet (Ethereum), `1` = Sepolia testnet.

Response will appear here