Skip to main content

Transactions & Accounts Endpoint

Get Transaction

Get Transaction Details by Hash

GET

API_URL/api/contract/transactions/{hash}

HEADERS

client_id   9b16ae5638534ae1961fb370f874b6cc*

client_secret   sk_9b16ae5638534ae1961fb370f874b6cc*

The returned values will be in the format of

Sample Result
{
"message": "Success",
"result": {
"hash": "0x2ae066ac32a5df95a92449739dead9aae99c1d3ecbd370c2ff66d000703cb0cc",
"nonce": 80,
"blockHash": "0xb73f52b07c2c70d4c539323f2a6b1ec4c7e5840391c1146f3c29fcf41823ba2f",
"blockNumber": 5996828,
"transactionIndex": 0,
"from": "0xC7F59f4F9E9e490023576E33Cabb9F9Cf5c48ac6",
"to": "0x22E726F2d2049BD6b7af65115590C157450F738c",
"value": "0",
"gasPrice": "0",
"gas": 6000000,
"input": "0xd09de08a",
"creates": null,
"raw": "0xf8665080835b8d809422e...",
"publicKey": "0x37eef5a82a94f6ee0872547...fc9e779471ef586fd8fe40",
"chainId": "0x89f",
"standardV": "0x1",
"v": "0x1162",
"r": "0x15aa0d4696696e39f39...a66132d76a2dbe6a9e20e34ca2f4b4408",
"s": "0x844dce7dd3035761a9c...c9afa2e5e7b3b74a97aee8b807b30539",
"accessList": null,
"type": 0
}
}

Get Transaction Receipt

Get Transaction Receipt by Hash

GET

API_URL/api/contract/transactions/{hash}/receipt

HEADERS

client_id   9b16ae5638534ae1961fb370f874b6cc*

client_secret   sk_9b16ae5638534ae1961fb370f874b6cc*

The returned values will be in the format of

Sample Result
{
"message": "Success",
"result": {
"transactionHash": "0x2ae066ac32a5df95a92449739dead9aae99c1d3ecbd370c2ff66d000703cb0cc",
"transactionIndex": 0,
"blockHash": "0xb73f52b07c2c70d4c539323f2a6b1ec4c7e5840391c1146f3c29fcf41823ba2f",
"from": "0xc7f59f4f9e9e490023576e33cabb9f9cf5c48ac6",
"to": "0x22e726f2d2049bd6b7af65115590c157450f738c",
"blockNumber": 5996828,
"cumulativeGasUsed": 27659,
"gasUsed": 27659,
"contractAddress": null,
"logs": [
{
"address": "0x22E726F2d2049BD6b7af65115590C157450F738c",
"topics": [
"0x7ca2ca9527391044455246730762df008a6b47bbdb5d37a890ef78394535c040"
],
"data": "0x0000000000000000000000000000000000000000000000000000000000000018",
"blockHash": "0xb73f52b07c2c70d4c539323f2a6b1ec4c7e5840391c1146f3c29fcf41823ba2f",
"blockNumber": 5996828,
"transactionHash": "0x2ae066ac32a5df95a92449739dead9aae99c1d3ecbd370c2ff66d000703cb0cc",
"transactionIndex": 0,
"logIndex": 0,
"transactionLogIndex": "0x0",
"removed": false,
"id": "log_5d63faca"
}
],
"logsBloom": "0x00000000000000000...",
"status": true,
"effectiveGasPrice": 0,
"type": "0x0"
}
}

Get Account Nonce

Get Account nonce by address

GET

API_URL/api/contract/accounts/{address}/nonce

HEADERS

client_id   9b16ae5638534ae1961fb370f874b6cc*

client_secret   sk_9b16ae5638534ae1961fb370f874b6cc*

The returned values will be in the format of

Sample Result
{
"message": "Success",
"result": 15
}