Toolzz AI
- Introduction
- Planos
- ChatService
- Toolzz Analytics
- Introduction
- DatasetItems
- DatasetRunItems
- Datasets
- Health
- Traces
- Session
- Projects
- Prompt
- Metrics
- Media
- Score
- ScoreConfig
- Models
- Observations
- Comments
- Kratos
Models
Get all models
Endpoint to Get all models on toolzz analytics
GET
/
api
/
public
/
models
{
"data": [
{
"id": "<string>",
"modelName": "<string>",
"matchPattern": "<string>",
"startDate": "<string>",
"unit": "<string>",
"inputPrice": 123,
"outputPrice": 123,
"totalPrice": 123,
"tokenizerId": "<string>",
"tokenizerConfig": {},
"isLangfuseManaged": true
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}
Response Description
Below you will see the description of the Get all models response
List of items.
Unique identifier of the item.
Name of the model associated with the item.
Match pattern used for the item.
Start date for the item’s configuration.
Unit type, e.g., CHARACTERS.
Price for input usage.
Price for output usage.
Total price for the item.
Identifier of the tokenizer.
Configuration of the tokenizer (nullable).
Indicates if the item is managed by Langfuse.
Code Response
Exemples of Response Code
200
Successful Response Code400
Error Response Code
{
"data": [
{
"id": "<string>",
"modelName": "<string>",
"matchPattern": "<string>",
"startDate": "<string>",
"unit": "<string>",
"inputPrice": 123,
"outputPrice": 123,
"totalPrice": 123,
"tokenizerId": "<string>",
"tokenizerConfig": {},
"isLangfuseManaged": true
}
],
"meta": {
"page": 123,
"limit": 123,
"totalItems": 123,
"totalPages": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.