For the complete documentation index, see llms.txt. This page is also available as Markdown.

Datasets

Dataset management endpoints.

List datasets

get

List datasets owned by the authenticated project. Optionally filter by container.

Authorizations
AuthorizationstringRequired

API key in Authorization header using Bearer .

Query parameters
limitinteger · min: 1 · max: 100Optional

Max number of datasets.

Default: 100
offsetintegerOptional

Number of datasets to skip.

Default: 0
containerstring · nullableOptional

Container ID or label to filter datasets by.

Responses
200

Successful Response

application/json
objectconst: listOptional

Object type identifier.

Default: list
totalintegerRequired

Total number of items available for this resource.

get/v1/datasets

Create a dataset

post

Create a dataset for a container using telemetry filters.

Authorizations
AuthorizationstringRequired

API key in Authorization header using Bearer .

Body
namestringRequired

Dataset name.

descriptionstring · nullableOptional

Dataset description.

containerstringRequired

Container id or label for source data.

sizeintegerRequired

Requested dataset size.

tagsstring[] · nullableOptional

Optional dataset tags.

Responses
201

Successful Response

application/json
idstringRequired

ID of the created dataset.

messagestringRequired

Status message.

post/v1/datasets

Get a dataset

get

Fetch a dataset by id within the authenticated project.

Authorizations
AuthorizationstringRequired

API key in Authorization header using Bearer .

Path parameters
dataset_idstringRequired
Responses
200

Successful Response

application/json
idstringRequired

Dataset id.

objectconst: datasetOptional

Object type.

Default: dataset
namestringRequired

Dataset name.

descriptionstring · nullableOptional

Dataset description.

user_idstring · nullableOptional

Owner user id.

project_idstring · nullableOptional

Project id.

org_idstring · nullableOptional

Organization id.

container_idstring · nullableOptional

Container id.

requested_sizeinteger · nullableOptional

Requested dataset size.

sizeinteger · nullableOptional

Actual dataset size.

created_atstring · date-time · nullableOptional

Creation timestamp.

tagsstring[] · nullableOptional

Optional dataset tags.

get/v1/datasets/{dataset_id}

Last updated