Skip to main content
GET
/
transactions
cURL
curl --request GET \
  --url https://gateway.architect.exchange/api/transactions \
  --header 'Authorization: Bearer <token>'
{
  "transactions": [
    {
      "amount": "<string>",
      "event_id": "<string>",
      "symbol": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "transaction_type": "<string>",
      "user_id": "<string>",
      "reference_id": "<string>"
    }
  ],
  "limit": 1,
  "next_cursor": "<string>",
  "total_count": 1
}

Authorizations

Authorization
string
header
required

User session token

Query Parameters

transaction_types
string[]
required
end_timestamp_ns
integer<int64> | null
Required range: x >= 0
start_timestamp_ns
integer<int64> | null
Required range: x >= 0
cursor
string | null
limit
integer<int32> | null
Required range: x >= 0
sort_ts
null | enum<string>

Timestamp sort direction (defaults to desc).

Available options:
asc,
desc

Response

200 - application/json

List of transactions

Page metadata for cursor-paged responses.

This is intended for response bodies (not query params).

transactions
object[]
required
limit
integer<int32> | null
Required range: x >= 0
next_cursor
string | null
total_count
integer<int64> | null
Required range: x >= 0