Skip to content

Leaderboards

The AI Gateway leaderboards show which models, labs, apps, and providers developers use most on AI Gateway. Use them to see what's gaining traction, compare options before you build, and track how usage shifts over time.

LeaderboardRanksModalitiesMetrics
ModelsIndividual modelsText, image, videoRequests, token volume, spend, images or videos generated
LabsModel creators (OpenAI, Anthropic…)Text, image, videoRequests, token volume, spend, images or videos generated
AppsOpted-in apps built on AI GatewayAllToken volume, spend
ProvidersInference providersAllToken volume, spend

Models and labs show a daily percentage share over time. Apps and providers show a ranked top list. The share figures beside each model or lab reflect the most recent day by default; hover over any day on the chart to see that day's numbers.

The leaderboards are built from real AI Gateway usage, aggregated daily. The data is anonymized: it shows each model, lab, app, or provider's percentage share or rank, never absolute volumes, customer names, or team and project identifiers.

Apps only appear if their owner opts in. To add or remove your app, see App attribution.

Each chart has a share button that turns the current view into an image:

  • Download the chart as a PNG.
  • Copy the image to your clipboard.
  • Choose an aspect ratio (landscape, square, or portrait) for the platform you're posting to.

The image includes the legend, headline, and AI Gateway branding, so it stays clear when shared on its own.

The data behind the leaderboards is open. Download it as CSV or read it programmatically.

The data is published under Creative Commons Attribution 4.0 (CC BY 4.0). You're free to use, share, and adapt it, including commercially, as long as you give appropriate credit and link to the license.

© 2026 Vercel. "AI Gateway Leaderboard Data" is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/

Every chart and ranked list has a Download CSV button that exports exactly what it shows. CSV files include a final row with the attribution notice above.

For programmatic access, use the export endpoint. It returns the same anonymized data and is cached for 24 hours.

GET https://vercel.com/api/ai/leaderboard-export
ParameterValuesDefaultNotes
datasetmodels, labs, apps, providersmodelsWhich leaderboard to export.
modalityall, text, image, videoallApplies to models and labs only.
formatjson, csvjsoncsv returns a file download.
# Daily share of the top models for text, as JSON
curl "https://vercel.com/api/ai/leaderboard-export?dataset=models&modality=text"
 
# The same data saved as a CSV file
curl "https://vercel.com/api/ai/leaderboard-export?dataset=models&modality=text&format=csv" -o ai-gateway-models-text.csv
 
# Top providers, ranked by token volume and by spend
curl "https://vercel.com/api/ai/leaderboard-export?dataset=providers"

For models and labs, each row is one entity's share on one day for one metric. For apps and providers, each row is one ranked entity:

{
  "dataset": "providers",
  "license": "CC-BY-4.0",
  "license_url": "https://creativecommons.org/licenses/by/4.0/",
  "rows": [
    {
      "rank": 1,
      "name": "OpenAI",
      "ranked_by": "Token Volume",
      "url": "https://openai.com",
      "description": ""
    }
  ]
}

Field values:

  • group: model or lab (models and labs only).
  • metric: requests, tokens, spend, imageCount, or videoCount.
  • modality: all, text, image, or video.
  • share_percent: the entity's percentage share of that metric on that day.
  • rank and ranked_by: position (starting at 1) and Token Volume or Spend (apps and providers only).

The csv format returns the same columns as a text/csv attachment, with a final row carrying the CC BY 4.0 attribution notice.

Last updated June 29, 2026

Was this helpful?