Quick Start
Make your first validation request in minutes.
Create an account, copy your API key, and send one clean request to any Apitty validation endpoint.
1. Create an account
Use the free tier to test endpoint behavior before wiring Apitty into production forms or jobs.
New Account2. Add your API key
Authenticate each request with a bearer token. Keep keys server-side and rotate them when needed.
3. Validate data
Send email, phone, domain, payment, document, and developer data through one API surface.
First request
Start with email verification, then switch the endpoint and payload for other validators.
curl https://api.apitty.com/email/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email":"hello@apitty.com"}'
Recommended production setup
- Call Apitty from your backend, not directly from browser JavaScript.
- Log validation decisions with request IDs so support can trace edge cases.
- Handle temporary upstream failures with retries and a clear fallback path.