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

# Enterprise Pricing

> Custom Enterprise pricing for the X API

export const Button = ({href, children}) => {
  return <div className="not-prose group">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-full group-hover:opacity-[0.9] font-medium">
        <span>
          {children}
        </span>
        <svg width="3" height="24" viewBox="0 -9 3 24" class="h-6 rotate-0 overflow-visible"><path d="M0 0L3 3L0 6" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></path></svg>
      </button>
    </a>
  </div>;
};

Enterprise plans are custom-tailored to your organization's needs. Work with a dedicated account team to build a package that matches your data volume, endpoint usage, and support requirements.

<Button href="/forms/enterprise-api-interest">Contact sales for pricing</Button>

***

## How Enterprise pricing works

<CardGroup cols={2}>
  <Card title="Custom packages" icon="sliders">
    Pricing is tailored to your specific data volume, endpoint needs, and throughput requirements.
  </Card>

  <Card title="Committed contracts" icon="file-contract">
    Predictable costs with longer-term agreements and committed usage levels.
  </Card>

  <Card title="No post read cap" icon="infinity">
    Custom or unlimited post read volumes, far beyond the 2 million monthly cap on pay-per-use plans.
  </Card>

  <Card title="Dedicated support included" icon="headset">
    A named account manager and priority technical support are included with every Enterprise plan.
  </Card>
</CardGroup>

***

## What's included

Every Enterprise plan includes access to the full X API plus exclusive Enterprise endpoints:

| Feature                    | Details                                       |
| :------------------------- | :-------------------------------------------- |
| **All standard endpoints** | Everything available in the pay-per-use X API |
| **Volume streams**         | Full firehose and language-specific streams   |
| **Likes streams**          | Full and sampled likes in real-time           |
| **Powerstream**            | Advanced filtered streaming                   |
| **Engagement metrics**     | Post and media analytics endpoints            |
| **Account Activity**       | Real-time user event subscriptions            |
| **Stream webhooks**        | Filtered stream delivery via webhooks         |
| **Custom rate limits**     | Elevated limits tailored to your needs        |
| **Dedicated support**      | Named account manager and priority resolution |

***

## Enterprise vs. pay-per-use

|                        | Pay-per-use                 | Enterprise                         |
| :--------------------- | :-------------------------- | :--------------------------------- |
| **Pricing model**      | Credit-based, pay as you go | Custom contract                    |
| **Monthly post cap**   | 2 million reads             | Custom / unlimited                 |
| **Volume streams**     | Not available               | Full firehose and language streams |
| **Likes streams**      | Not available               | Full and sampled likes             |
| **Engagement metrics** | Not available               | Post and media analytics           |
| **Rate limits**        | Standard                    | Custom / elevated                  |
| **Support**            | Community forum             | Dedicated account manager          |
| **Commitment**         | None                        | Contract-based                     |

***

## Monitoring usage

Track your API usage programmatically with the [Usage endpoint](/x-api/usage/introduction):

```bash theme={null}
curl "https://api.x.com/2/usage/tweets" \
  -H "Authorization: Bearer $BEARER_TOKEN"
```

This returns daily Post consumption counts, helping you:

* Track consumption against your contract limits
* Generate usage reports for stakeholders
* Identify high-consumption endpoints
* Plan capacity with your account team

***

## Get started

<Steps>
  <Step title="Contact sales">
    [Apply for Enterprise access](/forms/enterprise-api-interest) and tell us about your use case and data needs.
  </Step>

  <Step title="Get a custom quote">
    Our sales team will work with you to build a package that fits your requirements and budget.
  </Step>

  <Step title="Get onboarded">
    Your dedicated account manager will help you set up credentials, configure access, and start building.
  </Step>
</Steps>

<Button href="/forms/enterprise-api-interest">Apply for Enterprise access</Button>

***

## Next steps

<CardGroup cols={2}>
  <Card title="Apply for access" icon="key" href="/forms/enterprise-api-interest">
    Contact our sales team to get started.
  </Card>

  <Card title="Usage API" icon="chart-line" href="/x-api/usage/introduction">
    Monitor usage programmatically.
  </Card>
</CardGroup>
