---
title: "List plans"
method: GET
path: "/api/v1/plans"
tags: ["Plans"]
---

# List plans

`GET /api/v1/plans`

## Query parameters

- `product_family_id` string, MeteroidId
- `search` string
- `status` PlanStatusEnum[]
- `plan_type` PlanTypeEnum[]
- `page` integer
- `per_page` integer

## Response `200`

List of plans

- PlanListResponse
  - `data` Plan[], required
    - `available_parameters` AvailableParameters, required
      - `billing_periods` object — Map of component_id -> available billing periods (e.g., "MONTHLY", "ANNUAL")
      - `capacity_thresholds` object — Map of component_id -> available capacity values
      - `slot_components` string[] — List of component_ids that support slot parametrization (initial slot count)
    - `billing_cycles` integer, nullable
    - `created_at` string, date-time, required
    - `currency` string, required
    - `description` string, nullable
    - `id` string, MeteroidId, required
    - `name` string, required
    - `net_terms` integer, required
    - `period_start_day` integer, nullable
    - `plan_type` 'STANDARD' | 'FREE' | 'CUSTOM', required
    - `price_components` PriceComponent[], required
      - `fee` union
        - RatePlanFee — Recurring rate fee (e.g., monthly subscription)
          - `rates` TermRate[], required
            - `price` string, required
            - `term` 'MONTHLY' | 'QUARTERLY' | 'SEMIANNUAL' | 'ANNUAL', required
        - SlotPlanFee — Slot-based fee (e.g., per-seat pricing)
          - `minimum_count` integer, nullable
          - `quota` integer, nullable
          - `rates` TermRate[], required
            - `price` string, required
            - `term` 'MONTHLY' | 'QUARTERLY' | 'SEMIANNUAL' | 'ANNUAL', required
          - `slot_unit_name` string, required
        - CapacityPlanFee — Capacity-based fee with included committed usage and overage
          - `cadence` 'MONTHLY' | 'QUARTERLY' | 'SEMIANNUAL' | 'ANNUAL', required
          - `metric_id` string, MeteroidId, required
          - `thresholds` CapacityThreshold[], required
            - `included_amount` integer, required
            - `per_unit_overage` string, required
            - `price` string, required
        - UsagePlanFee — Usage-based fee
          - `cadence` 'MONTHLY' | 'QUARTERLY' | 'SEMIANNUAL' | 'ANNUAL', required
          - `metric_id` string, MeteroidId, required
          - `pricing` union, required
            - PerUnitPlanPricing
              - …
            - TieredPlanPricing
              - …
            - VolumePlanPricing
              - …
            - PackagePlanPricing
              - …
            - MatrixPlanPricing
              - …
        - ExtraRecurringPlanFee — Extra recurring fee
          - `billing_type` 'ADVANCE' | 'ARREARS', required
          - `cadence` 'MONTHLY' | 'QUARTERLY' | 'SEMIANNUAL' | 'ANNUAL', required
          - `quantity` integer, required
          - `unit_price` string, required
        - OneTimePlanFee — One-time fee
          - `quantity` integer, required
          - `unit_price` string, required
      - `id` string, MeteroidId, required
      - `name` string, required
      - `product_id` string, MeteroidId
    - `product_family` ProductFamily, required
      - `id` string, MeteroidId, required
      - `name` string, required
    - `self_service_rank` integer, nullable
    - `status` 'DRAFT' | 'ACTIVE' | 'INACTIVE' | 'ARCHIVED', required
    - `trial` TrialConfig
      - `duration_days` integer, required
      - `is_free` boolean, required
      - `trialing_plan_id` string, MeteroidId
    - `version` integer, required
    - `version_id` string, MeteroidId, required
  - `pagination_meta` PaginationResponse, required
    - `page` integer, required
    - `per_page` integer, required
    - `total_items` integer, required
    - `total_pages` integer, required

## Other responses

- `401` — Unauthorized
- `429` — Too many requests

## Changes

- **2026-03-27** (v1) `de35c02bb0d2` — 2 warning, 2 info
  - deleted the `query` request parameter `type`
  - added the new `TOO_MANY_REQUESTS` enum value to the `code` response property for the response status `401`
  - added the new optional `query` request parameter `plan_type`
  - added the non-success response with the status `429`
- **2026-03-20** (v1) `51c7018cc5ef` — 10 info
  - added the new optional `query` request parameter `search`
  - added the new optional `query` request parameter `status`
  - added the new optional `query` request parameter `type`
  - added the media type `application/json` for the response with the status `401`
  - …6 more
- **2026-02-19** (v1) `1bbd84c95e41` — 2 breaking, 2 info
  - the response property `data/items/price_components/items/fee` became optional for the status `200`
  - added `#/components/schemas/Fee, subschema #1` to the `data/items/price_components/items/fee` response property `oneOf` list for the response status `200`
  - removed discriminator from `data/items/price_components/items/fee` response property for the response status `200`
  - removed `#/components/schemas/RatePlanFee, #/components/schemas/SlotPlanFee, #/components/schemas/CapacityPlanFee, #/components/schemas/UsagePlanFee, #/components/schemas/ExtraRecurringPlanFee, #/components/schemas/OneTimePlanFee` from the `data/items/price_components/items/fee` response property `oneOf` list for the response status `200`
- …earlier changes not shown

[Full history](https://skmtc.dev/meteroid-oss/apis/meteroid/changes/api/v1/plans/get.md)

---

[API](https://skmtc.dev/meteroid-oss/apis/meteroid.md) · [All operations](https://skmtc.dev/meteroid-oss/apis/meteroid/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/meteroid-oss/meteroid/revisions/de35c02bb0d2/schema)
