Skip to main content
POST
Get Trades by Signature

Authentication

This endpoint requires JWT authentication via the Authorization: Bearer <token> header.

Request Body

signatures
array
required
Array of transaction signature strings to retrieve trades for

Response

trades
array
Array of trade objects matching the provided signatures

Example Request

Replace <your_token> with your actual JWT token and use valid Solana transaction signatures.

Use Cases

Verify Specific Transactions

Use this endpoint to retrieve detailed information about specific trades when you have their transaction signatures. This is useful for:
  • Verifying trade execution
  • Building transaction history views
  • Reconciling on-chain data with platform data
  • Investigating specific trades

Batch Trade Lookup

Retrieve multiple trades in a single request by providing an array of signatures:
For additional trade query options, see:

Get Trades by Signature (Small)

Retrieve trades by signature with a smaller response payload, useful for performance optimization when you don’t need all trade details.

Request Body

signatures
array
required
Array of transaction signature strings

Example Request

Use this endpoint when you need better performance and don’t require complete trade details.