ScamVerify™
Account

System Status

Returns the operational status of all API components. This endpoint does **not** require authentication and is suitable for health checks. Response is cached for 30 seconds. Returns HTTP 503 if the database is unreachable.

GET
/status

Returns the operational status of all API components. This endpoint does not require authentication and is suitable for health checks. Response is cached for 30 seconds. Returns HTTP 503 if the database is unreachable.

Response Body

application/json

application/json

curl -X GET "https://scamverify.ai/api/v1/status"
{
  "status": "operational",
  "components": {
    "phone_lookup": "operational",
    "url_lookup": "operational",
    "text_analysis": "operational",
    "email_analysis": "operational",
    "database": "operational",
    "ai_inference": "operational"
  },
  "version": "string",
  "timestamp": "2019-08-24T14:15:22Z"
}
{
  "status": "operational",
  "components": {
    "phone_lookup": "operational",
    "url_lookup": "operational",
    "text_analysis": "operational",
    "email_analysis": "operational",
    "database": "operational",
    "ai_inference": "operational"
  },
  "version": "string",
  "timestamp": "2019-08-24T14:15:22Z"
}