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

# Get form metadata

> Returns the full form definition (HTML, JSON schema, CSS) for a given form. Called by the form embed before rendering a form to a respondent. No authentication required.




## OpenAPI

````yaml openapi-forms GET /public/form_data/{form_id}
openapi: 3.0.0
info:
  title: Paubox Forms API
  description: >
    Public endpoints for embedding and submitting Paubox Forms. No API key
    required — these endpoints are called by form respondents, not by
    authenticated API consumers.
  version: 1.0.0
servers:
  - url: https://apx.paubox.com/forms
    description: Paubox Forms API
security: []
tags:
  - name: Forms
    description: Retrieve form definitions and accept submissions
paths:
  /public/form_data/{form_id}:
    get:
      tags:
        - Forms
      summary: Get form metadata
      description: >
        Returns the full form definition (HTML, JSON schema, CSS) for a given
        form. Called by the form embed before rendering a form to a respondent.
        No authentication required.
      operationId: getPublicForm
      parameters:
        - name: form_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: UUID of the form to retrieve
      responses:
        '200':
          description: Form found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Form'
              examples:
                example:
                  summary: Example response
                  value:
                    id: 550e8400-e29b-41d4-a716-446655440000
                    title: Patient Intake Form
                    description: Please complete before your appointment.
                    form_json: {}
                    form_html: <form>...</form>
                    form_css: 'form { font-family: sans-serif; }'
                    active: true
                    customer_id: 123
                    signable: false
                    submission_count: 42
                    created_at: '2024-01-15T10:30:00Z'
                    updated_at: '2024-06-01T08:00:00Z'
        '404':
          description: Form not found
components:
  schemas:
    Form:
      type: object
      properties:
        id:
          type: string
          format: uuid
        title:
          type: string
        description:
          type: string
          nullable: true
        form_html:
          type: string
          nullable: true
        form_json:
          type: object
          nullable: true
        form_css:
          type: string
          nullable: true
        vanity_url:
          type: string
          nullable: true
        version:
          type: integer
        active:
          type: boolean
        customer_id:
          type: integer
        signable:
          type: boolean
        signature_confirmation_label:
          type: string
          nullable: true
        submission_count:
          type: integer
        type:
          type: string
          nullable: true
        deleted:
          type: boolean
        archived:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time

````