Skip to main content
health is a public liveness check. It takes no arguments and needs no token, so it is the simplest way to confirm the GraphQL endpoint is reachable and its backing services are up.
https://router.apps.filed.com/graphql

Query

query Health {
  health {
    id
    ai
    platform
  }
}

Returns: Health

type Query {
  health: Health!
}

type Health {
  id: ID!
  ai: String!
  platform: String!
}
id
ID!
An identifier for the health response.
ai
String!
Status of the AI service.
platform
String!
Status of the platform service.
curl -X POST https://router.apps.filed.com/graphql \
  -H "Content-Type: application/json" \
  -d '{ "query": "query Health { health { id ai platform } }" }'
{
  "data": {
    "health": {
      "id": "health",
      "ai": "ok",
      "platform": "ok"
    }
  }
}
health is unauthenticated. To verify that your token works (not just that the endpoint is up), run the me query instead.