Test the coupon system and security features
For Testing Purposes Only - Not Connected to Production
Test the entire coupon lifecycle: Issue → Reveal → Validate → Redeem
Consumer claims a coupon from creator's page
Consumer reveals their unique coupon code
Merchant's server checks if code is valid (server-to-server)
Merchant redeems code after purchase (server-to-server)
Simulates a consumer visiting a creator's landing page and claiming a coupon.
Marks the token as "revealed" (adds friction for abuse detection). The token itself IS the coupon.
Note: Merchant operations require a valid API key. This is a server-to-server endpoint - in production, these calls should only be made from your backend, never from client-side code.
Check if a coupon token is valid (without redeeming it). Server-to-server call.
Mark a coupon as used and calculate fees (one-time operation).
Test API rate limiting by sending multiple requests rapidly.
View the browser fingerprint that would be collected.
Test Cross-Origin Resource Sharing configuration.
Test how the API handles malicious input.
Test the login flow including 2FA.
Check current session status.
Test password strength requirements.
No requests yet...