---
title: "List remote configurations"
method: GET
path: "/remote-configurations"
tags: ["Remote Configurations"]
---

# List remote configurations

`GET /remote-configurations`

Returns a paginated list of remote configurations for the authenticated project.
Configurations are ordered by creation date (newest first). List items do not include the inline `payload` values — read a single configuration or the payload endpoint to fetch them.

## Query parameters

- `limit` integer
- `starting_after` string

## Response `200`

A paginated list of remote configurations.

- V4RemoteConfigurationList
  - `object` string, required
  - `url` string, required
  - `data` V4RemoteConfiguration[], required
    - `object` string, required
    - `id` string, required — Remote configuration identifier (UUID).
    - `url` string, required — Canonical API path.
    - `name` string, required — Display name.
    - `status` string, required — Lifecycle status. Only `active` configurations are served to the SDK. `archived` is terminal. Change via `PATCH /remote-configurations/{config_id}/status`.
    - `context_key` string, nullable — Optional stable key the SDK uses to look up this configuration.
    - `segment_percent` number, required — Percentage (0–100) of the targeted audience that receives this configuration. `100` targets the whole audience.
    - `segmentation_conditions` V4RemoteConfigurationSegmentationCondition[], required — Targeting rules that narrow the audience. Always present on read; `[]` when no conditions are set.
      - `code` string, required — Identifier of the user attribute or metric the rule tests.
      - `comparator` string, required — Comparison operator applied between the attribute and `values`.
      - `type` string, required — Value type of the attribute being compared.
      - `values` string[], required — Scalar values the rule compares against.
      - `object_values` object[], nullable — Optional structured values for comparators that match against objects rather than scalars.
    - `priority` integer, nullable, required — Resolution priority when a user matches multiple configurations (read-only). `null` until the configuration is first activated.
    - `started_at` string, date-time, nullable — When the configuration was activated. `null` while in `draft`.
    - `finished_at` string, date-time, nullable — When the configuration was archived. `null` while not archived.
    - `last_applied_at` string, date-time, nullable — When the configuration was last served to a user.
    - `created_at` string, date-time, required — ISO 8601 creation timestamp.
    - `updated_at` string, date-time, required — ISO 8601 last update timestamp.
  - `has_more` boolean, required
  - `next_cursor` string, nullable

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `500` — Internal error
- `502` — Upstream service failure
- `504` — Upstream timeout

---

[API](https://skmtc.net/qonversion/apis/qonversion-rest-api-v4.md) · [All operations](https://skmtc.net/qonversion/apis/qonversion-rest-api-v4/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/qonversion/qonversion-rest-api-v4/versions/e3f72cf8951c/schema)
