← Sei overview

Sei · tendermint

status

CometBFT RPC: status

CometBFT / Tendermint JSON-RPC (Cosmos-family nodes). Reference: docs.cometbft.com RPC

cURL

Endpoint: https://sei-mainnet.eu1.azxa.io/<api-key> — replace <api-key> with your API key from the Azxa app .

Terminal
curl -X POST https://sei-mainnet.eu1.azxa.io/<api-key> \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"status","params":[]}'

Example request

JSON-RPC
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "status",
  "params": []
}

Result

See node response

Example response
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": null
}
Schema
{
  "type": "unknown"
}