# Free Models Router > The simplest way to get free inference. openrouter/free is a router that selects free models at random from the models available on OpenRouter. The router smartly filters for models that support features needed for your request such as image understanding, tool calling, structured outputs and more. ## Overview - **Model ID**: `openrouter-free` - **Category**: llm - **Provider**: open_router - **Source Type**: Closed Source Model - **Status**: model_unloaded - **Screenshot**: `NA` ## API Information This model can be used via our HTTP API. See the API documentation and usage examples below. ### Endpoint - **URL**: `https://modelslab.com/api/v7/llm/chat/completions` - **Method**: POST ### Parameters - **`model_id`** (required): - Type: text - **`prompt`** (required): - Type: text ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v7/llm/chat/completions \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "openrouter-free" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/llm/chat/completions", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "openrouter-free" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/llm/chat/completions", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "openrouter-free" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Integration Options ### CLI Install: `curl -fsSL https://modelslab.sh/install.sh | sh` or `brew install modelslab/tap/modelslab` ```bash modelslab auth login # Authenticate modelslab models search "openrouter-free" # Find this model modelslab models detail --id openrouter-free # Get model details modelslab generate image --prompt "..." --model openrouter-free # Generate with model modelslab config set generation.default_model openrouter-free # Set as default ``` - Website: https://modelslab.sh - GitHub: https://github.com/ModelsLab/modelslab-cli ### MCP Servers (Model Context Protocol) For Claude Code, Cursor, VS Code, Windsurf, and any MCP-compatible agent. - Generation: `https://modelslab.com/mcp/v7` (API key auth, 23 tools) - Agent Control Plane: `https://modelslab.com/mcp/agents` (Bearer token auth, 10 tools) Claude Code config (`~/.claude/settings.json`): ```json { "mcpServers": { "modelslab-v7": { "url": "https://modelslab.com/mcp/v7", "headers": { "Authorization": "Bearer YOUR_API_KEY" } } } } ``` - Documentation: https://docs.modelslab.com/mcp-web-api/overview ### Agent Skills Install skill files directly into AI coding agents: ```bash npx skills add modelslab/skills --all # All skills npx skills add modelslab/skills --skill image-generation # Specific skill npx skills add modelslab/skills --all -a claude-code -a cursor # Target agents ``` - GitHub: https://github.com/ModelsLab/skills - Documentation: https://docs.modelslab.com/agent-skills ### SDKs - Python: `pip install modelslab` - TypeScript: `npm install modelslab` - PHP: `composer require modelslab/modelslab` - Go: `go get github.com/modelslab/modelslab-go` - Dart: `dart pub add modelslab` ## Links - [Model Playground](https://modelslab.com/models/llm-chat/openrouter-free) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)