curl --request GET \
--url https://api.orq.ai/v2/datasets/{dataset_id}/datapoints/{datapoint_id} \
--header 'Authorization: Bearer <token>'{
"_id": "<string>",
"workspace_id": "<string>",
"dataset_id": "<string>",
"inputs": {},
"messages": [
{
"role": "system",
"content": "<string>",
"name": "<string>"
}
],
"expected_output": "<string>",
"evaluations": [
{
"id": "<string>",
"evaluation_type": "human_review",
"human_review_id": "<string>",
"reviewed_by_id": "<string>",
"type": "string",
"value": "<string>",
"source": "orq",
"reviewed_at": "2025-12-08T10:34:36.332Z"
}
],
"snapshot_version": "<string>",
"created_by_id": "<string>",
"updated_by_id": "<string>",
"created": "2025-12-08T10:34:25.077Z",
"updated": "2025-12-08T10:34:25.079Z"
}Retrieves a datapoint object
curl --request GET \
--url https://api.orq.ai/v2/datasets/{dataset_id}/datapoints/{datapoint_id} \
--header 'Authorization: Bearer <token>'{
"_id": "<string>",
"workspace_id": "<string>",
"dataset_id": "<string>",
"inputs": {},
"messages": [
{
"role": "system",
"content": "<string>",
"name": "<string>"
}
],
"expected_output": "<string>",
"evaluations": [
{
"id": "<string>",
"evaluation_type": "human_review",
"human_review_id": "<string>",
"reviewed_by_id": "<string>",
"type": "string",
"value": "<string>",
"source": "orq",
"reviewed_at": "2025-12-08T10:34:36.332Z"
}
],
"snapshot_version": "<string>",
"created_by_id": "<string>",
"updated_by_id": "<string>",
"created": "2025-12-08T10:34:25.077Z",
"updated": "2025-12-08T10:34:25.079Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the dataset
The unique identifier of the datapoint
Datapoint retrieved.
The unique identifier of the dataset item
The unique identifier of the workspace it belongs to
The unique identifier of the dataset
A list of messages comprising the conversation so far
Developer-provided instructions that the model should follow, regardless of messages sent by the user.
Show child attributes
The role of the messages author, in this case system.
system The contents of the system message.
An optional name for the participant. Provides the model information to differentiate between participants of the same role.
Evaluations associated with the datapoint
Show child attributes
The unique identifier of the human evaluation
The type of evaluation
human_review The unique identifier of the human review
The unique identifier of the user who reviewed the item
string orq, external The date and time the item was reviewed
The version of the dataset snapshot
The unique identifier of the user who created the dataset
The unique identifier of the user who last updated the dataset
The date and time the resource was created
The date and time the resource was last updated
Was this page helpful?