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

# Enterprise API

> Enterprise-grade access to the X firehose, volume streams, full-archive search, and PowerTrack with dedicated technical support and custom pricing.

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>;
};

The X API Enterprise plan provides the highest level of access to X data. Get complete firehose coverage, volume streams, semantic embedding operators for Filtered Stream, dedicated account management, and custom rate limits designed for organizations that depend on X data at scale.

<CardGroup cols={3}>
  <Card title="Request access" icon="rocket" href="/forms/enterprise-api-interest">
    Apply for Enterprise access with a dedicated account team.
  </Card>

  <Card title="API reference" icon="code" href="/x-api/posts/create-post">
    Explore all available endpoints, including Enterprise-exclusive ones.
  </Card>

  <Card title="SDKs" icon="cube" href="/tools-and-libraries">
    Official Python and TypeScript libraries.
  </Card>
</CardGroup>

***

## Why Enterprise?

Enterprise access includes everything in the pay-per-use X API plus exclusive high-volume endpoints, dedicated support, and custom packages tailored to your needs.

<CardGroup cols={2}>
  <Card title="Complete firehose access" icon="fire">
    Stream 100% of public posts in real-time. No sampling, no limits. Get every post as it happens.
  </Card>

  <Card title="Volume streams" icon="wave-pulse">
    Access full-volume and language-specific streams, including English, Japanese, Korean, and Portuguese firehoses.
  </Card>

  <Card title="Dedicated support" icon="headset">
    Get a dedicated account manager, personalized technical support, and priority issue resolution.
  </Card>

  <Card title="Custom rate limits" icon="gauge-high">
    Higher rate limits and custom-tailored packages to match your throughput requirements.
  </Card>

  <Card title="Engagement metrics at scale" icon="chart-line">
    Access post and media analytics endpoints for deep engagement insights across large datasets.
  </Card>

  <Card title="Compliance streams" icon="shield-check">
    Stay compliant with real-time compliance event streams for posts, users, and likes.
  </Card>

  <Card title="Semantic embedding for Filtered Stream" icon="brain">
    Match posts by conceptual meaning — not just keywords — using the `embedding:` operator in Filtered Stream (requires Embedding tier).
  </Card>
</CardGroup>

***

## Enterprise-exclusive endpoints

These endpoints are only available on Enterprise plans:

<CardGroup cols={3}>
  <Card title="Volume Streams" icon="satellite-dish" href="/x-api/posts/volume-streams/introduction">
    Full firehose, language-specific streams, and sampled streams.
  </Card>

  <Card title="Likes Streams" icon="heart" href="/x-api/stream/likes-streams-introduction">
    Stream all likes or sampled likes in real-time.
  </Card>

  <Card title="Powerstream" icon="bolt" href="/x-api/powerstream/introduction">
    High-performance filtered streaming with low latency (keyword operators).
  </Card>

  <Card title="Engagement Metrics" icon="chart-bar" href="/x-api/posts/get-post-analytics">
    Deep analytics for post and media engagement.
  </Card>

  <Card title="Account Activity" icon="bell" href="/x-api/account-activity/introduction">
    Subscribe to real-time user activity events including posts, DMs, likes, and follows.
  </Card>

  <Card title="Stream Webhooks" icon="webhook" href="/x-api/webhooks/stream/introduction">
    Receive filtered stream data via webhooks instead of persistent connections.
  </Card>
</CardGroup>

***

## What you can build

Enterprise access powers the most demanding use cases on X.

<CardGroup cols={3}>
  <Card title="Posts" icon="message" href="/x-api/posts/lookup/introduction">
    Search, retrieve, and publish posts. Access timelines, threads, and quote posts.
  </Card>

  <Card title="Users" icon="user" href="/x-api/users/lookup/introduction">
    Look up users, manage follows, blocks, and mutes.
  </Card>

  <Card title="Spaces" icon="microphone" href="/x-api/spaces/lookup/introduction">
    Find live audio conversations and their participants.
  </Card>

  <Card title="Direct Messages" icon="envelope" href="/x-api/direct-messages/lookup/introduction">
    Send and receive private messages.
  </Card>

  <Card title="Lists" icon="list" href="/x-api/lists/list-lookup/introduction">
    Create and manage curated lists of accounts.
  </Card>

  <Card title="Trends" icon="arrow-trend-up" href="/x-api/trends/trends-by-woeid/introduction">
    Access trending topics by location.
  </Card>
</CardGroup>

***

## Key features

<Tabs>
  <Tab title="Full firehose">
    ### Complete real-time coverage

    Stream 100% of public posts as they happen. No sampling, no gaps. Enterprise firehose access gives you the complete picture of public conversation on X.

    Available streams:

    * **All posts** - Every public post in real-time
    * **English posts** - All English-language posts
    * **Japanese posts** - All Japanese-language posts
    * **Korean posts** - All Korean-language posts
    * **Portuguese posts** - All Portuguese-language posts
    * **Sampled streams** - 1% and 10% random samples

    [Learn more about volume streams](/x-api/posts/volume-streams/introduction)
  </Tab>

  <Tab title="Data access">
    ### Rich data objects

    Access detailed, structured data for posts, users, media, and more:

    * **Posts**: Full text, metrics, entities, annotations, conversation threads
    * **Users**: Profiles, follower counts, verification status
    * **Media**: Images, videos, GIFs with metadata
    * **Polls**: Options and vote counts

    Customize responses with [fields](/x-api/fundamentals/fields) and [expansions](/x-api/fundamentals/expansions) to get exactly the data you need.
  </Tab>

  <Tab title="Streaming">
    ### Filtered stream

    Get posts delivered in real-time as they're published. Enterprise adds higher rule limits and the semantic `embedding:` operator (in Filtered Stream only) to match posts by meaning (not just keywords).

    ```bash theme={null}
    # Add a rule
    curl -X POST "https://api.x.com/2/tweets/search/stream/rules" \
      -H "Authorization: Bearer $TOKEN" \
      -d '{"add": [{"value": "from:xdevelopers"}]}'

    # Connect to stream
    curl "https://api.x.com/2/tweets/search/stream" \
      -H "Authorization: Bearer $TOKEN"
    ```

    [Learn more about filtered stream](/x-api/posts/filtered-stream/introduction)
  </Tab>

  <Tab title="Search & analytics">
    ### Full-archive search

    Search the complete history of public posts back to 2006. Build queries with operators for users, keywords, dates, and more.

    ```bash theme={null}
    curl "https://api.x.com/2/tweets/search/all?query=AI%20lang:en" \
      -H "Authorization: Bearer $TOKEN"
    ```

    ### Engagement metrics

    Access deep engagement analytics including impressions, likes, reposts, replies, video views, and media-level metrics.

    [Learn more about search](/x-api/posts/search/introduction)
  </Tab>
</Tabs>

***

## Enterprise vs. pay-per-use

| Feature                | Pay-per-use             | Enterprise                                                            |
| :--------------------- | :---------------------- | :-------------------------------------------------------------------- |
| **Post search**        | Recent and full-archive | Recent and full-archive                                               |
| **Filtered stream**    | Up to 1,000 rules       | 5,000+ rules + semantic `embedding:` operators (Filtered Stream only) |
| **Volume streams**     | -                       | Full firehose and language streams                                    |
| **Likes streams**      | -                       | Full and sampled likes                                                |
| **Powerstream**        | -                       | Advanced filtered streaming                                           |
| **Engagement metrics** | -                       | Post and media analytics                                              |
| **Account Activity**   | -                       | Real-time user event subscriptions                                    |
| **Monthly post cap**   | 2 million reads         | Custom / unlimited                                                    |
| **Rate limits**        | Standard                | Custom / elevated                                                     |
| **Support**            | Community forum         | Dedicated account manager                                             |

***

## Get started

<Steps>
  <Step title="Apply for Enterprise access">
    [Contact our sales team](/forms/enterprise-api-interest) to discuss your needs and get a custom package.
  </Step>

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

  <Step title="Start building">
    Use the same modern v2 API endpoints plus Enterprise-exclusive endpoints for your integration.

    ```bash theme={null}
    curl "https://api.x.com/2/users/by/username/xdevelopers" \
      -H "Authorization: Bearer $BEARER_TOKEN"
    ```
  </Step>
</Steps>

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

***

## Tools & libraries

<CardGroup cols={3}>
  <Card title="Python SDK" icon="python" href="/xdks/python/overview">
    Official Python library with async support.
  </Card>

  <Card title="TypeScript SDK" icon="js" href="/xdks/typescript/overview">
    Official TypeScript/JavaScript library.
  </Card>

  <Card title="Postman" icon="server" href="https://www.postman.com/xapidevelopers/x-api-public-workspace/collection/34902927-2efc5689-99c6-4ab6-8091-996f35c2fd80">
    Interactive API explorer.
  </Card>
</CardGroup>

[Browse all libraries](/tools-and-libraries)

***

## Support

<CardGroup cols={2}>
  <Card title="Dedicated Account Manager" icon="headset">
    Enterprise customers get a dedicated point of contact for technical and account support.
  </Card>

  <Card title="Developer Forum" icon="comments" href="https://devcommunity.x.com">
    Get help from the community and X team.
  </Card>
</CardGroup>
