Skip to main content
Public software adoption and AI vendor data sourced from anonymized business spend on Ramp’s network. Two datasets: Ramp Rate covers any SaaS category with 12mo trailing adoption, growth, switch, and spend-share metrics; Ramp AI Index covers AI vendors (openai, anthropic, google, xai, deepseek) with up to 120 months of monthly share history, sliced by sector and company size. Use Ramp Rate for competitive vendor benchmarking in any category, and AI Index for longitudinal AI adoption trends. Reflects actual purchase behavior, not reviews. 9 example endpoints available through Lava’s AI Gateway. See the Ramp Data API docs for full documentation.
This provider is managed — no additional setup required.
This is a catch-all provider — any valid URL under https://api.ramp.com/v1/public is supported. Ramp Data public API. Construct URL as https://api.ramp.com/v1/public/{dataset}/{endpoint}. Two datasets: (1) ramp-rate — cross-category vendor adoption, 12mo trailing. Endpoints: /ramp-rate/categories, /ramp-rate/categories//summary, /ramp-rate/categories//vendors, /ramp-rate/vendors/resolve?vendor_name=, /ramp-rate/vendors//profile, /ramp-rate/vendors/compare?vendor_slugs=A&vendor_slugs=B. (2) ai-index — AI-specific vendor share, up to 120 months. Endpoints: /ai-index/adoption, /ai-index/adoption/sectors, /ai-index/adoption/sizes, each accepting months=1..120. The endpoints below are curated examples.

Endpoints

List all Ramp Rate software categories

GET https://api.ramp.com/v1/public/ramp-rate/categories — Free
const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/categories', { method: 'GET' });

Get adoption stats for a single category

GET https://api.ramp.com/v1/public/ramp-rate/categories/Observability/summary — Free
const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/categories/Observability/summary', { method: 'GET' });

Get a ranked vendor leaderboard within a category

GET https://api.ramp.com/v1/public/ramp-rate/categories/Observability/vendors?limit=5 — Free
const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/categories/Observability/vendors?limit=5', { method: 'GET' });

Resolve a vendor name to its canonical vendor_slug

GET https://api.ramp.com/v1/public/ramp-rate/vendors/resolve?vendor_name=Datadog — Free
const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/vendors/resolve?vendor_name=Datadog', { method: 'GET' });

Get a vendor’s Ramp Rate profile across all its categories

GET https://api.ramp.com/v1/public/ramp-rate/vendors/datadog/profile — Free
const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/vendors/datadog/profile', { method: 'GET' });

Compare adoption metrics across 2-10 vendors

GET https://api.ramp.com/v1/public/ramp-rate/vendors/compare?vendor_slugs=datadog&vendor_slugs=newrelic.com — Free
const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/vendors/compare?vendor_slugs=datadog&vendor_slugs=newrelic.com', { method: 'GET' });

Monthly AI vendor share (openai, anthropic, google, xai, deepseek) across all Ramp businesses

GET https://api.ramp.com/v1/public/ai-index/adoption?months=12 — Free
const data = await lava.gateway('https://api.ramp.com/v1/public/ai-index/adoption?months=12', { method: 'GET' });

AI vendor share sliced by industry sector

GET https://api.ramp.com/v1/public/ai-index/adoption/sectors?months=12 — Free
const data = await lava.gateway('https://api.ramp.com/v1/public/ai-index/adoption/sectors?months=12', { method: 'GET' });

AI vendor share sliced by company size

GET https://api.ramp.com/v1/public/ai-index/adoption/sizes?months=12 — Free
const data = await lava.gateway('https://api.ramp.com/v1/public/ai-index/adoption/sizes?months=12', { method: 'GET' });

Next Steps

All Providers

Browse all supported AI providers

Forward Proxy

Learn how to construct proxy URLs and authenticate requests