Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

openrouterOpenRouter 模型网关

Agent Skill

openrouter 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,704

周安装

571

GitHub Stars

1

下载量

4,568
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openrouter(OpenRouter 模型网关)
来源仓库:https://github.com/jononovo/openrouter
安装命令:
openclaw skills install openrouter
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openrouter

简介

OpenRouter 模型网关通过统一接口访问 60+ 提供商提供的 300+ AI 模型。

  • 适合需要灵活切换不同模型或比较输出效果的场景。
  • 支持自动回退和统一计费,简化多供应商管理。openrouter 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用前需配置 API 密钥并了解各模型定价策略。
  • 建议根据任务类型选择合适模型,避免不必要的成本消耗。

SKILL.md

name
openrouter
version
1.2.3
updated
2026-03-07
description
OpenRouter API gateway skill. Access 300+ AI models from 60+ providers through a single OpenAI-compatible API. Unified billing, automatic fallbacks, provider routing, and BYOK support.
homepage
https://openrouter.ai
api_base
https://openrouter.ai/api/v1
credentials
[OPENROUTER_API_KEY]
metadata
{"openclaw":{"requires":{"env":["OPENROUTER_API_KEY"]},"primaryEnv":"OPENROUTER_API_KEY"}}

OpenRouter — One API Key, Hundreds of AI Models

OpenRouter is a unified API gateway that gives you access to 300+ AI models from 60+ providers — Anthropic, OpenAI, Google, DeepSeek, Meta, Mistral, xAI, and more — through a single, OpenAI-compatible API endpoint.

Instead of managing separate accounts, API keys, and billing for each provider, you use one API key and one credit balance. Switch models by changing a single parameter — no code changes needed.

OpenRouter powers 250,000+ apps with 4.2M+ users globally.

Base URL: https://openrouter.ai/api/v1


Why Use OpenRouter

BenefitDetails
One API, all modelsAccess Claude, GPT, Gemini, DeepSeek, Llama, Grok, and hundreds more through a single endpoint
OpenAI-compatibleDrop-in replacement — change the base URL and API key, everything else works unchanged
No markupProvider pricing is passed through at cost
Automatic fallbacksIf a provider goes down, requests route to another provider automatically
Edge routing~25–40ms of added latency between you and inference
Privacy controlsFine-grained data policies — choose which providers can see your prompts
BYOK supportBring your own provider API keys and still get OpenRouter's routing and analytics

Quick Start

1. Create an Account

Sign up at openrouter.ai and add credits on the Credits page. Credits work with any model or provider. There is no minimum purchase and credits don't expire.

2. Create an API Key

Go to Settings > API Keys and create a key. Store it securely as an environment variable:

export OPENROUTER_API_KEY="sk-or-v1-..."

3. Make a Request

OpenRouter is fully OpenAI-compatible. Here's a basic example:

curl https://openrouter.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $OPENROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "anthropic/claude-sonnet-4-20250514",
    "messages": [
      {"role": "user", "content": "Hello, what can you help me with?"}
    ]
  }'

To switch models, just change the model field — no other code changes needed.

4. Using the OpenAI SDK

from openai import OpenAI

client = OpenAI(
    base_url="https://openrouter.ai/api/v1",
    api_key="sk-or-v1-..."
)

response = client.chat.completions.create(
    model="anthropic/claude-sonnet-4-20250514",
    messages=[{"role": "user", "content": "Hello!"}]
)

Pricing

OpenRouter passes through provider pricing at cost — no markup.

PlanHow It Works
Free modelsDozens of models at $0/token. Rate-limited to 20 req/min, 200 req/day (or 1,000/day with $10+ in credits)
Pay-as-you-goBuy credits, use them with any model. Billed per token at posted rates. Auto top-up available
BYOKUse your own provider API keys. First 1M BYOK requests/month are free, then 5% of upstream cost
EnterpriseVolume discounts, prepayment credits, annual commits, invoicing/POs, SSO (SAML)

Input and output tokens are billed separately per model. You're only charged for successful completions — failed requests and fallback attempts don't cost you.

Sample Model Pricing (per 1M tokens)

ModelInputOutput
DeepSeek V3.2$0.25$0.38
Gemini 3.1 Flash Lite$0.25$1.50
Llama 3.3 70BFreeFree
GPT-5.4$2.50$15.00
Claude Sonnet 4.6~$3.00~$15.00
GPT-5.4 Pro$30.00$180.00

*Prices change as providers update. Check openrouter.ai/models for current rates.*


Key Features

Model Routing & Fallbacks

OpenRouter automatically routes requests to the best available provider. If one provider goes down or errors, the request falls back to another — you're only billed for the successful run.

You can also control routing explicitly:

  • Provider ordering — Prioritize specific providers for a model
  • Provider ignoring — Exclude providers you don't trust
  • Performance thresholds — Set latency or throughput minimums
  • Regional routing — Pin requests to specific regions (Enterprise / Pay-as-you-go)
  • :nitro variant — Append :nitro to a model slug for speed-optimized routing

Bring Your Own Key (BYOK)

Use your existing API keys from OpenAI, Anthropic, Google Cloud, AWS Bedrock, Azure AI, and other providers while still getting OpenRouter's unified interface, fallback routing, and analytics.

  • First 1M BYOK requests per month are free
  • 5% fee on subsequent usage (based on upstream provider cost)
  • BYOK keys are automatically prioritized during routing
  • Supports: OpenAI, Anthropic, Google Vertex, AWS Bedrock, Azure, and more

Tool Calling & Structured Outputs

If the underlying model supports function calling / tool use, you can use it through the same API. Structured output formats (JSON mode) are also supported for compatible models.

Web Search

Append :online to any model slug to enable web search (powered by Exa.ai). Search results are injected into the context with citations. Pricing is per result returned.

Multimodal

OpenRouter supports images, audio, and PDFs across models that handle them. Send images as URLs or base64, and PDFs work the same way.

Prompt Caching

Most major providers now support context caching through OpenRouter. Gemini offers a 90% discount on cached tokens.

Zero Completion Insurance

Every request includes Zero Completion Insurance — if a model returns an empty or failed completion, you're not charged.

Zero Data Retention (ZDR)

For sensitive workloads, enable ZDR to ensure providers don't retain your prompts or completions.


API Reference

All endpoints use Authorization: Bearer <OPENROUTER_API_KEY>.

Base URL: https://openrouter.ai/api/v1

Core Endpoints

MethodEndpointDescription
POST/chat/completionsChat completion (OpenAI-compatible)
POST/completionsText completion (OpenAI-compatible)
GET/modelsList all available models with pricing
GET/models/{model_id}Get details for a specific model
POST/embeddingsGenerate embeddings (model-dependent)

Key Management Endpoints

MethodEndpointDescription
POST/keysCreate a new API key (requires Provisioning key)
GET/keysList API keys
DELETE/keys/{key_id}Delete an API key

Analytics & Account

MethodEndpointDescription
GET/creditsCheck credit balance
GET/activityView usage activity and costs

Security & Privacy

  • No training on your data. OpenRouter does not train on prompts or completions.
  • Provider logging controls. Providers that log prompts are flagged. You can

restrict routing to non-logging providers in your privacy settings.

  • Fine-grained data policies. Ensure prompts only go to providers you trust.
  • SOC 2 Type I compliance indicated (verify current status for compliance-critical

deployments).

  • ZDR (Zero Data Retention) available per-request or account-wide.
  • API key spending limits — Set per-key caps with daily, weekly, or monthly resets.

Framework Integrations

OpenRouter works with popular frameworks out of the box:

  • OpenAI SDK (Python & TypeScript) — change the base URL
  • LangChain / LangGraph
  • Vercel AI SDK
  • Langfuse (observability)
  • Mastra
  • MCP Servers
  • Any framework that supports the OpenAI API format

Organizations & Enterprise

For teams, OpenRouter offers organizations with:

  • Shared credit pools and centralized billing
  • Role-based access control (Admin / Member)
  • Organization-wide activity tracking and CSV/PDF exports
  • Guardrails — spending limits, model/provider allowlists, ZDR enforcement
  • Programmatic key provisioning and rotation via Management API
  • SSO (SAML) on Enterprise plans
  • Broadcast / observability integrations (up to 5 destinations)

Free Models

OpenRouter offers dozens of models at zero cost, including DeepSeek R1, Llama 3.3 70B, Gemma 3, and others. Free models are rate-limited (20 req/min, 200 req/day for accounts without credits; 1,000/day with $10+ credits) but require no payment to use.

A dedicated free model router (openrouter/free) automatically selects the best available free model for your request.


Contact & Support

NeedChannel
Technical supportDiscord — #help forum
Billing & accountsupport@openrouter.ai
Enterprise salesEnterprise form
Status pagestatus.openrouter.ai
Documentationopenrouter.ai/docs

Important Notes

  • Save your API key on creation. Store it in your platform's secrets manager or

as OPENROUTER_API_KEY in your environment.

  • Never send your OpenRouter API key to any domain other than openrouter.ai.

Your key grants access to your credit balance and all enabled models.

  • Model availability can change. Models can be deprecated or have pricing updates

at any time. Pin specific model IDs/versions in production to avoid surprises.

  • Free model rate limits apply. Free-tier usage is subject to rate limiting,

especially during peak times. Failed attempts still count toward daily quotas.

  • BYOK is not free after 1M requests. The first million BYOK requests per month

are free, then a 5% fee applies based on upstream cost.

  • OpenRouter is a proxy, not a provider. It routes your requests to the underlying

model provider. Latency, output quality, and capabilities depend on the model and provider, not OpenRouter itself.

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.09%
按下载量换算3,384

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills