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

# Get Proxy Status

> Reference for merged 0.6.0 source. The latest verified binary release is 0.5.5; use your Engine’s /api/openapi.json for its installed contract.



## OpenAPI

````yaml /engine/openapi.json get /api/proxy/status
openapi: 3.1.0
info:
  title: nerditd
  version: 0.6.0
  description: >-
    Current source interface (0.6.0); verify your installed Engine version. This
    is not a claim that 0.6.0 is released.
servers:
  - url: http://127.0.0.1:9321
    description: Default local Engine; use your configured endpoint.
security: []
paths:
  /api/proxy/status:
    get:
      tags:
        - Proxy
      summary: Get Proxy Status
      description: >-
        Reference for merged 0.6.0 source. The latest verified binary release is
        0.5.5; use your Engine’s /api/openapi.json for its installed contract.
      operationId: get_proxy_status
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProxyStatusResponse'
          description: HTTP 200 response
components:
  schemas:
    ProxyStatusResponse:
      properties:
        state:
          type: string
          title: State
        enabled:
          type: boolean
          title: Enabled
        available:
          type: boolean
          title: Available
        mode:
          type: string
          title: Mode
        base_domain:
          anyOf:
            - type: string
            - type: 'null'
          title: Base Domain
        hostname:
          type: string
          title: Hostname
        scheme:
          type: string
          title: Scheme
        https_port:
          type: integer
          title: Https Port
        tls:
          additionalProperties: true
          type: object
          title: Tls
        ca:
          additionalProperties: true
          type: object
          title: Ca
        apex:
          additionalProperties: true
          type: object
          title: Apex
        respawn:
          additionalProperties: true
          type: object
          title: Respawn
        routes:
          additionalProperties: true
          type: object
          title: Routes
        mdns:
          additionalProperties: true
          type: object
          title: Mdns
        domains:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Domains
        acme:
          additionalProperties: true
          type: object
          title: Acme
      type: object
      required:
        - state
        - enabled
        - available
        - mode
        - hostname
        - scheme
        - https_port
        - tls
        - ca
        - apex
        - respawn
        - routes
        - mdns
      title: ProxyStatusResponse

````