POST
/
{api-key}
curl --request POST \
  --url https://{network}.s.chainbase.online/v1/{api-key} \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 1,
  "jsonrpc": "2.0",
  "method": "eth_getTransactionReceipt",
  "params": [
    "0x0b8f9635aad56d18381d2fd7ad0578cd54fb316b0b017948a3048915cfd29034"
  ]
}'
{
  "id": 1,
  "jsonrpc": "2.0",
  "result": {
    "blockHash": "<string>",
    "blockNumber": "<string>",
    "contractAddress": "<string>",
    "cumulativeGasUsed": "<string>",
    "effectiveGasPrice": "<string>",
    "from": "<string>",
    "gasUsed": "<string>",
    "logs": [
      {
        "address": "<string>",
        "blockHash": "<string>",
        "blockNumber": "<string>",
        "data": "<string>",
        "logIndex": "<string>",
        "removed": true,
        "topics": [
          "<string>"
        ],
        "transactionHash": "<string>",
        "transactionIndex": "<string>"
      }
    ],
    "logsBloom": "<string>",
    "status": "<string>",
    "to": "<string>",
    "transactionHash": "<string>",
    "transactionIndex": "<string>",
    "type": "<string>"
  }
}

Path Parameters

api-key
string
required
Example:

"demo"

Body

application/json
id
integer
default:1
required
Example:

1

jsonrpc
string
default:2.0
required
Example:

"2.0"

method
string
default:eth_getTransactionReceipt
required
params
any[]
required

Response

200 - application/json
Successful Response
id
integer
required
Example:

1

jsonrpc
string
required
Example:

"2.0"

result
object
required