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

# endpoint_not_in_plan

> This endpoint or tool is not included in your current plan

|                    |                        |
| ------------------ | ---------------------- |
| **HTTP status**    | `403 Forbidden`        |
| **Error code**     | `endpoint_not_in_plan` |
| **Resolve action** | `upgrade_plan`         |

## What happened

Your organization has an active plan, but the endpoint or MCP tool you called is
not included in it, so access is restricted. Because the request is billable
(authenticated with an API key or OAuth token), it is rejected rather than
served.

This typically occurs when:

* Your plan tier doesn't include the endpoint or tool you're calling
* A newer capability was added that your current plan doesn't include

## How to fix

<Steps>
  <Step title="List available plans">
    ```bash theme={"dark"}
    curl https://api.particle.pro/v1/billing/plans \
      -H "Authorization: Bearer YOUR_JWT_TOKEN"
    ```
  </Step>

  <Step title="Change to a plan that includes this endpoint">
    ```bash theme={"dark"}
    curl -X PUT https://api.particle.pro/v1/organizations/{orgId}/billing/subscription \
      -H "Authorization: Bearer YOUR_JWT_TOKEN" \
      -H "Content-Type: application/json" \
      -d '{"plan_id": "PLAN_ID_FROM_STEP_1"}'
    ```

    Requires the **OWNER** role.
  </Step>
</Steps>
