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 All Dataset
Endpoint to Get all dataset on Toolzz Analytics
GET
/
public
/
v2
/
datasets
curl --request GET \
--url https://api/public/v2/datasets
{
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"metadata": {},
"projectId": "<string>",
"createdAt": {},
"updatedAt": {}
}
],
"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.
Name of the dataset item.
Description of the dataset item.
Metadata associated with the dataset item (optional).
Unique identifier for the project associated with the dataset item.
Timestamp indicating when the dataset item was created (ISO 8601 format).
Timestamp indicating when the dataset item was last updated (ISO 8601 format).
curl --request GET \
--url https://api/public/v2/datasets
{
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"metadata": {},
"projectId": "<string>",
"createdAt": {},
"updatedAt": {}
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.