OpenRouterモデル一覧

より密度の高いトークンごとのリスト形式でのモデルメタデータの返還

密度の高いものが必要なときはGET /v1/models?format=openrouterを使ってください モデルごとのリスティングで、正確なトークンごとの価格、正確なコンテキストの長さが示されています。 トークン、量子化、Hugging Face チェックポイントID、データセンター国 コード、そしてサポート機能の列挙式です。平地のGET /v1/models エンドポイントは引き続き標準のEmpirioLabsカタログ形状を返します。

OpenRouterビューはこのリストにフラグが付けられたモデルのみを返します。 モデルごとのフィールドは以下のものidhugging_face_idnamecreatedinput_modalitiesoutput_modalitiesquantizationcontext_lengthmax_output_lengthpricingsupported_sampling_parameterssupported_featuresis_readyopenrouter、そして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_idHugging Faceの重みからモデルが提供されたときのHugging Faceチェックポイント識別子。
context_lengthモデルが受け入れる最大総コンテキスト長(トークン単位)。
max_output_length最大生成トークン予算は1つのリクエストに対応可能でした。
pricingUSDの価格は文字列として表示され、フィールド名に特に記載されていない限りトークン単位で表されます。
input_cache_readキャッシュトークン会計が利用可能である場合のキャッシュ入力トークン価格。
supported_sampling_parametersモデルが受け入れたサンプリングコントロール。
supported_featuresより上位の能力:toolsjson_modestructured_outputsreasoninglogprobsweb_search
is_readyモデルを上場準備完了とみなすべきかどうか。
openrouter.slugこのモデルにはパブリックスラッグを提案しました。
datacenters[].country_code現在のサービス領域に関するISO 3166-1 alpha-2コード。