OpenRouter मॉडल लिस्टिंग

मॉडल मेटाडेटा को सघन प्रति-टोकन प्रविष्टि स्वरूप में लौटाएं

जब आपको सघन की आवश्यकता हो तो GET /v1/models?format=openrouter का उपयोग करें सटीक प्रति-टोकन कीमतों के साथ प्रति-मॉडल लिस्टिंग, सटीक संदर्भ लंबाई टोकन, परिमाणीकरण, Hugging Face चेकपॉइंट आईडी, डेटासेंटर देश कोड, और एक समर्थित-सुविधाएँ एनम। मैदानी 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}

फ़ील्ड नोट्स

फ़ील्डअर्थ
idएपीआई को कॉल करते समय उपयोग किया जाने वाला मॉडल पहचानकर्ता।
hugging_face_idHugging 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 कोड।