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

# List features

`GET /v1/features`

List feature definitions.

## Query parameters

- `take` number, nullable
- `skip` number, nullable
- `code` string
- `code__not` string
- `code__isNull` string
- `code__isNotNull` string
- `code__equals` string
- `code__contains` string
- `code__startsWith` string
- `code__endWith` string
- `name` string
- `name__not` string
- `name__isNull` string
- `name__isNotNull` string
- `name__equals` string
- `name__contains` string
- `name__startsWith` string
- `name__endWith` string
- `status` union
  - 'all' | 'active' | 'archived'
  - string — all,active
- `status__in` union
  - 'all' | 'active' | 'archived'
  - string — all,active
- `search` string

## Response `200`

- PaginatedFeature
  - `meta` object, required
    - `total` number, required — Total of existing items.
    - `taken` number, required — Number of items returned.
    - `skipped` number, required — Number of items skipped.
  - `data` Feature[], required — List of Feature.
    - `code` string, required — Feature code.
    - `name` string, required — Feature name.
    - `description` string, nullable, required — Feature description.
    - `value_type` 'boolean' | 'number', required — Type of feature value.
    - `resolution_strategy` 'max' | 'sum' | 'replace', nullable, required — Strategy used to combine multiple product feature values for number features.
    - `default_value` union, required — Default value used when no product or customer feature value applies. Null means no default.
      - boolean
      - number
    - `status` 'active' | 'archived', required — Feature status.
    - `created_at` string, date-time, required — Creation date.
    - `updated_at` string, date-time, required — Last update date.
    - `archived_at` string, date-time, nullable, required — Archival date.

---

[API](https://skmtc.dev/hyperline/apis/hyperline-api.md) · [All operations](https://skmtc.dev/hyperline/apis/hyperline-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hyperline/hyperline-api/revisions/19fa5f22e39b/schema)
