Get dataset metadata and schema
Fully public — no API key checked. `{slug}` may be a dataset's slug or its raw UUID.
curl -X GET "https://example.com/datasets/string"{ "slug": "string", "name": "string", "description": null, "license": "string", "source": "string", "category": "string", "tags": [ "string" ], "size": 0, "row_count": 0, "column_count": 0, "schema": [ { "name": "string", "dtype": "string", "null_count": 0, "null_percent": 0, "unique_count": 0, "mean": 0, "std": 0, "min": 0, "max": 0, "median": 0, "top_values": [ null ], "sample_values": [ null ] } ], "keyless": true, "keyless_until": "2019-08-24T14:15:22Z", "insights": "string", "discussions": [ { "id": "string", "title": "string", "slug": "string", "path": "string" } ], "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z"}Browse the dataset catalog
Fully public, no API key checked. The full catalog (keyless and gated datasets alike) is returned for discovery/marketing purposes; only loading actual data via `/datasets/{slug}/data` is gated.
Get a signed Parquet download URL
Returns a short-lived signed URL for downloading the dataset as Parquet. Always serves the latest active version. A read-scoped API key is required **unless** the dataset is currently keyless (within its `keyless_until` window), in which case the request succeeds with no key at all. A key that fails verification is always rejected with 401, even against a keyless dataset, OpenAPI's `security` requirement below is only accurate for non-keyless datasets; see the description here for the full, conditional rule.