search_models
Search the live UnoRouter model catalog (200+ models behind one OpenAI-compatible key). Models ending in :free cost nothing. Returns matching model IDs usable with the chat tool or any OpenAI-compatible client pointed at https://api.unorouter.com/v1.
Parameters3
| query | string | optional | Substring filter on the model id, e.g. 'deepseek' or 'claude' |
| free_only | boolean | optional | Only return :free models |
| limit | integer | optional | Max results, default 50 |
Raw schema
{
"type": "object",
"properties": {
"query": {
"description": "Substring filter on the model id, e.g. 'deepseek' or 'claude'",
"type": "string"
},
"free_only": {
"description": "Only return :free models",
"type": "boolean"
},
"limit": {
"description": "Max results, default 50",
"type": "integer",
"minimum": 1,
"maximum": 500
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}