Skip to main content
Use GET /v1/models/{model} to look up a specific model by its ID and confirm it is available to your KiosAPI key. The response tells you which provider owns the model, making it straightforward to verify routing before you send a chat completion request.

Request

Endpoint: GET https://kiosapi.com/v1/models/{model}

Path Parameters

string
required
The model ID you want to look up, e.g. gemini-2.0-flash. The value must exactly match the id returned from the List Models endpoint.

Headers

At least one authentication header is required.
The following example fetches details for the gemini-2.0-flash model using the OpenAI-style Authorization header.

Response

A successful request returns a single model object for the requested ID.

Response Fields

string
required
The model identifier, e.g. gemini-2.0-flash. Use this value in the model field of any chat completion request.
string
required
Always "model".
integer
required
Unix timestamp (seconds) indicating when the model entry was registered.
string
required
The provider that owns the model, e.g. openai, anthropic, or google.