openrouter-model-catalog

Featured

Query, filter, and select from OpenRouter's 400+ model catalog. Use when choosing models, comparing pricing, or checking capabilities. Triggers: 'openrouter models', 'list models', 'model catalog', 'compare models', 'available models'.

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# OpenRouter Model Catalog ## Overview Query the `GET /api/v1/models` endpoint to browse 400+ models, filter by capabilities, compare pricing, and check provider endpoints. No API key required for the models endpoint. ## List All Models ```bash # Full catalog (no auth required) curl -s https://openrouter.ai/api/v1/models | jq '.data | length' # → 400+ # Filter to text output models only curl -s "https://openrouter.ai/api/v1/models?supported_parameters=tools" | jq '.data | length' ``` ## Model Object Shape ```json { "id": "anthropic/claude-3.5-sonnet", "name": "Claude 3.5 Sonnet", "description": "Anthropic's most intelligent model...", "context_length": 200000, "pricing": { "prompt": "0.000003", "completion": "0.000015", "image": "0.0048", "request": "0" }, "top_provider": { "context_length": 200000, "max_completion_tokens": 8192, "is_moderated": false }, "per_request_limits": null, "architecture": { "modality": "text+image->text", "tokenizer": "Claude", "instruct_type": null } } ``` Key fields: - `pricing.prompt` / `pricing.completion` -- cost per token (not per million; multiply by 1M for readable rates) - `context_length` -- max input tokens - `top_provider.max_completion_tokens` -- max output tokens - `architecture.modality` -- `text->text`, `text+image->text`, etc. ## Python: Query and Filter ```python import requests models = requests.get("https://openrouter.ai/api/v1/models").json()["data"] # Find...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

openrouter-pricing-basics

Understand OpenRouter pricing, calculate costs, and optimize spend. Use when budgeting, comparing model costs, or tracking spend. Triggers: 'openrouter pricing', 'openrouter cost', 'model pricing', 'openrouter budget', 'how much does openrouter cost'.

2,266 Updated today
jeremylongshore
AI & Automation Featured

openrouter-model-availability

Monitor OpenRouter model availability and implement health checks. Use when building systems that depend on specific models being online. Triggers: 'openrouter model status', 'is model available', 'openrouter health check', 'model availability'.

2,266 Updated today
jeremylongshore
API & Backend Listed

openrouter-usage

Query OpenRouter API costs, credits, and usage breakdown by model, provider, and date. This skill should be used when checking API spending, auditing costs, or generating usage reports for the last 30 days.

33 Updated yesterday
tdimino
AI & Automation Featured

openrouter-model-routing

Implement intelligent model routing to optimize cost, quality, and latency on OpenRouter. Use when building multi-model systems or optimizing spend across task types. Triggers: 'openrouter routing', 'model routing', 'route to model', 'model selection openrouter'.

2,266 Updated today
jeremylongshore
AI & Automation Featured

openrouter-hello-world

Send your first OpenRouter API request and understand the response. Use when learning OpenRouter, testing setup, or verifying connectivity. Triggers: 'openrouter hello world', 'openrouter first request', 'test openrouter', 'openrouter quickstart'.

2,266 Updated today
jeremylongshore