Skip to main content
GET
/
v1
/
datasets
Get datasets
curl --request GET \
  --url https://api.honeyhive.ai/v1/datasets \
  --header 'Authorization: Bearer <token>'
{
  "datasets": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "datapoints": [],
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

dataset_id
string

Unique dataset ID for filtering specific dataset

name
string

Dataset name to filter by

include_datapoints

Whether to include datapoints in the response

Response

200 - application/json

Successful response

datasets
object[]
required