Skip to main content
GET
/
network
/
status
/
{shard}
Get network status
curl --request GET \
  --url https://api.example.com/network/status/{shard}
const options = {method: 'GET'};

fetch('https://api.example.com/network/status/{shard}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.example.com/network/status/{shard}"

response = requests.get(url)

print(response.text)
false
{}

Path Parameters

shard
string
required

Shard ID (use 4294967295 for metachain)

Response

Successful response

The response is of type object.