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

# Get generated OpenAPI document

> Returns the static OpenAPI JSON generated during build.



## OpenAPI

````yaml https://api.contracting.kukkingu.software/api/v1/docs.json get /api/v1/docs.json
openapi: 3.1.0
info:
  title: Contracting Backend API
  version: 0.1.0
  description: API documentation for the Contracting backend service.
servers:
  - url: https://api.contracting.kukkingu.software
    description: API server
security:
  - bearerAuth: []
paths:
  /api/v1/docs.json:
    get:
      tags:
        - Docs
      summary: Get generated OpenAPI document
      description: Returns the static OpenAPI JSON generated during build.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  openapi:
                    type: string
                  info:
                    type: object
                    properties:
                      title:
                        type: string
                      version:
                        type: string
                    required:
                      - title
                      - version
                    additionalProperties: {}
                  paths:
                    type: object
                    propertyNames:
                      type: string
                    additionalProperties: {}
                  components:
                    type: object
                    propertyNames:
                      type: string
                    additionalProperties: {}
                required:
                  - openapi
                  - info
                  - paths
                additionalProperties: {}
                description: OpenAPI document
                examples:
                  - openapi: 3.1.0
                    info:
                      title: Contracting Backend API
                      version: 0.1.0
                    components: {}
                    paths: {}
                    servers:
                      - url: https://api.example.com
                        description: API server
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    default: NotFound
                    description: Machine-readable error code.
                    example: NotFound
                    type: string
                  message:
                    default: Not Found
                    description: Human-readable error message.
                    example: Not Found
                    type: string
                required:
                  - error
                  - message
                additionalProperties: false
                description: Error response when the requested resource does not exist.
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````