Skip to Content
開発ドキュメントモデルカタログ

モデルカタログ

OfoxAI は主要な大規模モデルへの統一アクセスを提供しています。OfoxAI モデルカタログ  ですべての利用可能なモデルを閲覧できます。また、Models API を通じてプログラムで完全なモデル情報を取得することもできます。

モデル命名規則

すべてのモデルは provider/model-name の形式に従います:

anthropic/claude-sonnet-4.5 google/gemini-3-flash-preview moonshotai/kimi-k2.5

Models API 仕様

OfoxAI の Models API は OpenRouter 標準に準拠しており、各モデルの完全なメタデータを JSON 形式で返します。

API レスポンス構造

ルートレスポンスオブジェクト

{ "object": "list", "data": [ /* Model オブジェクトの配列 */ ] }

Model オブジェクト

各モデルには以下の標準化されたフィールドが含まれます:

フィールド説明
idstringAPI リクエストで使用するモデル識別子(例:"anthropic/claude-sonnet-4.5"
canonical_slugstringモデルの永続的な識別子(変更されない)
namestringモデルの表示名
creatednumberモデル追加時刻(Unix タイムスタンプ)
descriptionstringモデルの能力と特性の詳細説明
context_lengthnumber最大コンテキストウィンドウサイズ(トークン数)
architectureArchitectureモデルの技術アーキテクチャ情報
pricingPricingモデルの料金情報
top_providerTopProviderメインプロバイダー設定
supported_parametersstring[]サポートされる API パラメータの一覧

Architecture オブジェクト

モデルの入出力モダリティとトークナイザ情報を記述します:

{ "modality": "text+image+file->text", "input_modalities": ["text", "image", "file"], "output_modalities": ["text"], "tokenizer": "claude", "instruct_type": null }
フィールド説明
modality入出力モダリティの略記(例:text+image->text
input_modalitiesサポートされる入力タイプ:textimageaudiofile
output_modalitiesサポートされる出力タイプ:text
tokenizerトークナイザのタイプ
instruct_type指示形式のタイプ(一部のモデルでは null

Pricing オブジェクト

すべての価格は USD/トークン 単位です。値が "0" の場合は無料を意味します。

{ "prompt": "0.000001", "completion": "0.000005", "input_cache_read": "0.0000001", "input_cache_write_5m": "0.00000125", "input_cache_write_1h": "0.000002" }
フィールド説明
prompt入力トークンの単価
completion出力トークンの単価
input_cache_readキャッシュ読み取りトークンの単価
input_cache_write_5m5分キャッシュ書き込みトークンの単価
input_cache_write_1h1時間キャッシュ書き込みトークンの単価

モデルによってトークン化方式が異なるため、同じ入出力でもトークン数(と料金)は異なる場合があります。実際のトークン消費量はレスポンスの usage フィールドでご確認ください。

TopProvider オブジェクト

{ "context_length": 200000, "max_completion_tokens": 8192, "is_moderated": false }
フィールド説明
context_lengthプロバイダーレベルのコンテキスト制限
max_completion_tokens1回のレスポンスの最大トークン数
is_moderatedコンテンツモデレーションの有無

Supported Parameters

supported_parameters 配列は、そのモデルがサポートする OpenAI 互換パラメータを示します:

パラメータ説明
temperatureサンプリング温度の制御
top_p核サンプリングパラメータ
max_tokens最大レスポンス長
stopカスタム停止シーケンス
toolsファンクションコーリング / Tool Use
tool_choiceツール選択戦略
response_format出力形式の指定(JSON Mode)
reasoning深層推論モード

モデルリストの取得

Models API はパブリックインターフェースです。API Key不要でご利用いただけます。

Terminal
curl https://api.ofox.ai/v1/models

完全なリアルタイムモデルリストと料金については、OfoxAI モデルカタログ  をご覧ください。 API エンドポイントの詳細は Models API リファレンス をご参照ください。

Last updated on