Status

Retrieves the running status of the Stacks Blockchain API.

GET

/extended

Retrieves the running status of the Stacks Blockchain API, including the server version and current chain tip information.

Parameters

No parameters.

Status codeDescription
200Success
Terminal
curl -L \
  "https://api.mainnet.hiro.so/extended" \
  -H 'Accept: application/json'

GET blockchain API status

Example Response
{
  "server_version": "string",
  "status": "string",
  "pox_v1_unlock_height": 0,
  "pox_v2_unlock_height": 0,
  "pox_v3_unlock_height": 0,
  "chain_tip": {
    "block_height": 0,
    "block_hash": "string",
    "index_block_hash": "string",
    "microblock_hash": "string",
    "microblock_sequence": 0,
    "burn_block_height": 0
  }
}

Last updated on