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

# enterprise_required

> Endpoint is available only to organizations on the Enterprise plan

export const SupportLink = ({children}) => {
  return <a href="https://platform.particle.pro/support">{children}</a>;
};

|                    |                       |
| ------------------ | --------------------- |
| **HTTP status**    | `403 Forbidden`       |
| **Error code**     | `enterprise_required` |
| **Resolve action** | `contact_support`     |

## What happened

The organization called an **Enterprise-only** endpoint on a plan other than
Enterprise. The episode firehose stream
(`GET`/`POST /v1/podcasts/episodes/stream`) is the only such endpoint: an
open-ended Server-Sent Events feed of every episode as it is ingested, reserved
for the Enterprise plan.

Unlike premium endpoints, Enterprise-only access is **not** granted during the
one-time signup credit phase — an Individual, Growth, or Business organization is
blocked in every phase, whether or not its signup credit remains.

## How to fix

If you need the real-time firehose, <SupportLink>contact us</SupportLink> to
upgrade to an Enterprise plan.

Otherwise, poll the all-plans pull alternative, which returns the same episodes
in ingestion order with a resumable cursor:

```
GET /v1/podcasts/episodes/feed?milestone=transcribed
```
