AI powered service for temporary email and rapid sign-ups.
PhantomSign | Temporary Email & Verification Code Extraction API is a temporary email service designed to create short-lived inboxes (valid for up to 5 minutes) for signup verification and other verification flows. It provides an API to programmatically generate inboxes, poll for verification codes or links, and delete inboxes. The service emphasizes quick access to disposable emails and streamlined extraction of verification content from incoming messages.
All API requests require a valid API key provided in the header as x-api-key.
Rate limit: 20 requests per minute per IP.
Endpoints:
POST /api/generate-inbox — Create a new inbox. Response includes the inbox email.
GET /api/poll-inbox?inbox=[email] — Check the inbox for content. Possible responses:
200 with { "message": "Awaiting email" }
200 with { "code": [Verification code], "company": [Company name] }
200 with { "link": [Verification link], "company": [Company name] }
200 with { "message": "Email lacks content" }
400/404/401/403/Other errors as described in the spec
DELETE /api/delete-inbox?inbox=[email] — Delete the inbox. Returns a confirmation message on success.
Response examples indicate field names like inbox, code, company, and link depending on the data detected in the email.
API key management and error handling are described in the responses section, with standard HTTP status codes.