Trades
Get Trades by Signature
Retrieve specific trades using their transaction signatures
POST
Get Trades by Signature
Authentication
This endpoint requires JWT authentication via theAuthorization: Bearer <token> header.
Request Body
Array of transaction signature strings to retrieve trades for
Response
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:Related Endpoints
For additional trade query options, see:- POST /trades/signatures/small - Lightweight version with minimal data
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
Array of transaction signature strings
Example Request
Use this endpoint when you need better performance and don’t require complete trade details.
Get Trades by Signature