Skip to main content
GET
/
node
/
waiting-epochs-left
/
{key}
Get waiting epochs left
curl --request GET \
  --url https://api.example.com/node/waiting-epochs-left/{key}
const options = {method: 'GET'};

fetch('https://api.example.com/node/waiting-epochs-left/{key}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.example.com/node/waiting-epochs-left/{key}"

response = requests.get(url)

print(response.text)
false
{}

Path Parameters

key
string
required

BLS public key (hex)

Response

Successful response

The response is of type object.