GET
/
transactions
/
{hash}
Get Transaction by Hash
curl --request GET \
  --url https://indexer.testnet.incentiv.net/api/transactions/{hash}
{
  "hash": "<string>",
  "blockNumber": 123,
  "timestamp": 123,
  "from": "<string>",
  "to": "<string>",
  "value": "<string>",
  "gasUsed": "<string>",
  "gasPrice": "<string>",
  "nonce": 123,
  "input": "<string>",
  "status": "<string>"
}

Path Parameters

hash
string
required

Hash of the transaction to retrieve.

Response

200
application/json

Transaction details.

The response is of type object.