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

# Get Feature Flags

> Get feature flags enabled for the authenticated user.



## OpenAPI

````yaml GET /api/v1/feature-flags
openapi: 3.1.0
info:
  title: Rigbox Public API
  description: >-
    Gateway-owned public API for Rigbox. The gateway composes its local
    lifecycle API with service-owned exported specs.
  contact:
    name: Rigbox
    url: https://rigbox.dev
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.rigbox.dev
    description: Production gateway
security: []
tags:
  - name: Workspaces
  - name: CLI
  - name: Observability
  - name: Auth
  - name: API Keys
  - name: Access Control
  - name: Apps
  - name: App Catalog
  - name: Logs
  - name: AI
  - name: Tools
  - name: Snapshots
  - name: SSH Keys
  - name: Templates
  - name: Setup Scripts
  - name: Service Specs
  - name: Deploy
  - name: Community
  - name: User Settings
  - name: Roadmap
  - name: System
paths:
  /api/v1/feature-flags:
    get:
      tags:
        - System
      summary: Get feature flags resolved for the calling user.
      description: Get the set of feature flags enabled for the calling user.
      operationId: get_feature_flags
      responses:
        '200':
          description: Feature flags for the calling user
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeatureFlagsResponse'
      security:
        - bearer: []
components:
  schemas:
    FeatureFlagsResponse:
      type: object
      required:
        - flags
      properties:
        flags:
          type: object
          description: Map of feature flag names to their resolved boolean values.
          additionalProperties:
            type: boolean
          propertyNames:
            type: string
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````