Skip to main content
The models endpoint returns a list of every model available through the A2Agent API. Use the id field from any entry as the model parameter when calling POST /v1/chat/completions. The response follows the same shape as the OpenAI models list, so existing tooling that reads model metadata will work without modification.

Endpoint

Request Headers

Example Request

curl — list all available models

Example Response

The response below is truncated. Your actual response will include all models available on your account.
200 OK — models list response

Available Model IDs

The following model IDs are available across all accounts. Pass any of these as the model parameter in a chat completions request:

Response Fields

string
Always "list" for this endpoint.
array
An ordered list of model objects, one entry per available model.
string
The model identifier to supply as the model parameter in chat completion requests (e.g. "deepseek-v4-pro", "glm-5").
string
Always "model" for every entry in this list.
integer
The Unix timestamp (seconds) indicating when the model was registered.
string
A short identifier for the model’s originating provider, such as "deepseek", "zhipuai", "moonshot", "minimax", or "alibaba".