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

# Display a hosted signup form

> Returns the hosted signup form as HTML.



## OpenAPI

````yaml /openapi.json get /forms/{publicId}
openapi: 3.0.0
info:
  title: JetEmail API
  version: 1.0.0
  description: API documentation for JetEmail's transactional email service.
servers:
  - url: https://api.jetemail.com
    description: Production
security:
  - apiKeyAuth: []
tags:
  - name: Email
    description: Send transactional email
  - name: Outbound
    description: 'Outbound sending: keys, SMTP users, domains, logs, suppression'
  - name: Inbound
    description: Inbound routing, domains and forward destinations
  - name: DMARC
    description: DMARC aggregate-report domain setup, DNS verification and analytics
  - name: Marketing
    description: >-
      Marketing suite: templates, audiences, contacts, broadcasts, themes,
      assets and signup forms
  - name: Signup Forms
    description: Hosted signup pages and form submissions
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /forms/{publicId}:
    parameters:
      - name: publicId
        in: path
        required: true
        schema:
          type: string
          pattern: ^form_[A-Za-z0-9_-]{20,64}$
        example: form_oCiNpdGJPDhgV4kFa6t1jeoF
    get:
      tags:
        - Signup Forms
      summary: Display a hosted signup form
      description: Returns the hosted signup form as HTML.
      parameters:
        - name: success
          in: query
          required: false
          schema:
            type: string
            enum:
              - '1'
              - pending
          description: Render a submitted or pending-confirmation state.
      responses:
        '200':
          description: Hosted form HTML
          content:
            text/html:
              schema:
                type: string
        '404':
          description: Form does not exist or is paused
          content:
            text/html:
              schema:
                type: string
        '503':
          description: Form service unavailable
          content:
            text/html:
              schema:
                type: string
      security: []
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````