Skip to main content
GET
/
feature-flags
List Feature Flags
curl --request GET \
  --url https://use.hoop.dev/api/feature-flags
[
  {
    "components": [
      "gateway",
      "agent"
    ],
    "default": false,
    "description": "New IronRDP-based proxy",
    "enabled": false,
    "name": "experimental.rdp_v2",
    "stability": "experimental"
  }
]

Documentation Index

Fetch the complete documentation index at: https://mintlify.hoop.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Response

OK

components
string[]

Components affected by this flag

Example:
["gateway", "agent"]
default
boolean

Default value when not explicitly set

Example:

false

description
string

Human-readable description

Example:

"New IronRDP-based proxy"

enabled
boolean

Current effective value for the organization

Example:

false

name
string

The feature flag name

Example:

"experimental.rdp_v2"

stability
enum<string>

Stability level

Available options:
experimental,
beta
Example:

"experimental"