Toolzz AI
- Introduction
- Planos
- ChatService
- Toolzz Analytics
- Introduction
- DatasetItems
- DatasetRunItems
- Datasets
- Health
- Traces
- Session
- Projects
- Prompt
- Metrics
- Media
- Score
- ScoreConfig
- Models
- Observations
- Comments
- Kratos
ScoreConfig
Get all score configs
Endpoint to Get all score configs on toolzz analytics
GET
/
api
/
public
/
score-configs
{
"data": [
{
"id": "<string>",
"name": "<string>",
"createdAt": {},
"updatedAt": {},
"projectId": "<string>",
"dataType": "<string>",
"isArchived": true,
"minValue": 123,
"maxValue": 123,
"categories": [
{
"value": 123,
"label": "<string>"
}
],
"description": "<string>"
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}
Response Description
Below you will see the description of the get a list score response
List of items.
Unique identifier of the item.
Name of the item.
Timestamp when the item was created.
Timestamp when the item was last updated.
Identifier of the associated project.
Type of data (e.g., NUMERIC, BOOLEAN, CATEGORICAL).
Indicates if the item is archived.
Minimum value for the data.
Maximum value for the data.
Description of the item.
Code Response
Exemples of Response Code
200
Request Successful Response
400
Request Failure
{
"data": [
{
"id": "<string>",
"name": "<string>",
"createdAt": {},
"updatedAt": {},
"projectId": "<string>",
"dataType": "<string>",
"isArchived": true,
"minValue": 123,
"maxValue": 123,
"categories": [
{
"value": 123,
"label": "<string>"
}
],
"description": "<string>"
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.