Search emails for any company using a domain name
Find professional emails using full names
Find companies from keywords and locations
Find company emails from YouTube channels
Find company emails from Twitter profiles
Find businesses and extract their email addresses
Verify email quality and deliverability
Detect temporary and throwaway emails
Access all Minelead features in your browser
Connect with CRM platforms and tools
Find emails from any domain via API
Verify email deliverability via API
Enrich leads with job title, location and more
Detect real-time B2B buying signals
Detect fake sign-ups via API
Integrate Minelead into your applications
Instantly discover if a company is actively buying — hiring, funding, expansion, IPO, new exec hires and more
Scanning news, hiring signals, and company activity... ~15 seconds
Minelead monitors thousands of trusted B2B intelligence sources — news publications, public business records, hiring activity, and company signals — to detect real-time buying intent. Get a structured intent report and the exact B2B needs to pitch.
We continuously monitor a broad set of trusted B2B intelligence sources across three time windows (30d, 90d, 180d) to surface the freshest buying signals.
From funding rounds and executive hires to IPO preparation and AI hiring — each signal is classified and scored so you know exactly what to pitch.
Every category comes with a curated list of B2B products or services the company is likely to buy right now — ready to use in your outbound message.
One GET request. Works in any language. Integrate buying intent signals directly into your CRM or outreach tool in minutes.
curl "https://api.minelead.io/v1/buying-intent/?key=YOUR_API_KEY&company=Stripe&domain=stripe.com"
const res = await fetch(
'https://api.minelead.io/v1/buying-intent/' +
'?key=YOUR_API_KEY&company=Stripe&domain=stripe.com'
);
const data = await res.json();
if (data.status === 'success') {
console.log('Intent level:', data.intent_level); // "hot" | "warm" | "cold" | "none"
console.log('Intent score:', data.intent_score);
console.log('Summary:', data.summary);
data.intent_categories.forEach(cat => {
console.log(cat.category, '→ sell:', cat.needs);
});
}
import requests
resp = requests.get(
'https://api.minelead.io/v1/buying-intent/',
params={
'key': 'YOUR_API_KEY',
'company': 'Stripe',
'domain': 'stripe.com',
}
)
data = resp.json()
if data['status'] == 'success':
print('Level :', data['intent_level']) # hot / warm / cold / none
print('Score :', data['intent_score'])
for cat in data.get('intent_categories', []):
print(cat['category'], '->', cat.get('needs', []))
$url = 'https://api.minelead.io/v1/buying-intent/?' . http_build_query([
'key' => 'YOUR_API_KEY',
'company' => 'Stripe',
'domain' => 'stripe.com',
]);
$data = json_decode(file_get_contents($url), true);
if ($data['status'] === 'success') {
echo 'Intent level: ' . $data['intent_level'] . PHP_EOL;
echo 'Score: ' . $data['intent_score'] . PHP_EOL;
}
Example Response
{
"status": "success",
"company": "Stripe",
"domain": "stripe.com",
"intent_level": "hot",
"intent_score": 8.5,
"time_sensitivity": "immediate",
"confidence": "high",
"summary": "Stripe is aggressively hiring engineers and sales talent...",
"recommended_pitch_angle": "Lead with infrastructure scalability and compliance tooling...",
"intent_categories": [
{
"category": "hiring_engineering",
"weight": "high",
"period": "30_days",
"signals": [{"text": "Posted 14 senior backend roles on LinkedIn", "url": "..."}],
"needs": ["Cloud infrastructure", "Developer tools", "CI/CD platforms"]
}
],
"data_coverage": {
"news_results_found": true,
"site_results_found": true,
"linkedin_jobs_found": true
}
}
Stop guessing which prospects to call. Minelead surfaces companies that are actively expanding, hiring, raising funding, or making moves — so your outreach hits at exactly the right moment.
Score every account by intent level — hot, warm, or cold — and route reps to the deals most likely to close this quarter.
Each intent category includes implied vendor needs — ready-made talking points for your cold email or LinkedIn message without extra research.
A simple REST GET request means you can enrich any account record in Salesforce, HubSpot, or any CRM with live buying signals in real time.
Signals are classified across 30, 90, and 180-day windows so you can distinguish immediate urgency from longer-term strategic moves.
Hiring, funding, M&A, product launch, new exec hires, technology adoption, market expansion and more — each with matched vendor needs to pitch.
Works with Python, Node.js, PHP, Ruby, Go — or directly from cURL. No SDKs or webhooks required.
Get free credits every month. No credit card required. Add real-time intent signals to your sales workflow in minutes.