> ## Documentation Index
> Fetch the complete documentation index at: https://lava.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Ramp Data

> Public software adoption and AI vendor data sourced from anonymized business spend on Ramp's network.

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](https://docs.ramp.com/developer-api/v1/ramp-data) for full documentation.

<Info>This provider is **managed** — no additional setup required.</Info>

<Info>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/\&#123;dataset\&#125;/\&#123;endpoint\&#125](https://api.ramp.com/v1/public/\&#123;dataset\&#125;/\&#123;endpoint\&#125);. Two datasets: (1) ramp-rate — cross-category vendor adoption, 12mo trailing. Endpoints: /ramp-rate/categories, /ramp-rate/categories/\{category}/summary, /ramp-rate/categories/\{category}/vendors, /ramp-rate/vendors/resolve?vendor\_name=, /ramp-rate/vendors/\{vendor\_slug}/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.</Info>

## Endpoints

### List all Ramp Rate software categories

**GET** `https://api.ramp.com/v1/public/ramp-rate/categories` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/categories', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.ramp.com%2Fv1%2Fpublic%2Framp-rate%2Fcategories" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Get adoption stats for a single category

**GET** `https://api.ramp.com/v1/public/ramp-rate/categories/Observability/summary` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/categories/Observability/summary', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.ramp.com%2Fv1%2Fpublic%2Framp-rate%2Fcategories%2FObservability%2Fsummary" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Get a ranked vendor leaderboard within a category

**GET** `https://api.ramp.com/v1/public/ramp-rate/categories/Observability/vendors?limit=5` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/categories/Observability/vendors?limit=5', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.ramp.com%2Fv1%2Fpublic%2Framp-rate%2Fcategories%2FObservability%2Fvendors%3Flimit%3D5" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Resolve a vendor name to its canonical vendor\_slug

**GET** `https://api.ramp.com/v1/public/ramp-rate/vendors/resolve?vendor_name=Datadog` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/vendors/resolve?vendor_name=Datadog', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.ramp.com%2Fv1%2Fpublic%2Framp-rate%2Fvendors%2Fresolve%3Fvendor_name%3DDatadog" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### Get a vendor's Ramp Rate profile across all its categories

**GET** `https://api.ramp.com/v1/public/ramp-rate/vendors/datadog/profile` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/vendors/datadog/profile', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.ramp.com%2Fv1%2Fpublic%2Framp-rate%2Fvendors%2Fdatadog%2Fprofile" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### 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

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.ramp.com/v1/public/ramp-rate/vendors/compare?vendor_slugs=datadog&vendor_slugs=newrelic.com', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.ramp.com%2Fv1%2Fpublic%2Framp-rate%2Fvendors%2Fcompare%3Fvendor_slugs%3Ddatadog%26vendor_slugs%3Dnewrelic.com" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### 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

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.ramp.com/v1/public/ai-index/adoption?months=12', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.ramp.com%2Fv1%2Fpublic%2Fai-index%2Fadoption%3Fmonths%3D12" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### AI vendor share sliced by industry sector

**GET** `https://api.ramp.com/v1/public/ai-index/adoption/sectors?months=12` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.ramp.com/v1/public/ai-index/adoption/sectors?months=12', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.ramp.com%2Fv1%2Fpublic%2Fai-index%2Fadoption%2Fsectors%3Fmonths%3D12" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

### AI vendor share sliced by company size

**GET** `https://api.ramp.com/v1/public/ai-index/adoption/sizes?months=12` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.ramp.com/v1/public/ai-index/adoption/sizes?months=12', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.ramp.com%2Fv1%2Fpublic%2Fai-index%2Fadoption%2Fsizes%3Fmonths%3D12" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
