Skip to main content
GET
/
transactions
cURL
curl --request GET \
  --url https://sandbox.onconsul.com/v1/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "failure_reason": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.onconsul.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns a paginated list of all money movement through your Consul account. Each transaction has a type (inbound_crypto, outbound_crypto, onramp, offramp, or bulk_payout) and tracks status from creation through completion. You can filter by transaction type and date range.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

transaction_type
enum<string>[]
Available options:
deposit,
withdrawal,
payout,
inbound_transfer
page_size
integer<int64>
cursor
string
from
string<date-time>
to
string<date-time>

Response

OK

data
object[]
required
next_cursor
string