Get Token Owner
Get Token Owner
Path
GET /owner/:ticker/:txhash
Description
Determines the current owner of a specific token, identified by its ticker and transaction hash.
Parameters
ticker: The ticker symbol of the token (path parameter).txhash: The hash of the transaction to trace ownership (path parameter).
Request Example
GET /owner/ETH/0xabc123...Response Example
{
"owner": "0x123ownerAddress..."
}Error Responses
404 Not Found: If the ticker or transaction hash does not correspond to an existing token.500 Internal Server Error: For server-related issues.
Last updated