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

GEThttps://api.hoonify.ai/v1/models

Returns every model your key can call.

Retrieve a model

GEThttps://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

FieldDescription
idStable model identifier. Use this in model on completions calls.
familyBrand family — DeepSeek, Qwen, Gemma, Kimi, etc.
context_windowMax input + output tokens, in tokens.
quantizationsAvailable variants. Pass via the quantization field on chat completions.
modalitiesI/O kinds — currently text-in + text-out for all models. Vision is on the roadmap.
deprecationObject 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.