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

# List Plans

> Get all subscription plans

Retrieve all available subscription plans for your project.

## Response

<ResponseField name="plans" type="array">
  Array of plan objects
</ResponseField>

<RequestExample>
  ```bash API Key Only (Recommended) theme={null}
  curl -X GET "https://api.usegately.com/api/v1/plans" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```bash With Project ID (Optional) theme={null}
  curl -X GET "https://api.usegately.com/api/v1/plans" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "plans": [
      {
        "id": "plan_123",
        "name": "Pro Plan",
        "description": "Full access to all features",
        "price": 29.00,
        "currency": "usd",
        "interval": "month",
        "stripe_price_id": "price_xxx",
        "features": ["Feature 1", "Feature 2"],
        "is_active": true
      }
    ]
  }
  ```
</ResponseExample>
