Toolzz AI
- Introduction
- Planos
- ChatService
- Toolzz Analytics
- Introduction
- DatasetItems
- DatasetRunItems
- Datasets
- Health
- Traces
- Session
- Projects
- Prompt
- Metrics
- Media
- Score
- ScoreConfig
- Models
- Observations
- Comments
- Kratos
Get a list of scores
Endpoint to Get a list of scores on toolzz analytics
{
"data": [
{
"dataType": "<string>",
"id": "<string>",
"traceId": "<string>",
"name": "<string>",
"source": "<string>",
"observationId": "<string>",
"timestamp": {},
"createdAt": {},
"updatedAt": {},
"authorUserId": "<string>",
"comment": "<string>",
"configId": "<string>",
"queueId": "<string>",
"value": 123,
"trace": {
"userId": "<string>",
"tags": [
{
"tag": "<string>"
}
]
}
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}
Page number, starts at 1 (nullable).
Limit of items per page. Reduce size if API issues occur (nullable).
Retrieve only scores with this userId associated to the trace (nullable).
Retrieve only scores with this name (nullable).
Filter scores created on or after a certain datetime (ISO 8601).
Filter scores created before a certain datetime (ISO 8601).
Allowed values: ANNOTATION, API, EVAL. Retrieve only scores from a specific source.
Retrieve only scores with this operator (nullable).
Retrieve only scores with this value.
Comma-separated list of score IDs to limit results (nullable).
Retrieve only scores with a specific configId (nullable).
Retrieve only scores with a specific annotation queueId (nullable).
Allowed values: NUMERIC, BOOLEAN, CATEGORICAL. Retrieve only scores with this dataType.
Response Description
Below you will see the description of the get a list score response
List of scores.
Type of data (e.g., NUMERIC, BOOLEAN, CATEGORICAL).
Unique identifier for the score.
Trace ID associated with the score.
Name of the score.
Source of the score (e.g., ANNOTATION, API, EVAL).
Observation ID associated with the score.
Timestamp of the score.
Creation timestamp of the score.
Last update timestamp of the score.
User ID of the author who created the score.
Comment associated with the score.
Config ID associated with the score.
Queue ID associated with the score.
Value of the score.
Code Response
Exemples of Response Code
Request Successful Response
Request Failure
{
"data": [
{
"dataType": "<string>",
"id": "<string>",
"traceId": "<string>",
"name": "<string>",
"source": "<string>",
"observationId": "<string>",
"timestamp": {},
"createdAt": {},
"updatedAt": {},
"authorUserId": "<string>",
"comment": "<string>",
"configId": "<string>",
"queueId": "<string>",
"value": 123,
"trace": {
"userId": "<string>",
"tags": [
{
"tag": "<string>"
}
]
}
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}