v5

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-02-283466592.5 MB
Feature flags (beta)

List dependent feature flags

Flag prerequisites is an Enterprise feature

Flag prerequisites is available to customers on an Enterprise plan. To learn more, read about our pricing. To upgrade your plan, contact Sales.

List dependent flags across all environments for the flag specified in the path parameters. A dependent flag is a flag that uses another flag as a prerequisite. To learn more, read Flag prerequisites.

get/api/v2/flags/{projectKey}/{featureFlagKey}/dependent-flags

Path parameters

projectKeystring string required

The project key

The project key

featureFlagKeystring string required

The feature flag key

The feature flag key

Response

Multi environment dependent flags collection response

_linksobject required

The location and content type of related resources

Example response

{
  "items": [
    {
      "name": "Example dependent flag",
      "key": "dependent-flag-key-123abc",
      "environments": [
        {
          "name": "Example environment",
          "key": "environment-key-123abc"
        }
      ]
    }
  ]
}