Skip to main content

Concept

The System group contains the simplest endpoints in the Timely.ai API: a public health check and an API key introspection endpoint. They are the natural starting point for any integration — you use the health check to confirm the API is reachable and the /v1/me endpoint to verify your key has the necessary scopes before making more complex calls. These endpoints do not perform operations on the workspace. They are read-only and do not consume credits.

Health Check

The GET /v1/health endpoint requires no authentication and can be called at any time to verify the API is up. It is ideal for external monitoring (Uptime Robot, Grafana, etc.) or for validating connectivity in CI/CD scripts before running integration tests.

API Key Introspection

The GET /v1/me endpoint returns information about the key used in the request: name, company_id, workspace_id, and the list of scopes. Use it to:
  • Confirm the correct key is configured in the environment
  • Check which scopes are available before calling protected endpoints
  • Identify which workspace the key belongs to in multi-tenant environments

Main Fields

Available Endpoints

See the left sidebar for the full list of endpoints in this group. Each endpoint has its own page with request/response schema, cURL/JS/Python examples, and an interactive playground.

Usage Example

Next Steps

Your first request

If you haven’t made your first call yet, start here.