AI ゲートウェイ評価データ共有機能追加
Vercel は AI Gateway のリーダーボードデータを CC BY 4.0 ライセンスの下で公開し、API を通じてダウンロード・クエリ可能な形式を提供することで、AI モデルの生産環境での採用動向を可視化する。
キーポイント
データ公開とライセンス解放
Vercel は AI Gateway リーダーボードの背後にあるデータを CC BY 4.0 ライセンスの下でオープン化し、誰でも利用可能にしました。
API を介したデータアクセス
'leaderboard-export' API エンドポイントを通じて、データをダウンロードしたりクエリしたりすることが可能になり、任意のチャートを共有可能な画像としてレンダリングできます。
4 つの主要なランキング指標
モデル、ラボ、アプリ、プロバイダーという 4 つのカテゴリー別に、リクエスト数、トークン量、コスト、生成されたメディア(画像/動画)などの詳細なメトリクスが毎日集計されています。
生産環境での AI 採用の可視化
毎日兆単位のトークンを集約することで、どのモデルやプロバイダーが実際に生産環境で採用され、そのトレンドが時間とともにどう変化しているかを把握できます。
重要な引用
We are making the data behind the AI Gateway leaderboards open under the CC BY 4.0 license.
You can now download or query the data through the leaderboard-export API endpoint and render any chart as a shareable image.
Data is aggregated daily across trillions of tokens, so you can see what gets adopted and how that changes over time.
影響分析・編集コメントを表示
影響分析
この記事は、AI エコシステムにおける透明性を大幅に向上させる画期的な動きです。これまで非公開であった大規模な生産環境データをオープン化することで、企業や研究機関が AI モデルの選定やコスト最適化を行う際の客観的な根拠を提供します。これにより、市場競争がよりデータ駆動型になり、特定のベンダーへの依存を減らすための判断材料が増えることが期待されます。
編集コメント
AI モデルの性能ベンチマークが数多く存在する中、実際の生産環境での利用実態(トラフィックやコスト)をオープンデータとして提供するのは非常に意義深いことです。これにより、開発者は理論上の性能だけでなく、実際の市場での採用動向に基づいて技術選定を行うことが可能になります。
Vercel の AI Gateway リーダーボード におけるデータ公開を、CC BY 4.0 ライセンス の下で開始しました。これにより、リーダーボードのエクスポート API エンドポイントを通じてデータをダウンロードしたりクエリしたりできるようになり、任意のチャートを共有可能な画像としてレンダリングすることが可能になりました。
AI Gateway リーダーボードは、プロダクション環境での AI 利用状況を可視化し、モデル、ラボ、アプリ、プロバイダーごとのトラフィックをランキング形式で示します。データは毎日数兆トークン規模で集計されるため、何が採用され、その傾向が時間とともにどう変化するかを確認できます。より詳細な分析については、2026 年 7 月の AI Gateway プロダクションインデックス をご覧ください。
リンクをコピーする
ランキング対象と指標
リーダーボードは全部で 4 つあり、それぞれ独自の指標を持っています。
| リーダーボード | ランキング対象 | 指標 |
|---|---|---|
| Models | 個別のモデル | リクエスト数、トークン量、費用、生成された画像や動画の数 |
| Labs | モデルラボ | リクエスト数、トークン量、費用、生成された画像や動画の数 |
| Apps | AI Gateway 上で動作する参加型アプリ | トークン量、費用 |
| Providers | 推論プロバイダー | トークン量、費用 |
上記が、4 つのリーダーボードと各々が扱う指標の一覧です。
モデルやラボは、テキスト・画像・動画といったモダリティごとにフィルタリングでき、時系列での日次シェア率を確認できます。一方、アプリやプロバイダーは全モダリティを集約してランキング形式で表示されます。
リンクをコピー見出しを開くデータ公開
リーダーボードの基盤となるデータはオープンソースで、Creative Commons Attribution 4.0 (CC BY 4.0) ライセンスの下に公開されています。適切なクレジット表示とライセンスへのリンク、改変の有無を明記する条件を満たせば、商用利用を含めて自由に使用・共有・改変が可能です。
各チャートやランキングリストにはダウンロードボタンが用意されており、現在の表示内容を CSV 形式でエクスポートできます。
プログラムからのアクセスには、24 時間キャッシュされるエクスポートエンドポイントを利用してください。以下のコマンドは、全データセットのフルエクスポート、単一データセットの取得、およびモダリティを指定した絞り込み例です。
全データセットのエクスポート
curl "https://vercel.com/api/ai/leaderboard-export"
単一のデータセット
curl "https://vercel.com/api/ai/leaderboard-export?dataset=models"
モダリティで絞り込んだ単一データセット
curl "https://vercel.com/api/ai/leaderboard-export?dataset=models&modality=image"
モデルやラボのデータでは、1 行が 1 つのエントリ(モデルまたはラボ)の日次シェア率を表します。1 つのレスポンスには「リクエスト数」「トークン数」「支出額」「画像生成数」「動画生成数」などのメトリックが含まれるため、metric フィールドでフィルタリングして必要な時系列データを抽出してください。
{
"date": "2026-05-10",
"group": "model",
"name": "Gemini 3 Flash",
"metric": "tokens",
"modality": "text",
"share_percent": 23.9
}
モデルデータセットの一例:ある指標における、1 つのモデルの日ごとのシェア率です。
チャートの共有機能
各チャートには「共有」ボタンが用意されており、現在の表示を画像として保存できます。アスペクト比(横長、正方形、縦長)を選択し、PNG 形式でダウンロードするか、クリップボードにコピーしてください。生成される画像には凡例、タイトル、AI Gateway のブランディングが含まれます。

共有されたチャート画像の例:トークン使用量上位のモデル。
リーダーボードを表示 または AI 生産インデックス をご覧ください。
原文を表示
We are making the data behind the AI Gateway leaderboards open under the CC BY 4.0 license. You can now download or query the data through the leaderboard-export API endpoint and render any chart as a shareable image.
The AI Gateway leaderboards show how AI is used in production, ranking traffic for models, labs, apps, and providers. Data is aggregated daily across trillions of tokens, so you can see what gets adopted and how that changes over time. For deeper analysis, see the July AI Gateway Production Index.
Copy link to headingWhat's ranked
There are four leaderboards, each with its own metrics:
Leaderboard
Ranks
Metrics
Individual models
Requests, token volume, spend, images or videos generated
Model labs
Requests, token volume, spend, images or videos generated
Opted-in apps built on the AI Gateway
Token volume, spend
Inference providers
Token volume, spend
The four leaderboards and the metrics each one ranks.
Models and labs can be filtered by modality (text, image, video) and show a daily percentage share over time; apps and providers are aggregated across all modalities and show a ranked top list.
Copy link to headingOpen data
The data behind the leaderboards is open, published under Creative Commons Attribution 4.0 (CC BY 4.0). You are free to use, share, and adapt it, including commercially, as long as you give credit, link to the license, and indicate if changes were made.
Every chart and ranked list has a download button that exports the current view as a CSV.
For programmatic access, use the export endpoint, which returns the same data and is cached for 24 hours:
# Full export, all datasetscurl "https://vercel.com/api/ai/leaderboard-export"# A single datasetcurl "https://vercel.com/api/ai/leaderboard-export?dataset=models"# A single dataset, filtered by modalitycurl "https://vercel.com/api/ai/leaderboard-export?dataset=models&modality=image"Querying the export endpoint: the full export, one dataset, and one dataset narrowed by modality.
For models and labs, each row is one entity's daily share of a single metric. One response includes rows for requests, tokens, spend, imageCount, and videoCount, so filter on the metric field to pull out the series you want.
{ "date": "2026-05-10", "group": "model", "name": "Gemini 3 Flash", "metric": "tokens", "modality": "text", "share_percent": 23.9}One row from the models dataset: a model's daily share of a single metric.
Share a chart
Every chart has a share button that turns the current view into an image. Pick an aspect ratio (landscape, square, or portrait), then download it as a PNG or copy it to your clipboard. The image includes the legend, title, and AI Gateway branding.

A shared chart image: top models by token volume.
View the leaderboards or read the AI Production Index.
関連記事
今日のまとめ
AI日報で今日の重要ニュースをまとめ読み