Quick Start
Getting Started
Integrate Pyzit's world-class email validation into your application in four simple steps.
1. Create your account#
Free Daily Credits
Instantly get access to our global disposable detection network.
2. Generate an API Token#
Authentication is handled via Bearer Tokens. You can create tokens with specific scopes to limit access for different parts of your application.
- 1Go to your Dashboard
- 2Navigate to the API Tokens section
- 3Click "Create New Token" and select your required scopes
Authentication Header
Authorization: Bearer pzt_live_...
3. Choose your Endpoint#
Pick the API that best fits your needs. Each endpoint requires a specific scope to be enabled on your token.
Required Scopes
simple:tempemail_checkSimple API
detailed:tempemail_checkDetailed API
bulk:tempemail_checkBulk API
4. Make your first request#
You're ready to go! Use this example to test the **Simple Check** endpoint.
Note: Replace YOUR_TOKEN with the API token you generated in Step 2.
Example Request
curl -X POST https://api.temp-mail.pyzit.com/v1/validate/check/ \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"email": "hi@pyzit.com"
}'
Success Response
{
"email": "hi@pyzit.com",
"is_disposable": false,
"status": "clean"
}