DatasetItems
Get All Dataset Items
Toolzz AI
- Introduction
- Planos
- ChatService
- Toolzz Analytics
- Introduction
- DatasetItems
- DatasetRunItems
- Datasets
- Health
- Traces
- Session
- Projects
- Prompt
- Metrics
- Media
- Score
- ScoreConfig
- Models
- Observations
- Comments
- Kratos
DatasetItems
Get All Dataset Items
Endpoint to Get all dataset items
GET
/
api
/
trpc
/
datasets.allDatasets
curl --request GET \
--url https://analytics.toolzz.ai/api/trpc/datasets.allDatasets
{
"data": [
{
"id": "<string>",
"status": {},
"input": null,
"expectedOutput": null,
"metadata": null,
"sourceTraceId": "<string>",
"sourceObservationId": "<string>",
"datasetId": "<string>",
"datasetName": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}
Response Description
Below you will see the description of the get all dataset response
List of dataset items.
Unique identifier for the dataset item.
Status of the dataset item. Allowed values: ACTIVE | ARCHIVED.
Input data for the dataset item (optional).
Expected output data for the dataset item (optional).
Metadata associated with the dataset item (optional).
Trace ID of the data source (optional).
Observation ID of the data source (optional).
Unique identifier of the associated dataset.
Name of the associated dataset.
Timestamp indicating when the dataset item was created.
Timestamp indicating when the dataset item was last updated.
curl --request GET \
--url https://analytics.toolzz.ai/api/trpc/datasets.allDatasets
{
"data": [
{
"id": "<string>",
"status": {},
"input": null,
"expectedOutput": null,
"metadata": null,
"sourceTraceId": "<string>",
"sourceObservationId": "<string>",
"datasetId": "<string>",
"datasetName": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}