Skip to content
GET /health

Check if the API is operational and responding.

Description

The health endpoint provides a simple way to verify that the BayutAPI service is up and running. Use this endpoint for monitoring, uptime checks, and integration testing.

It returns a basic status response confirming the API is operational. No authentication parameters are required beyond the standard RapidAPI headers, making it ideal for automated health monitoring scripts.

Include this endpoint in your CI/CD pipelines and monitoring dashboards to ensure your integration remains functional.

Parameters

No parameters required.

Code Examples

curl --request GET \
  --url 'https://bayut14.p.rapidapi.com/health' \
  --header 'x-rapidapi-host: bayut14.p.rapidapi.com' \
  --header 'x-rapidapi-key: YOUR_API_KEY'

Example Response

Response
{
  "success": true
}

Use Cases

  • Monitor API uptime in production dashboards
  • Validate API connectivity during integration setup
  • Automated health checks in CI/CD pipelines

Try this endpoint now

Subscribe to BayutAPI on RapidAPI and start making requests in minutes.