Skip to main content
GET
/
v2
/
datasets
/
{dataset_id}
Retrieve a dataset
curl --request GET \
  --url https://api.orq.ai/v2/datasets/{dataset_id} \
  --header 'Authorization: Bearer <token>'
{
  "_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "display_name": "<string>",
  "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "metadata": {
    "total_versions": 123,
    "datapoints_count": 123
  },
  "created_by_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "updated_by_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created": "2023-11-07T05:31:56Z",
  "updated": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

dataset_id
string
required

The unique identifier of the dataset

Response

Dataset retrieved successfully. Returns the complete dataset object.

_id
required

The unique identifier of the dataset The id of the resource

display_name
string
required

The display name of the dataset

project_id
required

The unique identifier of the project it belongs to The id of the resource

workspace_id
required

The unique identifier of the workspace it belongs to The id of the resource

metadata
object
required
created_by_id

The unique identifier of the user who created the dataset The id of the resource

updated_by_id

The unique identifier of the user who last updated the dataset The id of the resource

created
default:2025-10-30T20:19:20.787Z

The date and time the resource was created

updated
default:2025-10-30T20:19:20.788Z

The date and time the resource was last updated