List Models
Getting Started
List Models
List every model available to your account, across video, image, audio, and LLM
GET
List Models
Returns every enabled model your API key can access — video, image, and audio generation models alongside LLMs — in the OpenAI-compatible list format, so existing OpenAI SDK code works unchanged.
This endpoint returns the raw OpenAI list shape (
{ "object": "list", "data": [...] }), not the standard { success, code, data } envelope used by the rest of the API.Request
Response
Response Fields
Always
"list".The list of models, grouped by category and sorted by display name.
Retrieve a Model
GET/v1/models/{model_id}
Returns a single model object by its exact ID (OpenAI retrieve-model compatible).
Filter by Provider
If the path segment is a provider slug instead of a model ID, the response is a list filtered to that provider:Errors
An unknown model ID or provider returns a404 in the OpenAI error shape:
404
Authentication
All requests require a valid API key in the Authorization header:Get your API key from the Unifically Dashboard.
