Skip to main content
GET
/
v1
/
datapoints
Retrieve a list of datapoints
curl --request GET \
  --url https://api.honeyhive.ai/v1/datapoints \
  --header 'Authorization: Bearer <token>'
{
  "datapoints": [
    {
      "id": "<string>",
      "history": [
        {}
      ],
      "linked_event": "<string>",
      "created_at": "<string>",
      "inputs": {},
      "ground_truth": {},
      "metadata": {},
      "updated_at": "<string>",
      "linked_datasets": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

datapoint_ids
string[]

List of datapoint ids to fetch

dataset_name
string

Name of the dataset to get datapoints from

Response

200 - application/json

Successful response

datapoints
object[]
required