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

# Pro API accounts and rate limits

> Free partner IDs vs. Pro API accounts: how to identify your integration, lift rate limits, and unlock dashboards, early features, and SLA-backed support.

Any caller can get a partner ID for free just by passing `&partner=<string>` on `/v2/quote` or `/prices`, without signing up for anything. **Pro API accounts** layer on top: higher RPS, larger daily quotas, an analytics dashboard, early feature access, and SLA-backed support for production workloads.

## Free tier

Pass `&partner=<your-app-name>` on any Velora REST endpoint: that string *is* your partner ID. For example:

```bash theme={null}
curl -s "https://api.velora.xyz/v2/quote" \
  --data-urlencode "srcToken=0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" \
  --data-urlencode "destToken=0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" \
  --data-urlencode "amount=1000000000000000000" \
  --data-urlencode "srcDecimals=18" \
  --data-urlencode "destDecimals=6" \
  --data-urlencode "side=SELL" \
  --data-urlencode "chainId=1" \
  --data-urlencode "mode=ALL" \
  --data-urlencode "userAddress=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045" \
  --data-urlencode "partner=my-super-app" \
  -G | jq
```

Default [rate limits](/integrate/rate-limits) apply: 1 RPS and 3,000 requests/day, which leaves plenty of headroom to prototype and run real integrations. When your traffic starts to bump against those limits, a [Pro plan](#pro-plans) lifts them; for anything bespoke, [reach out](https://www.velora.xyz/contact) and we'll size it with you.

<Note>
  A free partner ID identifies your traffic but does **not** unlock partner-fee economics. To collect partner fees or share of surplus on swaps, see [Monetization](/overview/monetization).
</Note>

## Pro plans

Subscribing to a Pro plan lifts your rate limits and adds:

* Higher sustained RPS and burst RPS
* Larger daily request quota
* Analytics dashboard (Pro and above)
* Early access to new features (Pro and above)
* Standard SLA + technical support (Custom SLA on Enterprise)

### Plan comparison

| Plan                | Rate limit | Burst  | Daily quota | Dashboard | Early features | SLA      |
| ------------------- | ---------- | ------ | ----------- | --------- | -------------- | -------- |
| Basic               | 10 RPS     | 20 RPS | 50,000      | —         | —              | Standard |
| Pro                 | 20 RPS     | 40 RPS | 120,000     | ✓         | ✓              | Standard |
| Enterprise          | 40 RPS     | 80 RPS | 250,000     | ✓         | ✓              | Custom   |
| Extended Basic      | 15 RPS     | 25 RPS | 1,000,000   | ✓         | —              | Standard |
| Extended Pro        | 25 RPS     | 50 RPS | 2,000,000   | ✓         | ✓              | Standard |
| Extended Enterprise | Custom     | Custom | Custom      | ✓         | —              | Custom   |

All tiers include technical support. Annual billing is offered at a discount. For exact pricing and to subscribe, see [velora.xyz/pro](https://velora.xyz/pro).

### Which plan fits

* **Basic / Pro / Enterprise** — workloads bound by sustained RPS, like real-time quoting and frontend integrations.
* **Extended Basic / Extended Pro** — high daily volume at moderate RPS, like background indexing, analytics pipelines, and batch quoting.
* **Enterprise / Extended Enterprise** — custom SLA, tailored quotas, and bespoke commercial terms.

## Get started

<CardGroup cols={2}>
  <Card title="Subscribe to a Pro plan" icon="credit-card" href="https://velora.xyz/pro">
    Self-serve Basic, Pro, and Extended tiers. Monthly or annual billing.
  </Card>

  <Card title="Contact us for Enterprise" icon="envelope" href="https://www.velora.xyz/contact">
    Custom SLA, dedicated support, bespoke quotas.
  </Card>

  <Card title="Free-tier rate limits" icon="gauge" href="/integrate/rate-limits">
    Limits that apply before you subscribe.
  </Card>

  <Card title="Monetization" icon="coins" href="/overview/monetization">
    Partner fees, surplus sharing, and revenue splits.
  </Card>
</CardGroup>
