List public plan catalog

Returns the catalog of public plans (`is_custom = false`) as the pricing source-of-truth for the dashboard and marketing site. Custom contract plans are excluded. Unauthenticated — this is catalog data, not per-account state (per-account plan lives on `GET /v1/account`).

GET
/v1/plans
curl https://api.bytekit.com \
  -H "Authorization: Bearer sk_live_your_api_key_here"

The public plan catalog.

{
  "plans": [
    {
      "id": "plan_33333333-3333-3333-3333-333333333333",
      "slug": "scale",
      "name": "Scale",
      "price_cents": 49900,
      "included_bytes": 100000000000,
      "topup_price_per_mb_cents": 0.25,
      "max_concurrency": 50,
      "rate_limit_per_sec": 50,
      "is_custom": false
    }
  ]
}