도메인 이름을 사용하여 모든 회사의 이메일 검색
전체 이름을 사용하여 전문 이메일 찾기
키워드 및 위치로부터 회사 찾기
유튜브 채널에서 회사 이메일 찾기
트위터 프로필에서 회사 이메일 찾기
비즈니스를 찾아 이메일 주소 추출
회사가 적극적으로 구매하고 있는지 즉시 확인하기 — 채용, 자금 지원, 확장, IPO, 새로운 임원 채용 등
뉴스, 채용 신호 및 회사 활동 스캔 중... ~15초
Minelead는 수천 개의 신뢰할 수 있는 B2B 정보 출처 — 뉴스 출처, 공공 비즈니스 기록, 채용 활동, 회사 신호 — 를 모니터링하여 실시간 구매 의도를 탐지합니다. 구조화된 의도 보고서와 정확한 B2B 요구 사항을 받아보세요.
우리는 세 가지 시간 범위(30일, 90일, 180일)에서 신뢰할 수 있는 다양한 B2B 정보 출처를 지속적으로 모니터링하여 최신 구매 신호를 제공합니다.
자금 라운드 및 임원 채용부터 IPO 준비 및 AI 채용까지 — 각 신호는 분류되고 점수가 매겨져 피치할 내용을 정확히 알 수 있습니다.
모든 카테고리에는 현재 구매할 가능성이 있는 B2B 제품 또는 서비스의 선별된 목록이 제공됩니다 — 아웃바운드 메시지에 사용할 준비가 되어 있습니다.
하나의 GET 요청. 어떤 언어에서도 작동합니다. 몇 분 안에 CRM 또는 아웃리치 도구에 구매 의도 신호를 통합하세요.
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;
}
예제 응답
{
"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
}
}
어떤 잠재 고객에게 전화를 걸지 추측하는 것을 중단하세요. Minelead는 적극적으로 확장, 채용, 자금을 모집하거나 움직임을 보이는 회사를 표출하여 귀하의 연락이 정확히 적절한 순간에 이루어지도록 합니다.
모든 계정을 의도 수준에 따라 점수화하세요 - 핫, 웜 또는 콜드 - 그리고 대표를 이번 분기에 가장 잘 계약될 가능성이 있는 거래로 안내하세요.
각 의도 카테고리는 암시된 공급업체 요구 사항을 포함합니다 - 추가 조사 없이 귀하의 콜드 이메일이나 LinkedIn 메시지를 위한 준비된 토픽입니다.
간단한 REST GET 요청을 통해 Salesforce, HubSpot 또는 실시간으로 라이브 구매 신호로 모든 계정 기록을 보강할 수 있습니다.
신호는 30일, 90일 및 180일 창에 분류되므로 즉각적인 긴급함과 장기적인 전략적 움직임을 구분할 수 있습니다.
채용, 자금 조달, 인수합병, 제품 출시, 새로운 임원 채용, 기술 채택, 시장 확장 등 각 단점에는 피치할 공급업체 요구가 매치됩니다.
Python, Node.js, PHP, Ruby, Go와 함께 작동합니다 - 또는 cURL에서 직접. SDK나 웹훅이 필요 없습니다.
매달 무료 크레딧을 받으세요. 신용카드 필요 없습니다. 몇 분 안에 판매 워크플로우에 실시간 의도 신호를 추가하세요.