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

# Join the early-access waitlist

> Submit an email address to join the no-tickets early-access waitlist. Emails are normalised (lower-cased + trimmed) before storage.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/waitlist
openapi: 3.1.0
info:
  title: no-tickets API
  version: 0.1.0
  description: REST API for the no-tickets team dashboard.
servers: []
security: []
paths:
  /v1/waitlist:
    post:
      tags:
        - waitlist
      summary: Join the early-access waitlist
      description: >-
        Submit an email address to join the no-tickets early-access waitlist.
        Emails are normalised (lower-cased + trimmed) before storage.
      operationId: joinWaitlist
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              properties:
                email:
                  type: string
              required:
                - email
              additionalProperties: false
      responses:
        '201':
          description: Email accepted
          content:
            application/json:
              schema:
                $schema: https://json-schema.org/draft/2020-12/schema
                type: object
                properties:
                  status:
                    type: string
                    const: ok
                required:
                  - status
                additionalProperties: false
        '400':
          description: Email missing or malformed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Schema1'
        '409':
          description: Email already on the waitlist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Schema1'
      security: []
components:
  schemas:
    Schema1:
      $schema: https://json-schema.org/draft/2020-12/schema
      type: object
      properties:
        error:
          type: string
          enum:
            - email_required
            - invalid_email
            - already_registered
      required:
        - error
      additionalProperties: false

````