Models
List available models
Returns the list of models currently available for chat completions. Each model object includes its capabilities and limits. This endpoint does not require authentication.
GET
List available models
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns the list of models currently available for chat completions. Each model object includes its capabilities and limits. This endpoint does not require authentication.
curl --request GET \
--url https://app.mavera.io/api/v1/models{
"object": "list",
"data": [
{
"id": "mavera-1",
"object": "model",
"created": 1706140800,
"owned_by": "mavera",
"description": "Mavera's primary model with persona intelligence support.",
"max_tokens": 16384,
"supports_streaming": true
}
]
}curl --request GET \
--url https://app.mavera.io/api/v1/models{
"object": "list",
"data": [
{
"id": "mavera-1",
"object": "model",
"created": 1706140800,
"owned_by": "mavera",
"description": "Mavera's primary model with persona intelligence support.",
"max_tokens": 16384,
"supports_streaming": true
}
]
}