Skip to main content
GET
/
datasets
/
{dataset_id}
/
entries
cURL
curl --request GET \
  --url https://api.opper.ai/v2/datasets/{dataset_id}/entries \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "total_count": 123
  },
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "input": "<string>",
      "output": "<string>",
      "expected": "This `was` the output to the dataset entry",
      "comment": "This is an example of how one can edit the output"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

dataset_id
string<uuid>
required

The id of the dataset

Query Parameters

offset
integer
default:0

The offset of the entries to get

Required range: x >= 0
limit
integer
default:100

The limit of the entries to get

Required range: 1 <= x <= 100

Response

Successful Response

meta
Meta · object
required

Metadata about the response

data
GetDatasetEntriesResponse · object[]
required

List of items returned in the response