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

# Get auth metadata (e.g. signup disabled)



## OpenAPI

````yaml api-reference/openapi.json get /api/auth/meta
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/auth/meta:
    get:
      tags:
        - Auth
      summary: Get auth metadata (e.g. signup disabled)
      operationId: AuthController_meta
      parameters: []
      responses:
        '200':
          description: Auth metadata for the login/signup page.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthMetaResponseDto'
components:
  schemas:
    AuthMetaResponseDto:
      type: object
      properties:
        signupDisabled:
          type: boolean
          description: Whether signup is disabled
      required:
        - signupDisabled

````