Skip to main content
GET
/
v1
/
datasets
List datasets
curl --request GET \
  --url https://api.gridcertainty.com/v1/datasets \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "source": "<string>",
      "name": "<string>",
      "description": "<string>",
      "cadence": "<string>",
      "earliestData": "<string>"
    }
  ],
  "meta": {
    "page": 123,
    "limit": 123,
    "page_size": 123,
    "hasNextPage": true,
    "cursor": "<string>"
  }
}

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.

Authorizations

x-api-key
string
header
required

Query Parameters

source
string

Filter datasets by source, for example ercot.

return_format
enum<string>
default:json

Return response as JSON or CSV.

Available options:
json,
csv
download
boolean
default:false

Set true to request a downloadable attachment response.

json_schema
string
default:array_of_objects

Optional JSON schema output mode.

Response

Dataset catalog

data
object[]
meta
object