Get Transaction History of a Token
Get Transaction History of a Token
Path
GET /transactions/:ticker/:txhash
Description
Retrieves the full transaction history for a given ticker and transaction hash.
Parameters
ticker
: The ticker symbol of the token (path parameter).txhash
: The hash of the transaction (path parameter).
Request Example
GET /transactions/ETH/0x123456...
Response Example
{
"transactions": [
{
"tx_hash": "0x123456...",
"sender": "0xSenderAddress...",
"recipient": "0xRecipientAddress...",
"amount": 100,
"op": "tsf",
"tick": "ETH",
// ... other transaction details
},
// ... more transactions
]
}
Error Responses
404 Not Found
: If no transaction history is found for the given ticker and transaction hash.500 Internal Server Error
: For server-related issues.
Last updated