v1
latestOpenAPI 3.0.32026-07-26120117318.1 KBRemote Configurations
List 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.
get/remote-configurations
Query parameters
limitinteger
Maximum number of configurations to return. Min 1, max 100.
starting_afterstring
Cursor for pagination. Pass the id of the last configuration from the previous page to fetch the next page.
Response
A paginated list of remote configurations.
Example response
{
"object": "list",
"url": "/v4/remote-configurations",
"data": [
{
"object": "remote_configuration",
"id": "82a42dc2-76f6-46c2-b883-846acaf2070a",
"url": "/v4/remote-configurations/82a42dc2-76f6-46c2-b883-846acaf2070a",
"name": "Onboarding copy",
"status": "active",
"context_key": "onboarding_copy_v1",
"segment_percent": 100,
"segmentation_conditions": [
{
"code": "platform",
"comparator": "in",
"type": "string",
"values": [
"ios",
"android"
]
}
],
"priority": 1,
"started_at": "2025-11-03T10:26:40Z",
"created_at": "2025-09-15T12:30:00Z",
"updated_at": "2025-11-03T10:26:40Z"
}
]
}