Skip to main content
GET
/
v1
/
datapoints
/
{id}
Retrieve a specific datapoint
curl --request GET \
  --url https://api.honeyhive.ai/v1/datapoints/{id} \
  --header 'Authorization: Bearer <token>'
{
  "datapoint": [
    {
      "datapoint": [
        {
          "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.

Path Parameters

id
string
required

Datapoint ID like 65c13dbbd65fb876b7886cdb

Response

200 - application/json

Successful response

datapoint
object[]