Model Selection

The Model Plaza lists all models you can currently call. Before integrating, confirm the call name and the input types the model supports; do not assemble the model field from display names.

Finding a Model

  1. Open the Model Plaza.
  2. Type a model name in the search box, or filter by input type, vendor, and model family.
  3. Open the model detail page to see the call name, input capabilities, pricing, and supported API formats.
  4. Copy the call name from the detail page into your request's model field.

How to Choose

  • Text chat: pick a model that supports text input.
  • Image understanding: pick a multimodal model that explicitly supports image input.
  • Image or video generation: choose by the capabilities and limits noted on the model detail page.
  • Already using a vendor SDK: prefer the compatible API noted on the model detail page.

Model Catalog API

To fetch call names and capability lists programmatically, call the model list API (returns public models without auth; filters by organization permissions when an API key is provided):

GET/api/v1/models

模型列表

返回可直接用于模型调用的聚合模型名。未鉴权时返回公开模型;鉴权后按组织模型权限过滤。

API Key (optional)Returns public data without authentication; Authorization: Bearer sk_live_... is also accepted.

Request structure

The section below confirms the method, URL and authentication scheme. It is an HTTP structure snippet, not a standalone runnable example.

HTTP
GET https://www.silvamux.com/api/v1/models
Authorization: Bearer $SILVAMUX_API_KEY

Response

200OpenAI 兼容模型列表。

application/json · ModelList

FieldTypeRequiredDescription
dataarray<object>Yes
data.createdintegerYes
data.idstringYes可直接填入请求 model 字段的聚合模型调用名。
data.objectstring (model)Yes
data.owned_bystring (system)Yes
objectstring (list)Yes

defaultOpenAI 兼容错误。

application/json · OpenAIError

FieldTypeRequiredDescription
errorobjectYes
error.codestring | integerNo
error.messagestringYes
error.typestringNo

Models and pricing change over time — the Model Plaza and API responses are always authoritative.