Datasets

Get dataset metadata and schema

Fully public — no API key checked. `{slug}` may be a dataset's slug or its raw UUID.

GET
/datasets/{slug}

Path Parameters

slug*string

Response Body

application/json

application/json

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"}

On this page