Skip to main content
GET
/
crypto
/
transactions
List crypto transactions
curl --request GET \
  --url http://api.contabull.com/crypto/transactions
{
  "transactions": [
    {
      "transactionId": "<string>",
      "status": "pending_payment",
      "quantity": 123,
      "cost": 123,
      "price": 123,
      "network": "ethereum",
      "symbol": "usdt",
      "currency": "BRL",
      "walletId": "<string>",
      "walletAddress": "<string>",
      "walletName": "<string>",
      "settlementSchedule": "instant",
      "settlementDate": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "totalPages": 123,
  "currentPage": 123,
  "hasMore": true
}

Query Parameters

symbol
enum<string>

Filter by cryptocurrency symbol

Available options:
usdt,
usdc,
trx,
eth
status
enum<string>

Filter by transaction status

Available options:
pending_payment,
pending_fulfillment,
fulfillment_scheduled,
fulfilling,
fulfilled
from
string<date-time>

Filter transactions from this date/time

to
string<date-time>

Filter transactions until this date/time

page
number
default:1

Page number for pagination (starts at 1)

Required range: x >= 1

Response

default - application/json
transactions
object[]
required

List of crypto transactions

total
number
required

Total number of transactions matching the filter

totalPages
number
required

Total number of pages available

currentPage
number
required

Current page number

hasMore
boolean
required

Whether there are more pages available