Skip to main content
GET
Health check
curl --request GET \
  --url https://data-api.forka.st/
{
  "data": "OK"
}
Ping https://data-api.forka.st/ to confirm that the service is online. A healthy instance returns { "data": "OK" }; any other HTTP status indicates that the load balancer, the service, or its upstream caches are unhealthy.

When to call it

  • Up-time monitors (Datadog, Better Uptime, etc.)
  • Simple readiness probes in CI/CD jobs before running expensive smoke tests
  • Local development scripts that need to verify a tunnelled instance is reachable
The route has no authentication or query parameters and responds quickly because it bypasses any database access.

Response

200 - application/json

Service is reachable.

data
string
Example:

"OK"