Skip to main content

Base structure

The public API is organized under one base URL:
All public routes documented in the API reference live under /v1, except the health route at /health.

Main route groups

Authentication model

Public routes accept API keys in two forms:
  • x-api-key header
  • api_key query parameter
Header-based authentication is the preferred format for production integrations.

Response patterns

Most list and query routes return JSON responses with:
  • data for rows or items
  • meta for pagination details
Some routes also support CSV output through return_format=csv.

How to approach the API

  1. Discover the dataset you want.
  2. Inspect its metadata.
  3. Query it with time filters and selected columns.
  4. Switch to CSV download if you need file export.