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

Authorizations

Authorization
string
header
required

User session token

Query Parameters

symbol
string | null
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

List of funding transactions

Page metadata for cursor-paged responses.

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

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