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

fetch('https://api.example.com/network/direct-staked-info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.example.com/network/direct-staked-info"

response = requests.get(url)

print(response.text)
false
{}

Response

Successful response

The response is of type object.