API reference
GET /v1/modelsList models
Reference for GET /v1/models: list the model IDs available to your API key and read each model object.
Lists the models available to your API key. Use it to discover valid model values for POST /v1/chat/completions, or as a lightweight connectivity check — it takes no parameters and returns quickly.
GET https://api.tase.app/v1/modelsRequest
No query parameters and no request body. Only the standard Authorization header is required:
curl https://api.tase.app/v1/models \
-H "Authorization: Bearer $TASE_API_KEY"Response
{
"object": "list",
"data": [
{
"id": "tase-8b",
"object": "model",
"owned_by": "tase-industries"
}
]
}Top-level fields
- **object** (string) — Always list.
- **data** (array) — One model object per model your key can use.
Model object fields
- **id** (string) — The model identifier. Pass this exact string as the model field in chat completion requests.
- **object** (string) — Always model.
- **owned_by** (string) — The organization that owns the model. Tase models report tase-industries.
Resolve at startup, not per request
The model list changes rarely. Fetch it once at application startup (or cache it for the life of the process) instead of calling it before every completion.
Requesting a model ID that is not in data returns HTTP 404 with the model_not_found error code. See the Errors page for the full error reference.