List the public model catalog¶
List capabilities and prices for enabled, publicly visible models.
GET https://billing.moi.matrixorigin.cn/api/v1/taas/public/models
Before you begin¶
No authentication is required.
Query parameters¶
curl --get "https://billing.moi.matrixorigin.cn/api/v1/taas/public/models" \
--data-urlencode "page_size=2"
Save the returned next_page_token as $NEXT_PAGE_TOKEN, retain the same filters, and request the next page. Stop when this value is empty or omitted.
curl --get "https://billing.moi.matrixorigin.cn/api/v1/taas/public/models" \
--data-urlencode "page_size=2" \
--data-urlencode "page_token=$NEXT_PAGE_TOKEN"
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
string |
No |
Filter by model type. |
|
integer |
No |
Page size; default 100, maximum 1000. |
|
string |
No |
Next-page token from the previous response; omit for the first request. |
Successful response¶
Returns HTTP 200 with the public model catalog and pricing.
{
"items": [
{
"id": "model_example",
"name": "example-chat-model",
"alias": "Example Chat",
"logo": "example",
"description": "Example chat model.",
"type": "chat",
"capabilities": [
"chat"
],
"context_window": 32768,
"input_price_per_million": "0",
"output_price_per_million": "0",
"cache_creation_price_per_million": "0",
"cache_hit_price_per_million": "0",
"ocr_price_per_page": "0",
"image_price_per_image": "0",
"image_hd_price_per_image": "0",
"video_price_per_second": "0",
"video_hd_price_per_second": "0",
"tts_price_per_10k_chars": "0",
"tts_hd_price_per_10k_chars": "0",
"asr_price_per_minute": "0",
"asr_realtime_price_per_minute": "0",
"currency": "CNY"
}
],
"total": 1,
"next_page_token": ""
}
Field |
Type |
Description |
|---|---|---|
|
array of object |
Records on this page. |
|
string |
Catalog object ID, used for management queries such as model health. |
|
string |
Model name used in inference requests. |
|
string |
Display alias; omitted when unset. |
|
string |
Model series identifier; omitted when unset. |
|
string |
Model description; omitted when unset. |
|
string |
Model type. |
|
array of string |
Supported inference capabilities; omitted when unset. |
|
integer |
Context window in tokens; omitted when unset. |
|
string |
Price per million input tokens. Omitted when unset. |
|
string |
Price per million output tokens. Omitted when unset. |
|
string |
Price per million cache-creation tokens. Omitted when unset. |
|
string |
Price per million cache-read tokens. Omitted when unset. |
|
string |
OCR price per page. Omitted when unset. |
|
string |
Price per image. Omitted when unset. |
|
string |
Price per HD image. Omitted when unset. |
|
string |
Price per second of video. Omitted when unset. |
|
string |
Price per second of HD video. Omitted when unset. |
|
string |
TTS price per 10,000 characters. Omitted when unset. |
|
string |
HD TTS price per 10,000 characters. Omitted when unset. |
|
string |
ASR price per minute. Omitted when unset. |
|
string |
Real-time ASR price per minute. Omitted when unset. |
|
string |
Currency of model prices. |
|
integer |
Total records matching the filters. |
|
string |
Next-page token; empty or omitted on the last page. |
In field paths, [] denotes each array item.