POST
/v1/verifyVerify a single email address in real-time. Returns comprehensive verification data including deliverability status, domain information, and confidence score.
Credits
1 per request
Response Time
500ms - 3s
Rate Limit
100/min
Request
Headers
| Name | Required | Description |
|---|---|---|
| Authorization | Required | Bearer token with your API key |
| Content-Type | Required | application/json |
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| string | Required | Email address to verify | |
| timeout | integer | Optional | Timeout in seconds (5-60, default: 30) |
Try It
Live APIUse @sandbox.rocketverifier.com emails to test without an API key. Real emails require authentication.
Code Examples
curl -X POST https://api.rocketverifier.com/v1/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"email": "deliverable@sandbox.rocketverifier.com"}'Response
200Success
| Field | Type | Description |
|---|---|---|
| string | The verified email address | |
| status | string | deliverable, undeliverable, risky, or unknown |
| reason | string | Detailed reason code |
| domain | object | Domain information (name, acceptAll, disposable, free) |
| provider | string | Email service provider (e.g., google.com) |
| score | integer | Confidence score (0-100) |
Error Responses
401Unauthorized - Invalid or missing API key
402Payment Required - Insufficient credits
429Too Many Requests - Rate limit exceeded
