Skip to main content
GET
/
flags
Get feature flags
curl --request GET \
  --url http://localhost:3000/api/openapi/flags \
  --header 'x-api-key: <api-key>'
{
  "disableSignups": true,
  "disableEmailAuth": true
}

Authorizations

x-api-key
string
header
required

The API key to authenticate requests.

Response

200 - application/json

The current feature flags for this instance.

disableSignups
boolean
required

Whether new user signups are disabled on this instance.

disableEmailAuth
boolean
required

Whether email-based authentication is disabled on this instance.