v2.0 is now live. See what's new
Stop writing Regex for OTPs in Cypress & Playwright.
The zero-flake API for E2E email testing. Generate dynamic inboxes, automatically extract 6-digit codes, and verify magic links in milliseconds. No IMAP. No Gmail rate limits.
playwright.test.js
// ❌ The Flaky Way (IMAP)
// const mail = await imap.getMail('qa+123@gmail.com');
// const match = mail.text.match(/\b\d{6}\b/);
// ✅ The ZeroFlake Way (REST API)
const response = await fetch('https://api.ZeroFlake.dev/get-message?inbox=test-1@ZeroFlake.dev&api_key=sk_live_123');
const data = await response.json();
await page.locator('#otp-input').fill(data.otp_code);
// Returns instantly: { otp_code: "849201", subject: "Your login code" }⚡ Auto-Extraction
We natively parse HTML and return 6-digit codes as clean JSON. No more writing fragile regular expressions.
🛡️ No Rate Limits
Run 50 parallel CI/CD tests without Google blocking your IP. Designed for high-throughput automated testing.
🤝 Zero Seat Tax
Add your whole QA team. We charge purely by API volume, not per user. No artificial barriers to collaboration.