Skip to main content
GET
List tracked transactions for the authenticated integrator
List tracking records for the integrator associated with x-api-key.
The API key determines the integrator scope. Omit integrator in normal requests. If you send it, it must exactly match the integrator associated with the key.

Filters

All supplied filters combine with AND. Results are ordered newest first by source timestamp. nextCursor is null when there are no more results. The API does not return a total count or provide a snapshot guarantee while new transactions are being ingested.

Response data

Each item is the full tracking record. Amounts and fees use decimal strings in raw token units, and enrichment fields may be null when unavailable rather than zero. Use canonical chain IDs for filters, preserve nextCursor unchanged, and treat provider diagnostics as supplementary data. See Transaction Tracking API for the complete field contract.
Use returned raw amounts and fees as strings. See Transaction Tracking API for status, chain-ID, and nullable-field semantics.

Authorizations

x-api-key
string
header
required

Delora API key. Required by Transaction Tracking endpoints and optional for most routing endpoints.

Headers

x-api-key
string
required

Customer API key. Required for Transaction Tracking endpoints.

Query Parameters

cursor
string

Opaque cursor returned by a prior response. Pass it through unchanged.

limit
integer
default:50

Maximum number of records to return.

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

50

integrator
string

Optional assertion of the integrator associated with the API key. It cannot be used to select another integrator.

status
enum<string>

Filter by current tracking status. Current asynchronous tracking status.

Available options:
success,
recovered,
bridge_pending,
refund_pending,
refunded,
bridge_failed,
unknown
routeType
enum<string>

Filter by route type. Delora route classification.

Available options:
bridge,
swap,
bridge_swap,
unknown
sourceChainId
integer

Filter by canonical source chain ID.

Example:

8453

destChainId
integer

Filter by canonical destination chain ID.

Example:

42161

Response

A page of transactions ordered newest first by source timestamp.

transactions
object[]
required
nextCursor
string | null
required

Opaque cursor for the next page, or null when there are no more records.