Get API Status

Retrieves the running status of the Stacks Blockchain API.

GET

/bitcoin/v1

API status

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

Status codeDescription
200Success
curl
curl -X GET "https://api.mainnet.hiro.so/bitcoin/v1"

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