OpenAI-compatible

Models

Use the Privatemode model API to get a list of currently available models. The API is compatible with the OpenAI list models API. To list models, send your requests to the Privatemode proxy.

GET/v1/models

Returns

The response is a list of model objects.

objectstring

Always "list".

datalist

The currently available models.

Show properties

idstring

The model ID. Note: Starting with v1.28.0, shortened model IDs (without prefixes and suffixes) were introduced. For backward compatibility, the original full model IDs remain supported, so this endpoint may return both the shortened and the full model IDs for older models. This duplication doesn't affect the behavior of any other endpoints.

objectstring

Always "model".

taskslist

The tasks the model supports: embed (create vector representations of input text), generate (generate text completions or chat responses from prompts), tool_calling (invoke function calls or tools, such as retrieval-augmented generation or plugins), and vision (process image inputs). Note: tasks isn't part of the OpenAI API spec.