Usage > V1 > Models

List models

Get all the available AI models.

get/1/ai/models

Query parameters

has_endpointstring

Get models available on this endpoint.<br>For instance, if post/2/ai/{product_id}/openai/v1/embeddings is given, it will return all the models that are available on this endpoint.

Example:post%2f2%2fai%2f%7bproduct_id%7d%2fopenai%2fv1%2fchat%2fcompletions
has_endpoint_containsstring

Get models available to at least one endpoint that contains the given part.<br>For instance, if chat/completions is given, it will return all the models that are available on at least one endpoint that contains chat/completions.

Example:v1%2fchat%2fcompletions
namestring

Get the model from its exact name, as it is unique, 0 or 1 model are returned.<br>The value may contain a slash, hence it must be URL-encoded, for instance mistralai%2FMinistral-3-14B-Instruct-2512 for value mistralai/Ministral-3-14B-Instruct-2512.

Example:mistralai%2FMinistral-3-14B-Instruct-2512
name_containsstring

Get models whose name contain the given string, so 0+ model(s) are returned.<br>The value may contain a slash, hence it must be URL-encoded, for instance mistralai%2FMinistral for value mistralai/Ministral.

Example:mistralai%2FMinistral
string
OR
string[]

Optional parameter that define the field used for sorting<br /> Part of the sort capacity

order'asc' | 'desc'

Optional parameter that define the default sort order<br /> Part of the sort capacity

order_forobject

Optional parameter that define the sorting order for a field<br /> By default order is used<br /> Part of the sort capacity

Response

OK

result'success' | 'error' | 'asynchronous' required

Result of the HTTP request

Example response

{
  "result": "success"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.