Skip to main content
GET
/
health
/
ready
Readiness Check
curl --request GET \
  --url https://api.example.com/health/ready
import requests

url = "https://api.example.com/health/ready"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.example.com/health/ready', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));

Response

200 - application/json

Successful Response