Skip to main content
GET
https://api.destined.ai
/
v1
/
datasets
curl "https://api.destined.ai/v1/datasets" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "items": [
    {
      "dataset_id": "ds_abc123",
      "name": "My Dataset",
      "row_count": 150,
      "created_at": "2024-01-15T10:30:00Z"
    }
  ],
  "total": 5,
  "limit": 20,
  "offset": 0
}

Query Parameters

limit
integer
default:"20"
Number of results (max 100)
offset
integer
default:"0"
Number of results to skip

Response

items
array
required
Array of dataset objects
total
integer
required
Total number of datasets
curl "https://api.destined.ai/v1/datasets" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "items": [
    {
      "dataset_id": "ds_abc123",
      "name": "My Dataset",
      "row_count": 150,
      "created_at": "2024-01-15T10:30:00Z"
    }
  ],
  "total": 5,
  "limit": 20,
  "offset": 0
}