OpenRouter 모델 목록

토큰별 목록 형식으로 모델 메타데이터를 반환합니다

밀도가 높은 GET /v1/models?format=openrouter 필요할 때 사용하세요 모델별 상장과 정확한 토큰당 가격, 정확한 맥락 길이가 포함되어 있습니다. 토큰, 양자화, Hugging Face 체크포인트 ID, 데이터센터 국가 코드와 지원되는 기능 열거 등이 있습니다. 평범한 GET /v1/models 엔드포인트는 계속해서 표준 EmpirioLabs 카탈로그 형태를 반환합니다.

OpenRouter 뷰는 이 목록에 플래그가 지정된 모델만 반환합니다. 모델별로 다음 필드를 포함합니다: id, hugging_face_id, name, created, input_modalities, output_modalities, quantization, context_length, max_output_length, pricing, supported_sampling_parameters, supported_features, is_ready, openrouter, 그리고 datacenters.

$curl "https://api.empiriolabs.ai/v1/models?format=openrouter"

응답 형태

1{
2 "data": [
3 {
4 "id": "qwen3-5-9b",
5 "hugging_face_id": "Qwen/Qwen3.5-9B",
6 "name": "Qwen3.5 9B",
7 "created": 1778976000,
8 "input_modalities": ["text", "image", "video"],
9 "output_modalities": ["text"],
10 "quantization": "fp8",
11 "context_length": 262144,
12 "max_output_length": 32768,
13 "pricing": {
14 "prompt": "0.00000009",
15 "completion": "0.00000013",
16 "image": "0",
17 "request": "0",
18 "input_cache_read": "0.000000045"
19 },
20 "supported_sampling_parameters": [
21 "temperature",
22 "top_p",
23 "top_k",
24 "min_p",
25 "frequency_penalty",
26 "presence_penalty",
27 "repetition_penalty",
28 "stop",
29 "seed",
30 "max_tokens",
31 "logit_bias"
32 ],
33 "supported_features": [
34 "tools",
35 "json_mode",
36 "structured_outputs",
37 "reasoning"
38 ],
39 "is_ready": true,
40 "openrouter": {
41 "slug": "qwen/qwen3.5-9b"
42 },
43 "datacenters": [
44 {
45 "country_code": "JP"
46 }
47 ]
48 }
49 ]
50}

현장 노트

필드의미
idAPI를 호출할 때 사용되는 모델 식별자.
hugging_face_id모델이 Hugging Face 가중치에서 제공될 때 확인되는 Hugging Face 체크포인트 식별자.
context_length모델이 토큰으로 수용하는 최대 전체 맥락 길이.
max_output_length최대 생성 토큰 예산은 한 번의 요청만을 허용했습니다.
pricingUSD 가격은 문자열로 표시되며, 필드 이름에 별도로 명시되어 있지 않으면 토큰당 표현됩니다.
input_cache_read캐시 토큰 회계가 가능할 때 캐시된 입력 토큰 가격.
supported_sampling_parameters모델이 수용하는 샘플링 컨트롤.
supported_features상위 능력: tools, json_mode, structured_outputs, reasoning, logprobs, web_search.
is_ready모델이 등록 준비가 완료된 상태로 간주되어야 하는지 여부.
openrouter.slug이 모델에 대해 공개 슬러그를 추천했습니다.
datacenters[].country_code현재 서비스 지역에 대한 ISO 3166-1 알파-2 코드입니다.