Skip to main content
GET
List transactions across all account connections in the workspace

Authorizations

X-API-KEY
string
header
required

Authorization method required to allow user to access the api endpoints.

Query Parameters

cursor
string

Opaque cursor returned in meta.next_cursor of a previous response.

Example:

"eyJ0aW1lc3RhbXAiOiIyMDI0LTAxLTAyVDAwOjAwOjAwLjAwMFoiLCJpZCI6IjkxIn0="

size
number
default:5

Maximum number of transactions to return after merging and sorting newest-first across all connections.

Required range: 1 <= x <= 100
Example:

5

tokens
string[]

Comma-separated asset symbols to filter by. A transaction is kept when its displayed asset matches one of these symbols (case-insensitive) — for a trade that is the base asset, otherwise the first transfer leg. Applied to the merged result.

Example:

"USDC,ETH"

start_time
string<date-time>

Start time (ISO 8601). Converted to Date.

Example:

"2025-01-01T00:00:00Z"

end_time
string<date-time>

End time (ISO 8601). Converted to Date.

Example:

"2025-12-31T23:59:59Z"

status
enum<string>[]

Comma-separated status aliases (lowercase): 'success' (CONFIRMED), 'errored' (FAILED), 'pending' (PENDING).

Available options:
PENDING,
CONFIRMED,
FAILED
Example:

"success,pending"

min_usd
number

Minimum USD amount (decimal). Converted to number.

Example:

"100.50"

max_usd
number

Maximum USD amount (decimal). Converted to number.

Example:

"1000"

Case-insensitive substring search over transaction id, hash, network, asset symbols, and counterparty addresses.

Example:

"0xabc"

account_id
string<uuid>

Limit results to transactions belonging to this account (must be linked to a connection in the workspace).

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

group_ids
string[]

Limit results to accounts belonging to these group IDs (comma-separated UUIDs).

Example:

"uuid1,uuid2"

categories
string[]

Comma-separated category labels. A transaction is kept when its category matches one of these values.

Example:

"Payroll,Bank Fees"

Response

200 - application/json
items
object[]
required
meta
object
required
Last modified on July 30, 2026