Enterprise Plan
The Enterprise plan is designed for high-volume users who need maximum throughput, advanced features, and dedicated support. Everything in the Scale plan is included, plus the features below.
What's included
| Feature | Details | |---|---| | Monthly quota | Unlimited | | Burst rate | 1,000 req/min | | Batch API | Classify up to 100 emails per request | | Company enrichment | Get company name, domain, and industry alongside classification | | Priority support | 4-hour email response time + dedicated Slack channel | | Dedicated account manager | Named point of contact for onboarding and ongoing needs | | Custom SLA | Tailored uptime and latency guarantees |
Batch API
Classify multiple emails in a single request using the batch endpoint. This is more efficient than making individual requests and counts as one request per email in the batch.
Request
POST /v1/classify/batch
Body
{
"emails": [
"[email protected]",
"[email protected]",
"[email protected]"
]
}
Example
curl -X POST "https://emailkind.com/v1/classify/batch" \
-H "Authorization: Bearer sk_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"emails": [
"[email protected]",
"[email protected]",
"[email protected]"
]
}'
Response
{
"success": true,
"request_id": "req_batch_abc123",
"results": [
{
"email": "[email protected]",
"domain": "stripe.com",
"provider": {
"id": "google_workspace",
"name": "Google Workspace",
"type": "business"
},
"classification": {
"is_business": true,
"is_free": false,
"is_disposable": false,
"is_education": false,
"is_custom_domain": true
},
"confidence": 0.98
},
{
"email": "[email protected]",
"domain": "gmail.com",
"provider": {
"id": "gmail",
"name": "Gmail",
"type": "personal"
},
"classification": {
"is_business": false,
"is_free": true,
"is_disposable": false,
"is_education": false,
"is_custom_domain": false
},
"confidence": 0.98
},
{
"email": "[email protected]",
"domain": "mailinator.com",
"provider": {
"id": "mailinator",
"name": "Mailinator",
"type": "disposable"
},
"classification": {
"is_business": false,
"is_free": false,
"is_disposable": true,
"is_education": false,
"is_custom_domain": false
},
"confidence": 0.99
}
]
}
The batch endpoint accepts up to 100 emails per request. Each email in the batch counts as one request toward your quota.
Company enrichment
Add the enrich=true query parameter to any classify request to receive additional company information alongside the standard classification.
Request
curl -H "Authorization: Bearer sk_live_YOUR_KEY" \
"https://emailkind.com/v1/[email protected]&enrich=true"
Response
{
"success": true,
"request_id": "req_abc123",
"email": "[email protected]",
"domain": "stripe.com",
"provider": {
"id": "google_workspace",
"name": "Google Workspace",
"type": "business"
},
"classification": {
"is_business": true,
"is_free": false,
"is_disposable": false,
"is_education": false,
"is_custom_domain": true
},
"company": {
"name": "Stripe",
"domain": "stripe.com",
"industry": "Financial Technology",
"size": "1001-5000",
"country": "US"
},
"mx": [
"smtp.google.com",
"smtp2.google.com"
],
"confidence": 0.98,
"cached": false
}
The company field is only returned when enrich=true is set and the domain belongs to a recognized business. For personal, disposable, or unknown domains, the company field will be null.
Company fields
| Field | Type | Description |
|---|---|---|
| company.name | string | Company legal or trading name |
| company.domain | string | Primary company domain |
| company.industry | string | Industry classification |
| company.size | string | Employee count range (e.g. 1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001+) |
| company.country | string | Two-letter ISO country code |
Enrichment adds latency to requests. Standard requests resolve in under 50ms; enriched requests may take up to 500ms. See the SLA for details.
Pricing
Enterprise pricing is based on your specific needs and usage patterns. Contact our sales team to discuss your requirements and get a custom quote.
Next steps
- Review the Service Level Agreement
- See Rate limits for all plans
- Read the Classify endpoint reference