List models
models_listFetch every active model with capabilities, context window, and ruble price by paging through the full catalogue ordered by model ID. Use for caching, counting, or scanning when no filter applies.
Instructions
Walk the whole Hubris catalogue page by page, ordered by model id. Returns every active model with its capabilities, context window and ruble price.
Use this when you need the complete catalogue — to cache it, to count models, or to scan for something no filter covers. When you are looking for a model that fits a task, use models_search instead: it filters by capability, price and context server-side and saves you a few hundred rows.
Paging: read nextCursor from the response and pass it back as cursor. When nextCursor is absent you have reached the end. The catalogue holds roughly 550 models, so a full walk is about 11 calls at the default page size.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Models per page, 1–200. Defaults to 50. | |
| cursor | No | The `nextCursor` value from the previous response. Omit for the first page. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| models | Yes | ||
| nextCursor | No | Pass back as `cursor` to fetch the next page. Absent when the last page was returned. |