Endpoints
GET /v1/models
List all available models. No authentication required.
Example Response
{
"object": "list",
"data": [
{
"id": "deepseek/deepseek-chat-v3.2",
"object": "model",
"created": 1709000000,
"owned_by": "deepseek",
"context_length": 131072,
"free": false,
"pricing": {
"prompt": "0.00000014",
"completion": "0.00000028"
}
},
...
]
}Auto-Routing Virtual Models
Hober exposes three virtual model IDs that activate intelligent auto-routing (HAR) instead of targeting a specific provider. These are the recommended entry points for most use cases.
| Model ID | Description |
|---|---|
| hober/auto | Intelligent auto-routing — balanced quality and cost (default) |
| hober/auto:cost | Auto-routing optimized for lowest cost |
| hober/auto:fast | Auto-routing optimized for lowest latency |