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

GET https://api.a2agent.me/v1/models

Request Headers

HeaderRequiredValue
AuthorizationYesBearer YOUR_API_KEY

Example Request

curl — list all available models
curl https://api.a2agent.me/v1/models \
  -H "Authorization: Bearer YOUR_API_KEY"

Example Response

The response below is truncated. Your actual response will include all models available on your account.
200 OK — models list response
{
  "object": "list",
  "data": [
    {
      "id": "deepseek-chat",
      "object": "model",
      "created": 1700000000,
      "owned_by": "deepseek"
    },
    {
      "id": "glm-5",
      "object": "model",
      "created": 1700000000,
      "owned_by": "zhipuai"
    },
    {
      "id": "kimi-k2.5",
      "object": "model",
      "created": 1700000000,
      "owned_by": "moonshot"
    }
  ]
}

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:
Model IDProvider
deepseek-chatDeepSeek
deepseek-v4-flashDeepSeek
deepseek-v4-proDeepSeek
glm-4.6Zhipu AI
glm-4.7Zhipu AI
glm-5Zhipu AI
glm-5-turboZhipu AI
glm-5.1Zhipu AI
glm-5.2Zhipu AI
kimi-k2.5Moonshot
kimi-k2.6Moonshot
kimi-k2.7-codeMoonshot
minimax-m2.1MiniMax
minimax-m2.5MiniMax
minimax-m2.7MiniMax
qwen3.5-plusAlibaba
qwen3.6-35b-a3bAlibaba
qwen3.6-plusAlibaba
qwen3.7-maxAlibaba
qwen3.7-plusAlibaba

Response Fields

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