Receive Single Invoice Transactions
GET /invoice/{identifier}/transactions
Get all transactions for single invoice.
The identifier should be an id or uuid
Headers
Name
Value
Content-Type
application/json
X-API-KEY
<token>
Query params
Name
Type
Description
start_date
date, datetime
Start date for transactions
end_date
date, datetime
End date for transactions
Response
[
{
"id": 0,
"source_type": "invoice",
"source": {
"id": 0,
"uuid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"currency": "USDTBEP20",
"tx_hash": null,
"address": "0x...",
"amount": 0,
"amount_usd": 0,
"received_amount": 0,
"received_amount_usd": 0,
"label": "Order #123",
"postback_url": "https://example.com/postback",
"success_url": "https://example.com/success",
"fail_url": "https://example.com/fail",
"created_at": "2025-06-20T14:22:10.345678Z",
"expires_at": "2025-07-20T14:22:10.345678Z",
"status": "paid"
},
"currency": {
"name": "USDTBEP20",
"token": "USDT",
"network": "BEP20",
"contract": "0x55d398326f99059fF775485246999027B3197955",
"decimals": 18,
"confirmations": 5,
"network_fee": 0,
"min_deposit": 1
},
"amount": 0,
"amount_usd": 0,
"network_fee": 0,
"network_fee_usd": 0,
"service_fee": 0,
"service_fee_usd": 0,
"tx_hash": "0x...",
"is_paid": true,
"is_postback_sended": false,
"created_at": "2025-06-20T15:22:10.345678Z"
},
...
]Example
Last updated