Skip to main content

Core workflow

Most integrations follow this sequence:
  1. GET /v1/datasets to find a dataset id
  2. GET /v1/datasets/{dataset_id} to inspect schema-like metadata
  3. GET /v1/datasets/{dataset_id}/query to retrieve rows

Common filters

Dataset queries can be shaped with parameters such as:
  • start_time
  • end_time
  • time
  • publish_time
  • columns
  • page
  • page_size
  • limit
  • order

Example: time-bounded query

Example: selected columns

Example: CSV export

When to use path-based queries

The path-based route:
is useful when you want a simple stable filter encoded in the URL itself, such as a single location or category filter.