{object: 'list', data: [...]} envelope.
Endpoint
GET/v1/models
Data plane endpoint. Authenticate with Authorization: Bearer <router-key>.
Response
string
Always
"list".array
Array of model objects.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns available models in OpenAI-compatible format. Lists configured entrypoints and shared provider models from the Aria Compute ROUTER.
{object: 'list', data: [...]} envelope.
/v1/models
Data plane endpoint. Authenticate with Authorization: Bearer <router-key>.
"list".curl -H 'Authorization: Bearer $ARIA_ROUTER_KEY' \
http://<router-host>:8080/v1/models
{
"object": "list",
"data": [
{
"id": "ariacompute/semantic-auto",
"object": "model",
"owned_by": "aria-router"
},
{
"id": "gpt-4o",
"object": "model",
"owned_by": "provider"
}
]
}
Was this page helpful?