API REFERENCE · MODELS
Models
List and inspect models available on Hoonify. The catalog mirrors the inference catalog UI but in machine-readable form.
List models
GET
https://api.hoonify.ai/v1/modelsReturns every model your key can call.
Retrieve a model
GET
https://api.hoonify.ai/v1/models/{model_id}Same fields as the list endpoint, plus a deprecation notice when scheduled.
Response shape
json
{
"object": "list",
"data": [
{
"id": "deepseek-v4-pro",
"object": "model",
"created": 1737936000,
"owned_by": "deepseek-ai",
"family": "DeepSeek",
"context_window": 131072
},
{
"id": "qwen-3.6-27b",
"object": "model",
"created": 1734624000,
"owned_by": "qwen",
"family": "Qwen",
"context_window": 131072
}
/* … */
]
}Field reference
| Field | Description |
|---|---|
| id | Stable model identifier. Use this in model on completions calls. |
| family | Brand family — DeepSeek, Qwen, Gemma, Kimi, etc. |
| context_window | Max input + output tokens, in tokens. |
| quantizations | Available variants. Pass via the quantization field on chat completions. |
| modalities | I/O kinds — currently text-in + text-out for all models. Vision is on the roadmap. |
| deprecation | Object with shutdown_at (RFC3339) and a replacement model ID. Null when not deprecated. |
Catalog drift
New models go live without notice; deprecated models get a 90-day shutdown window and a
model.deprecation_announcedwebhook event. Treat the API as the source of truth — don't hardcode a static model list.