# Get a Dataset Get a single Dataset by slug. Endpoint: GET /1/datasets/{datasetSlug} Version: 1.0.0 Security: configuration_key ## Path parameters: - `datasetSlug` (string, required) The dataset slug. ## Response 200 fields (application/json): - `name` (string, required) The name of the dataset. Example: "My Dataset!" - `description` (string) A description for the dataset. Example: "A nice description of my dataset" - `settings` (object) - `settings.delete_protected` (boolean) If true, the dataset cannot be deleted. - `expand_json_depth` (integer) The maximum unpacking depth of nested JSON fields. Example: 3 - `slug` (string) The 'slug' of the dataset to be used in URLs. Example: "my-dataset-" - `regular_columns_count` (null,integer) The total number of unique fields for this Dataset. The value will be null if the dataset does not contain any fields yet. Example: 100 - `last_written_at` (null,string) The ISO8601-formatted time when the dataset last received event data. The value will be null if no data has been received yet. Example: "2022-07-21T18:39:23Z" - `created_at` (string) The ISO8601-formatted time when the dataset was created. Example: "2022-09-22T17:32:11Z" ## Response 401 fields (application/json): - `error` (string) ## Response 404 fields (application/json): - `error` (string) ## Response 429 fields (application/json): - `error` (string) ## Response default fields (application/json): - `error` (string)