Documentation Index
Fetch the complete documentation index at: https://docs.gridcertainty.com/llms.txt
Use this file to discover all available pages before exploring further.
Base structure
The public API is organized under one base URL:/v1, except the health route at /health.
Main route groups
| Route group | Purpose |
|---|---|
/v1/datasets | discover datasets and inspect metadata |
/v1/datasets/{id}/query | fetch rows from a dataset |
/v1/datasets/{id}/audit | inspect dataset audit records |
/v1/dataset-updates/{id} | check update history |
/v1/pricing_locations | inspect pricing nodes, hubs, and zones |
/v1/reports/... | pull report-style outputs |
/v1/api_usage | inspect plan and usage metadata |
Authentication model
Public routes accept API keys in two forms:x-api-keyheaderapi_keyquery parameter
Response patterns
Most list and query routes return JSON responses with:datafor rows or itemsmetafor pagination details
return_format=csv.
How to approach the API
- Discover the dataset you want.
- Inspect its metadata.
- Query it with time filters and selected columns.
- Switch to CSV download if you need file export.