API Reference
Welcome to the Plutyx API. Access 50M+ contacts, verify emails, enrich data, and automate prospecting.
Authentication
All requests require an API key in the X-API-Key header.
curl https://plutyx.com/email-finder?domain=company.com&first_name=John \ -H "X-API-Key: rmr_YOUR_KEY_HERE"
Get your key in: Dashboard → API Keys
Email Finder
Find a professional email for a person at a specific domain.
Parameters
Example
GET /email-finder?domain=company.com&first_name=John&last_name=Smith
Response
{
"email": "john.smith@company.com",
"confidence": 87,
"smtp_valid": true,
"sources": ["website", "pattern_match"],
"pattern": "{first}.{last}@{domain}"
}
Domain Search
Find all professional emails associated with a domain.
Parameters
Response
{
"domain": "company.com",
"company": "Company Inc.",
"emails": [
{"email": "contact@company.com", "name": "John Smith", "position": "CEO"},
{"email": "sales@company.com", "name": "Mary Santos", "position": "Sales"}
],
"pattern": "{first}@{domain}",
"total": 8
}
Email Verifier
Verify email deliverability via DNS + SMTP.
Parameters
Response
{
"email": "john@company.com",
"smtp_verified": true,
"status": "deliverable",
"code": 250,
"mx_found": true
}
Bulk Operations
Verify multiple emails at once (max 100 per request).
Body (JSON)
{"emails": ["a@company.com", "b@company.com", ...]}
Response
{
"results": [
{"email": "a@company.com", "status": "deliverable"},
{"email": "b@company.com", "status": "undeliverable"}
],
"total": 2,
"valid": 1
}
Generate Leads
Generate qualified B2B leads by niche and location. Our AI scans 15+ sources in parallel.
Parameters
Example
GET /generate-leads?niche=law+firms&location=Chicago,+IL&limit=50 X-API-Key: rmr_your_key
Response
{
"leads": [
{
"name": "Smith & Associates",
"email": "contact@smithlaw.com",
"phone": "+1 312-555-0199",
"website": "smithlaw.com",
"address": "200 W Madison St, Chicago, IL",
"rating": 4.7,
"confidence": 85,
"tech_stack": ["WordPress", "Google Analytics"],
"source": "google_maps"
}
],
"total": 50,
"cache_hit": false
}
Maps Search
Search companies on Google Maps by category and location.
Parameters
Crawler
Crawl a site and extract emails, phones, social profiles, and contact points.
Parameters
Company Enrichment
Enrich a company with founding year, sector, size, tech stack, and social profiles.
Parameters
Intent Signals
Detect buying intent signals such as open roles, recent news, funding, and expansion.
Parameters
Org Chart
Generate an org chart with roles and decision-maker contacts.
Parameters
LinkedIn Finder
Find the public LinkedIn profile of a person or company.
Parameters
Lists
List all of your lead lists.
Create a new list.
Body (JSON)
{"name": "Chicago Clinics", "description": "November campaign"}
Email Sequences
List all of your email sequences.
Return open and click metrics for the sequence.
Response
{
"total_enrolled": 120,
"opens": 48,
"clicks": 12,
"open_rate": 40.0,
"click_rate": 10.0,
"recent_events": [...]
}
CRM Export
Export the latest results as a HubSpot import CSV.
Export in Pipedrive format.
Export in Salesforce Leads format.