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

# Get bug report config

> Return bug report feature flags and upload constraints.



## OpenAPI

````yaml GET /v1/bug-report/config
openapi: 3.1.0
info:
  title: Magica REST API
  version: 1.0.0
  description: >-
    REST API for managing Magica resources. Authenticate public endpoints with
    your Magica API key: Authorization: Bearer gx_xxx.
servers:
  - url: https://api.magica.com/api
security:
  - bearerAuth: []
paths:
  /v1/bug-report/config:
    get:
      tags:
        - Public REST
      summary: GET /api/v1/bug-report/config
      responses:
        '403':
          description: Forbidden
        '502':
          description: Response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````