Get public model overview

Get the public model count and compatible inference entry point.

GET https://billing.moi.matrixorigin.cn/api/v1/taas/public/overview

Before you begin

No authentication is required.

Request example

curl --get "https://billing.moi.matrixorigin.cn/api/v1/taas/public/overview"

Successful response

Returns HTTP 200 with public model counts and compatible API addresses.

{
  "model_count": 4,
  "model_count_display": "4",
  "taas_request_base_url": "https://billing.moi.matrixorigin.cn/api/v1/taas/llm",
  "openai_base_url": "https://billing.moi.matrixorigin.cn/api/v1/taas/llm"
}

Field

Type

Description

model_count

integer

Enabled public model count; may be omitted when zero.

model_count_display

string

Model count formatted for display.

taas_request_base_url

string

Compatible inference base URL returned by the service.

openai_base_url

string

Alias of taas_request_base_url.

Last updated on