# Get public model overview

```{raw} html
<div class="mo-api-page-show-toc" aria-hidden="true"></div>
```

Get the public model count and compatible inference entry point.

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

## Before you begin

No authentication is required.

## Request example

```bash
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.

:::::::{div} mo-api-tabs mo-api-response-tabs
::::::{tab-set}
:::::{tab-item} Response example

```json
{
  "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"
}
```

:::::
:::::{tab-item} Fields

| 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`. |

:::::
::::::
:::::::
