Skip to main content
GET
/
health
{
  "status": "healthy", 
  "version": "1.0.0"
}
The health check endpoint allows you to verify that the CheckThat AI API is operational and responsive.
This endpoint does not require authentication and can be used for monitoring and health checks.

Use Cases

  • Service monitoring: Check if the API is running and accessible
  • Load balancer health checks: Configure your infrastructure to verify service health
  • Initial setup verification: Confirm your connection to the API works correctly

Response

The endpoint returns the current status and version information:
{
  "status": "healthy", 
  "version": "1.0.0"
}
status
string
required
Current health status of the API service. Returns “healthy” when operational.
version
string
required
Current version of the CheckThat AI API.

Example Usage

curl -X GET 'https://api.checkthat-ai.com/health' \
  -H 'Accept: application/json'
The health endpoint is also available at the root path / with the same response format.

Response

200 - application/json

Successful Response

status
string
required
version
string
required