Toolzz AI
- Introduction
- Planos
- ChatService
- Toolzz Analytics
- Introduction
- DatasetItems
- DatasetRunItems
- Datasets
- Health
- Traces
- Session
- Projects
- Prompt
- Metrics
- Media
- Score
- ScoreConfig
- Models
- Observations
- Comments
- Kratos
Datasets
Get dataset runs
Endpoint to Get dataset runs on Toolzz Analytics
GET
/
public
/
datasets
/
{datasetName}
/
runs
curl --request GET \
--url https://api/public/datasets/{datasetName}/runs
{
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"metadata": {},
"datasetId": "<string>",
"datasetName": "<string>",
"createdAt": {},
"updatedAt": {}
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}
Response Description
Below you will see the description of to Get a dataset run and its items response
List of dataset entities.
Unique identifier for the dataset entity.
Name of the dataset entity.
Description of the dataset entity.
Optional metadata associated with the dataset entity.
Unique identifier for the associated dataset.
Name of the associated dataset.
Timestamp indicating when the dataset entity was created (ISO 8601 format).
Timestamp indicating when the dataset entity was last updated (ISO 8601 format).
curl --request GET \
--url https://api/public/datasets/{datasetName}/runs
{
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"metadata": {},
"datasetId": "<string>",
"datasetName": "<string>",
"createdAt": {},
"updatedAt": {}
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.