Specific transaction
GET /txs/:hash
Return content of the requested transaction.
Request
Path Parameters
Hash of the requested transaction
- 200
- 400
- 403
- 404
- 418
- 429
- 500
Return the contents of the transaction.
Schema
- Array [
- ]
Transaction hash
Block hash
Block number
Block creation time in UNIX time
Slot number
Transaction index within the block
output_amount object[]required
The unit of the value
The quantity of the unit
Fees of the transaction in Lovelaces
Deposit within the transaction in Lovelaces
Size of the transaction in Bytes
Left (included) endpoint of the timelock validity intervals
Right (excluded) endpoint of the timelock validity intervals
Count of UTXOs within the transaction
Count of the withdrawals within the transaction
Count of the MIR certificates within the transaction
Count of the delegations within the transaction
Count of the stake keys (de)registration within the transaction
Count of the stake pool registration and update certificates within the transaction
Count of the stake pool retirement certificates within the transaction
Count of asset mints and burns within the transaction
Count of redeemers within the transaction
True if contract script passed validation
{
"hash": "1e043f100dce12d107f679685acd2fc0610e10f72a92d412794c9773d11d8477",
"block": "356b7d7dbb696ccd12775c016941057a9dc70898d87a63fc752271bb46856940",
"block_height": 123456,
"block_time": 1635505891,
"slot": 42000000,
"index": 1,
"output_amount": [
{
"unit": "lovelace",
"quantity": "42000000"
},
{
"unit": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
"quantity": "12"
}
],
"fees": "182485",
"deposit": "0",
"size": 433,
"invalid_before": null,
"invalid_hereafter": "13885913",
"utxo_count": 4,
"withdrawal_count": 0,
"mir_cert_count": 0,
"delegation_count": 0,
"stake_cert_count": 0,
"pool_update_count": 0,
"pool_retire_count": 0,
"asset_mint_or_burn_count": 0,
"redeemer_count": 0,
"valid_contract": true
}
Bad request
Schema
{
"status_code": 400,
"error": "Bad Request",
"message": "Backend did not understand your request."
}
Authentication secret is missing or invalid
Schema
{
"status_code": 403,
"error": "Forbidden",
"message": "Invalid project token."
}
Component not found
Schema
{
"status_code": 404,
"error": "Not Found",
"message": "The requested component has not been found."
}
IP has been auto-banned for extensive sending of requests after usage limit has been reached
Schema
{
"status_code": 418,
"error": "Requested Banned",
"message": "IP has been auto-banned for flooding."
}
Usage limit reached
Schema
{
"status_code": 429,
"error": "Project Over Limit",
"message": "Usage is over limit."
}
Internal Server Error
Schema
{
"status_code": 500,
"error": "Internal Server Error",
"message": "An unexpected response was received from the backend."
}