GET /health

Health check endpoint for the Blowfish Agent API service.

Request

GET /health

Authentication: None

Example

curl https://api-blowfish.neuko.ai/health

Response

200 OK

{
  "ok": true,
  "db": "connected",
  "timestamp": "2024-01-15T12:00:00.000Z"
}
Field
Type
Description

ok

boolean

true if all systems are operational

db

string

Database connection status ("connected")

timestamp

string

ISO-8601 timestamp of the check

503 Service Unavailable

Returned when the database is unreachable or another critical system is down.

Notes

  • Use this endpoint to verify the API is reachable before starting an auth flow.

  • No authentication or rate limiting is applied.

Last updated