Skip to main content
POST
Look Up Dataset Rows

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

Body

application/json

Look up specific rows by their id column value.

Every dataset includes a 0-based id column assigned at ingest. Pass 1--256 integer IDs; duplicates are removed.

ids
integer[]
required

Row ids to fetch. Duplicates are de-duplicated.

Required array length: 1 - 256 elements

Response

Successful Response

Rows matching a DatasetRowsLookupRequest.

Returned rows follow the request ids order (duplicates removed). IDs not present in the dataset are omitted -- reconcile against the request to detect missing IDs.

headers
string[]
required

Column names.

rows
Rows · object[]
required

Found rows as {column: value} dicts, ordered to match the request.