---
title: "List features"
method: GET
path: "/api/v1/features"
tags: ["Features"]
---

# List features

`GET /api/v1/features`

## Query parameters

- `statuses` FeatureStatus[]
- `product_id` string, MeteroidId
- `search` string
- `page` integer
- `per_page` integer

## Response `200`

List of features

- FeatureListResponse
  - `data` Feature[], required
    - `created_at` string, date-time, required
    - `description` string, nullable
    - `entitlement` Entitlement
      - `created_at` string, date-time, required
      - `feature_id` string, MeteroidId, required
      - `id` string, MeteroidId, required
      - `updated_at` string, date-time, required
      - `value` union, required
        - object
          - `enabled` boolean, required
          - `type` 'BOOLEAN', required
        - object
          - `enabled` boolean — Per-entitlement kill switch. `false` means disabled.
          - `limit` string, nullable — Cap on usage. Null means unlimited.
          - `overage_behavior` union, required — What happens past the limit.
            - object — Deny access once usage reaches the limit. Meteroid does not enforce this — your integration must check and act.
              - …
            - object — Keep serving usage past the limit; overage is billed or handled out-of-band.
              - …
          - `reset_period` union
            - object — Resets at the start of each subscription billing period.
              - …
            - object — Buckets aligned to the calendar (e.g. every 1st of the month), shared across customers.
              - …
            - object — Fixed-length buckets anchored on the subscription activation date. Resets at every boundary.
              - …
            - object — Continuous rolling window — usage older than the window edge drops out, no fixed reset.
              - …
            - object — Usage accumulates for the life of the subscription — no reset.
              - …
          - `type` 'METERED', required
          - `warning_threshold_pct` integer, nullable — Percentage of the Cap at which a warning triggers (0–100).
    - `feature_type` union, required
      - object
        - `type` 'BOOLEAN', required
      - object
        - `metric_id` string, MeteroidId, required
        - `type` 'METERED', required
    - `id` string, MeteroidId, required
    - `name` string, required
    - `product` union
      - ExistingProductRef
        - `id` string, MeteroidId, required
      - NewProductRef
        - `fee_structure` union, required
          - RateFeeStructure
          - SlotFeeStructure
            - `downgrade_policy` 'REMOVE_AT_END_OF_PERIOD', required
            - `slot_unit_name` string, required
            - `upgrade_policy` 'PRORATED', required
          - CapacityFeeStructure
            - `metric_id` string, MeteroidId, required
          - UsageFeeStructure
            - `metric_id` string, MeteroidId, required
            - `model` 'PER_UNIT' | 'TIERED' | 'VOLUME' | 'PACKAGE' | 'MATRIX', required
          - ExtraRecurringFeeStructure
            - `billing_type` 'ADVANCE' | 'ARREARS', required
          - OneTimeFeeStructure
        - `fee_type` 'RATE' | 'SLOT' | 'CAPACITY' | 'USAGE' | 'EXTRA_RECURRING' | 'ONE_TIME', required
        - `name` string, required
    - `status` 'ACTIVE' | 'DISABLED' | 'ARCHIVED', required — Lifecycle status of a feature.
  - `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-05-23** (v1) `ac42ddd7b4b4` — 4 breaking, 3 info
  - added `#/components/schemas/ExistingProductRef, #/components/schemas/NewProductRef` to the `data/items/product/oneOf[#/components/schemas/ProductRef]/` response property `oneOf` list for the response status `200`
  - the `data/items/product/oneOf[#/components/schemas/ProductRef]/` response's property type/format changed from `object`/`` to ``/`` for status `200`
  - removed the required property `data/items/product/oneOf[#/components/schemas/ProductRef]/id` from the response with the `200` status
  - removed the required property `data/items/product/oneOf[#/components/schemas/ProductRef]/name` from the response with the `200` status
  - …3 more
- **2026-05-18** (v1) `0cdc37620ffb` — 1 info
  - endpoint added
- **2025-07-09** (v1) `dece17f86f99` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/meteroid-oss/apis/meteroid/changes/api/v1/features/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/ac42ddd7b4b4/schema)
