Transactions
View transaction history
Returns all Payment Sessions Blockchain transactions.
Query parameters
pagenumber · min: 1OptionalDefault:
Page number (1-based)
1Example: 1sizenumber · min: 1 · max: 100OptionalDefault:
Number of items per page
10Example: 10searchstringOptionalExample:
Search by transaction hash or asset
0x1234567890abcdefstatusstring · enumOptionalExample:
Filter by transaction status
confirmedPossible values: chainstring · enumOptionalExample:
Filter by blockchain
ethereumPossible values: assetstring · enumOptionalExample:
Filter by asset
USDTPossible values: sessionReferencestringOptionalExample:
Filter by payment session reference
sess_1234567890customerIdstringOptionalExample:
Filter by customer ID
123e4567-e89b-12d3-a456-426614174000startDatestringOptionalExample:
Filter transactions created from this date/time (ISO 8601)
2026-03-01T00:00:00ZendDatestringOptionalExample:
Filter transactions created up to this date/time (ISO 8601)
2026-03-11T23:59:59ZResponses
200Success
application/json
successbooleanRequiredExample:
Indicates if the request was successful
truemessagestringRequiredExample:
Response message
Success401
Unauthorized
500
Internal server error
get/api/v1/transactions
GET /api/v1/transactions HTTP/1.1
Host: api.coincircuit.io
Accept: */*
{
"success": true,
"message": "Success",
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"sessionId": "123e4567-e89b-12d3-a456-426614174000",
"txHash": "0x1234567890abcdef1234567890abcdef12345678",
"status": "confirmed",
"chain": "bsc",
"asset": "USDT",
"fromAddress": "0x1234567890abcdef1234567890abcdef12345678",
"toAddress": "0x742d35Cc6639C0532fF8037C7D6B8b123b2F4a25",
"amount": "100.50",
"confirmations": "12",
"amlCheck": "pending",
"failureReason": "Insufficient confirmations",
"explorerUrl": "https://bscscan.com/tx/0x1234567890abcdef1234567890abcdef12345678",
"confirmedAt": "2024-01-15T10:30:00.000Z",
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:30:00.000Z"
}
],
"meta": {
"page": 1,
"size": 10,
"total": 42,
"totalPages": 5
}
}Returns the transaction for the given hash.
Path parameters
txHashstringRequiredExample:
Transaction hash
0x1234567890abcdef1234567890abcdef12345678Responses
200Success
application/json
successbooleanRequiredExample:
Indicates if the request was successful
truemessagestringRequiredExample:
Response message
Success401
Unauthorized
404
Transaction not found
application/json
500
Internal server error
get/api/v1/transactions/{txHash}
GET /api/v1/transactions/{txHash} HTTP/1.1
Host: api.coincircuit.io
Accept: */*
{
"success": true,
"message": "Success",
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"sessionId": "123e4567-e89b-12d3-a456-426614174000",
"txHash": "0x1234567890abcdef1234567890abcdef12345678",
"status": "confirmed",
"chain": "bsc",
"asset": "USDT",
"fromAddress": "0x1234567890abcdef1234567890abcdef12345678",
"toAddress": "0x742d35Cc6639C0532fF8037C7D6B8b123b2F4a25",
"amount": "100.50",
"confirmations": "12",
"amlCheck": "pending",
"failureReason": "Insufficient confirmations",
"explorerUrl": "https://bscscan.com/tx/0x1234567890abcdef1234567890abcdef12345678",
"confirmedAt": "2024-01-15T10:30:00.000Z",
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:30:00.000Z"
}
}Last updated
Was this helpful?