Get a Dataset

Retrieves details of a specific dataset by its ID.

Get dataset details.

GET https://api.autogon.ai/api/v1/engine/datasets/{dataset_id}/

Returns details for the specified Dataset

Path Parameters

NameTypeDescription

dataset_id*

string

The unique identifier of the dataset.

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

Last updated