POST
/
call
curl --request POST \
  --url https://example.com/call \
  --header 'Content-Type: application/json' \
  --data '{
  "network_identifier": {
    "blockchain": "bitcoin",
    "network": "mainnet",
    "sub_network_identifier": {
      "network": "shard 1",
      "metadata": {
        "producer": "0x52bc44d5378309ee2abf1539bf71de1b7d7be3b5"
      }
    }
  },
  "method": "eth_call",
  "parameters": {
    "block_number": 23,
    "address": "0x52bc44d5378309ee2abf1539bf71de1b7d7be3b5"
  }
}'
{
  "result": {
    "count": 1000
  },
  "idempotent": true
}

Body

application/json

CallRequest is the input to the /call endpoint.

Response

200
application/json

Expected response to a valid request

CallResponse contains the result of a /call invocation.