Filter transactions by the destination blockchain chain ID.
Property
Value
Type
integer
Required
No
Example:
source_chain_name
Filter transactions by the source blockchain name.
Property
Value
Type
string
Required
No
Example:
destination_chain_name
Filter transactions by the destination blockchain name.
Property
Value
Type
string
Required
No
Example:
dip_market_id
Filter transactions by a specific DIP (Direct Issuance Program) market ID.
Property
Value
Type
string (UUID)
Required
No
Example:
entity_id
Filter transactions to only those associated with a specific entity.
Property
Value
Type
integer
Required
No
Note: This filter is applied within the scope of the API key's permissions. An organization-scoped API key can filter by any entity within that organization.
Example:
subaccount_id
Filter transactions to only those associated with a specific subaccount.
Property
Value
Type
integer
Required
No
Example:
Combining filters
Multiple filters can be combined in a single request. All filters are applied using AND logic.
Example - Get all completed purchases in Q4 2024:
Example - Get transactions for a specific entity on Ethereum:
Response
Returns an array of TransactionV2 objects sorted by created_at in descending order (newest first).
GET /v2/transactions?transaction_type=Purchase,Redeem
GET /v2/transactions?from_timestamp=2024-01-01T00:00:00Z
GET /v2/transactions?until_timestamp=2024-12-31T23:59:59Z
GET /v2/transactions?from_price_timestamp=2024-06-01T00:00:00Z
GET /v2/transactions?until_price_timestamp=2024-06-30T23:59:59Z
GET /v2/transactions?transaction_hash=0x1234567890abcdef...
GET /v2/transactions?from_address=0xabc123...
GET /v2/transactions?to_address=0xdef456...
GET /v2/transactions?source_chain_id=1
GET /v2/transactions?destination_chain_id=11155111
GET /v2/transactions?source_chain_name=ethereum
GET /v2/transactions?destination_chain_name=sepolia
GET /v2/transactions?dip_market_id=550e8400-e29b-41d4-a716-446655440000
GET /v2/transactions?entity_id=12345
GET /v2/transactions?subaccount_id=67890
GET /v2/transactions?transaction_status=Completed&transaction_type=Purchase,UsdcPurchase&from_timestamp=2024-10-01T00:00:00Z&until_timestamp=2024-12-31T23:59:59Z
GET /v2/transactions?entity_id=123&source_chain_id=1