> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rxresu.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Get feature flags

> Returns the current feature flags for this Reactive Resume instance. Feature flags control instance-wide settings such as whether new user signups or email-based authentication are disabled. No authentication required.



## OpenAPI

````yaml /spec.json get /flags
openapi: 3.1.1
info:
  title: Reactive Resume
  version: 5.1.0
  description: Reactive Resume API
  license:
    name: MIT
    url: https://github.com/amruthpillai/reactive-resume/blob/main/LICENSE
  contact:
    name: Amruth Pillai
    email: hello@amruthpillai.com
    url: https://amruthpillai.com
servers:
  - url: http://localhost:3000/api/openapi
security:
  - apiKey: []
externalDocs:
  url: https://docs.rxresu.me
  description: Reactive Resume Documentation
paths:
  /flags:
    get:
      tags:
        - Feature Flags
      summary: Get feature flags
      description: >-
        Returns the current feature flags for this Reactive Resume instance.
        Feature flags control instance-wide settings such as whether new user
        signups or email-based authentication are disabled. No authentication
        required.
      operationId: getFeatureFlags
      responses:
        '200':
          description: The current feature flags for this instance.
          content:
            application/json:
              schema:
                type: object
                properties:
                  disableSignups:
                    type: boolean
                    description: Whether new user signups are disabled on this instance.
                  disableEmailAuth:
                    type: boolean
                    description: >-
                      Whether email-based authentication is disabled on this
                      instance.
                required:
                  - disableSignups
                  - disableEmailAuth
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key to authenticate requests.

````