v1
latestOpenAPI 3.0.02026-07-242830146.7 KBTransaction
Retrieve a paginated and filtered list of transactions of specific business account product
This endpoint retrieves a paginated list of transactions associated with a specific business account product (retrieved from API Key). It supports filtering by transaction_ids, user_ids, currencies multi-select filters and creation date filters. Intended for use in the partner portal.
get/v1/transactions
Query parameters
{
"creation_date": {
"from": "2025-01-29T08:00:00Z",
"to": "2025-01-29T10:00:00Z"
}
}offsetinteger
limitinteger
Headers
Authorizationstring required
Api key
Response
OK
Example response
{
"result": {
"items": [
{
"transaction_id": 111,
"payment_id": "1e8f9b4d-a43d-4010-97b3-97e346eab3f0",
"user_id": "1e8f9b4d-a43d-4010-97b3-97e346eab3f0",
"event_id": "b2193f63-232a-4cfd-8c7f-c37def1a557a",
"fiat_amount": {
"amount": "100",
"currency": "USD"
},
"crypto_amount": {
"amount": "100",
"currency": "USDT-TRC20"
},
"merchant": "mrkter.io",
"wallet_address": {
"address": "TWd4WrZ9wn84f5x1hZhL4DHvk738ns5jwb",
"currency": "USDT-TRC20"
},
"exchange_rate_fiat_to_crypto": {
"from": "EUR",
"to": "USDT",
"rate": "1.2345"
},
"exchange_rate_crypto_to_fiat": {
"from": "EUR",
"to": "USDT",
"rate": "1.2345"
},
"balance_histories": [
{
"amount": {
"amount": "100",
"currency": "USD"
},
"available_balance_after": {
"amount": "100",
"currency": "USD"
},
"hold_balance_after": {
"amount": "100",
"currency": "USD"
}
}
],
"created_at": "2025-01-01T00:00:00Z"
}
]
}
}