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

# Poll publish status



## OpenAPI

````yaml /api-reference/openapi.json get /publish/{name}
openapi: 3.1.0
info:
  title: Meradomo Public API
  version: 1.0.0
  description: >-
    Two surfaces: the local management API on 127.0.0.1:8765 (Publish) and the
    OAuth endpoints on account.meradomo.com (Connect). No SDK — these HTTP
    endpoints are the integration surface.
  license:
    name: MIT
servers:
  - url: http://127.0.0.1:8765
    description: Local management API (Publish)
  - url: https://account.meradomo.com
    description: Control plane (Connect / OAuth)
security: []
paths:
  /publish/{name}:
    get:
      tags:
        - Publish
      summary: Poll publish status
      operationId: getPublish
      parameters:
        - name: name
          in: path
          required: true
          schema:
            type: string
          description: The app name used in POST /publish.
      responses:
        '200':
          description: Current status
          content:
            application/json:
              schema:
                oneOf:
                  - $ref: '#/components/schemas/PublishLive'
                  - $ref: '#/components/schemas/PublishPending'
        '404':
          description: Never published or fully revoked
      servers:
        - url: http://127.0.0.1:8765
components:
  schemas:
    PublishLive:
      type: object
      properties:
        status:
          type: string
          enum:
            - live
        host:
          type: string
          example: notes.you.meradomo.com
        url:
          type: string
          example: https://notes.you.meradomo.com
    PublishPending:
      type: object
      properties:
        status:
          type: string
          enum:
            - pending

````