Bware Docs
  • About Bware Labs Decentralized API
  • API Docs
    • Ethereum API
      • RPC
        • eth_getBlockByNumber method
        • eth_getBalance method
        • eth_blockNumber method
        • eth_syncing method
      • Websocket API
        • eth_syncing method
    • Binance Smart Chain API
      • RPC
        • eth_getTransactionByHash method
        • eth_getBlockByNumber method
        • eth_blockNumber method
        • eth_syncing method
        • eth_getBalance method
        • eth_accounts method
        • eth_gasPrice method
      • Websocket API
        • eth_syncing method
    • Avalanche API
      • X-Chain
      • C-Chain
      • P-Chain
      • Keystore API
      • Health API
      • Admin API
      • Info API
      • Metrics API
    • Moonbeam/Moonriver API
      • RPC
        • eth_getBlockByNumber method
        • eth_getBalance method
        • eth_blockNumber method
        • eth_syncing method
      • Websocket
    • Astar/Shiden APIs
      • RPC
        • eth_getBlockByNumber method
        • eth_getBalance method
        • eth_blockNumber method
        • eth_syncing method
      • Websocket
    • Fantom API
      • RPC
        • eth_getBlockByNumber method
        • eth_getBalance method
        • eth_blockNumber method
        • eth_syncing method
      • Websockets
        • eth_syncing method
    • Polkadot API
      • RPC
        • chain_getBlock
        • chain_getHeader
        • system_chainType
        • state_getMetadata
      • Websockets
        • system_chainType
    • Elrond API
      • REST API
        • Get Block By Hash
        • Get Shard Status
  • Tutorials
    • Using Bware Labs Platform
      • Getting a Bware Labs full endpoint
    • Using Bware Labs Endpoint in PolkadotJs
    • Using Bware Labs Endpoint in Metamask
    • Using a Bware Labs endpoint in code
Powered by GitBook
On this page
  • Parameters
  • Returns
  • Example

Was this helpful?

  1. API Docs
  2. Elrond API
  3. REST API

Get Shard Status

Query the status of a given shard

Parameters

  1. Shard Id (required)

Returns

Data about the specified shard as seen below

Example

// Request
curl -H "Content-Type: application/json"  https://elrond-mainnet-api.bwarelabs.com/<your_endpoint_id>/network/status/0

// Response
{
   "data":{
      "status":{
         "erd_current_round":7616616,
         "erd_epoch_number":528,
         "erd_highest_final_nonce":7614079,
         "erd_nonce":7614083,
         "erd_nonce_at_epoch_start":7601200,
         "erd_nonces_passed_in_current_epoch":12883,
         "erd_round_at_epoch_start":7603731,
         "erd_rounds_passed_in_current_epoch":12885,
         "erd_rounds_per_epoch":14400
      }
   },
   "error":"",
   "code":"successful"
}
PreviousGet Block By HashNextUsing Bware Labs Platform

Last updated 3 years ago

Was this helpful?