# Get a Dataset

## Get dataset details.

<mark style="color:blue;">`GET`</mark> `https://api.autogon.ai/api/v1/engine/datasets/{dataset_id}/`

Returns details for the specified Dataset

#### Path Parameters

| Name                                          | Type   | Description                           |
| --------------------------------------------- | ------ | ------------------------------------- |
| dataset\_id<mark style="color:red;">\*</mark> | string | The unique identifier of the dataset. |

{% tabs %}
{% tab title="200: OK The API responds with details of the requested dataset." %}

```json
{
     "id": 001,
     "user": 001,
     "dataset_name": "Healthcare test data",
     "cover_image": "https://storage.autogon.ai/a24444b0.jpg",
     "dataset_description": "This a test dataset for healtcare",
     "dataset_type": "csv",
     "dataset_size": "2Mb",
     "dataset_url": "https://storage.autogon.ai/a24444b0-e193-4b94-ad12-0deda85003a4.csv",
     "slug": "healthcare-test-data-967906",
     "isDeleted": false,
     "is_public": false,
     "updated_at": "2023-11-20T15:37:08.656672Z",
     "created_at": "2023-11-20T15:37:08.656713Z"
},
```

{% endtab %}

{% tab title="403: Forbidden Dataset Not Found" %}

```json
{
    "error": "Dataset not found"
}
```

{% endtab %}
{% endtabs %}
