Skip to main content
GET
/
model
List all candidate models under the given credential type
curl --request GET \
  --url https://api.example.com/model/
{
  "models": [
    {
      "name": "<string>",
      "label": "<string>",
      "context_size": 123,
      "output_size": 123,
      "parameter_schema": {},
      "parameters_overrides": {},
      "type": "chat_model",
      "deprecated_at": "2023-11-07T05:31:56Z",
      "input_types": [
        "text/plain"
      ],
      "output_types": [
        "text/plain"
      ]
    }
  ],
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.agentscope.io/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

provider
string
required

Response

Successful Response

List the candidate models response.

models
ModelCard · object[]
required

The candidate models.

total
integer
required

The total number of candidates.