curl --request GET \
  --url https://api.honeyhive.ai/datasets \
  --header 'Authorization: Bearer <token>'
{
  "testcases": [
    {
      "project": "65e0fc2d6a2eb95f55a92cbc",
      "name": "test-dataset",
      "description": "A test dataset",
      "type": "evaluation",
      "datapoints": [
        "66369748b5773befbdc661e2"
      ],
      "num_points": 1,
      "linked_evals": [],
      "saved": false,
      "pipeline_type": "event",
      "created_at": "2024-05-04T20:15:04.124Z",
      "updated_at": "2024-05-04T20:15:04.124Z"
    }
  ]
}

Authorizations

Authorization
string
headerrequired

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

Query Parameters

project
string
required

Project ID associated with the datasets like 65e0fc2d6a2eb95f55a92cbc

type
enum<string>

Type of the dataset - "evaluation" or "fine-tuning"

Available options:
evaluation,
fine-tuning
dataset_id
string

Unique dataset ID for filtering specific dataset like 663876ec4611c47f4970f0c3

Response

200 - application/json
testcases
object[]