OpenRouter
OpenRouter는 라우터이지 연구소가 아닙니다. 키 하나, /api/v1 URL 하나로 요청을 실제 모델을 호스팅하는 곳으로 분배합니다. id가 :free로 끝나는 것은 입력·출력 모두 $0이고, 접미사 없는 같은 모델은 과금됩니다. openrouter/free 별칭은 요청에 맞는 무료 모델을 골라줍니다.
OpenRouter는 라우터이지 연구소가 아닙니다. 키 하나, /api/v1 URL 하나로 요청을 실제 모델을 호스팅하는 곳으로 분배합니다. id가 :free로 끝나는 것은 입력·출력 모두 $0이고, 접미사 없는 같은 모델은 과금됩니다. openrouter/free 별칭은 요청에 맞는 무료 모델을 골라줍니다.
무료 풀은 현재 18개 모델 — Nemotron 3 Ultra, MiniMax M3, Laguna, GLM 5.2 등 — 이며 컨텍스트는 최대 1M. DeepSeek와 Qwen은 :free 엔드포인트가 더 이상 없습니다. 신규 계정은 분당 20회·하루 50회이며, $10 충전 시 일일 상한이 1,000으로 올라갑니다. 공개 리더보드에 오르려면 HTTP-Referer와 X-Title 헤더를 설정하세요.
- 무료 모델
- 18
- 최대 컨텍스트
- 1M
- 무료 요금제
- 모델 18개 무료
- 요구사항
- 이메일만, 카드 불필요
엔드포인트
기본 URL
https://openrouter.ai/api/v1환경 변수
OPENROUTER_API_KEY속도 제한
20 requests/minute, 50 requests/day; a $10 top-up raises the day to 1,000- OpenAI 호환
- 텍스트
- 이미지
- 오디오
- 비디오
- 음성
- 임베딩
- 리랭크
- 추론
코드 예시
npm install openaiimport OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://openrouter.ai/api/v1',
apiKey: process.env.OPENROUTER_API_KEY
})
const response = await client.chat.completions.create({
model: 'openrouter/free',
messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})
console.log(response.choices[0].message.content)pip install openaiimport os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["OPENROUTER_API_KEY"],
)
response = client.chat.completions.create(
model="openrouter/free",
messages=[{"role": "user", "content": "Explain closures in one paragraph."}],
)
print(response.choices[0].message.content)curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "openrouter/free",
"messages": [{"role": "user", "content": "Explain closures in one paragraph."}]
}'알아두면 좋은 점
- :free로 끝나는 모델 id만 무료. 접미사 없는 같은 모델은 과금됩니다.
- 공개 리더보드에 오르려면 HTTP-Referer와 X-Title 헤더를 설정하세요.
무료로 받는 모델19
- Ling 3.0 Flash Fin
inclusionai/ling-3.0-flash-fin:free - Dots 3 Note Preview
dots-studio/dots-3-note-preview:free - LFM 2.5 2.6B
liquid/lfm-2.5-2.6b:free - Nemotron 3.5 Lightning
nvidia/nemotron-3.5-lightning:free - Inkling Small
thinkingmachines/inkling-small:free - Laguna S 2.1
poolside/laguna-s-2.1:free - Inkling
thinkingmachines/inkling:free - Laguna XS 2.1
poolside/laguna-xs-2.1:free - North Mini Code
cohere/north-mini-code:free - GLM 5.2
z-ai/glm-5.2:free - Nemotron 3.5 Content Safety
nvidia/nemotron-3.5-content-safety:free - Nemotron 3 Ultra
nvidia/nemotron-3-ultra-550b-a55b:free - MiniMax M3
minimax/minimax-m3:free - Nemotron 3 Nano Omni
nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free - Gemma 4 26B A4B
google/gemma-4-26b-a4b-it:free - Gemma 4 31B
google/gemma-4-31b-it:free - MiniMax M2.7
minimax/minimax-m2.7:free - Nemotron 3 Super
nvidia/nemotron-3-super-120b-a12b:free - Free Models Router
openrouter/free