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

# Join the Workspaces waitlist

> Adds an email address to the Workspaces waitlist. You will be contacted when Workspaces launches.



## OpenAPI

````yaml /openapi.json post /api/waitlist
openapi: 3.1.0
info:
  title: ZeroDrop API
  version: 1.0.0
  description: >-
    Disposable email inboxes for CI pipelines. No signup. No Docker. No SMTP
    config.


    Base URL: `https://zerodrop.dev`


    The ZeroDrop API is a REST API that allows you to fetch emails from
    disposable inboxes. Inboxes are generated client-side — no API call needed
    to create one. Emails are stored for 30 minutes then automatically deleted.


    For most use cases, use the [zerodrop-client
    SDK](https://npmjs.com/package/zerodrop-client) which handles polling, SSE,
    and OTP extraction automatically.
  contact:
    email: support@zerodrop.dev
    url: https://zerodrop.dev/contact
  license:
    name: MIT
    url: https://github.com/zerodrop-dev/zerodrop-sdk/blob/master/LICENSE
servers:
  - url: https://zerodrop.dev
    description: Production
security: []
tags:
  - name: Inbox
    description: Fetch and stream emails from disposable inboxes.
  - name: Waitlist
    description: Join the Workspaces waitlist.
paths:
  /api/waitlist:
    post:
      tags:
        - Waitlist
      summary: Join the Workspaces waitlist
      description: >-
        Adds an email address to the Workspaces waitlist. You will be contacted
        when Workspaces launches.
      operationId: joinWaitlist
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - email
              properties:
                email:
                  type: string
                  format: email
                  example: developer@yourcompany.com
      responses:
        '200':
          description: Successfully added to waitlist
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true

````