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

# List Plans

> List all available subscription pricing tiers

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer YOUR_ACCESS_TOKEN`
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X GET '/subscription/plans' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "tiers": [
        {
          "id": "tier_free",
          "name": "Free",
          "price_usd": 0,
          "billing_period": "monthly",
          "features": {
            "rate_limit": 60,
            "wallets": 5,
            "api_keys": 2,
            "webhooks": 3
          }
        },
        {
          "id": "tier_pro",
          "name": "Pro",
          "price_usd": 49,
          "billing_period": "monthly",
          "features": {
            "rate_limit": 300,
            "wallets": 50,
            "api_keys": 10,
            "webhooks": 20
          }
        }
      ]
    }
  }
  ```
</ResponseExample>
