curl -X POST https://api.hypestack.com/v1/enrich/company \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filters": {
"domain": "linear.app"
},
"fields": ["industry", "employee_count", "funding_stage"]
}'
{
"company_name": "Linear",
"industry": "Software",
"employee_count": 85,
"funding_stage": "Series B"
}
curl -X POST https://api.hypestack.com/v1/people/search \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filters": {
"job_title": "Head of Engineering",
"location": "San Francisco",
"company_employee_count": { "gte": 100 }
},
"sort_by": "linkedin_followers",
"sort_order": "desc",
"count": 10,
"offset": 0
}'
{
"results": [
{
"name": "Emily Zhao",
"email": "emily@devstack.com",
"company": "DevStack",
"title": "Head of Engineering",
"linkedin_followers": 2300
}
],
"total": 46
}
curl -X POST https://api.hypestack.com/v1/updates/feed \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filters": {
"update_type": "funding",
"tag": "AI",
"date_range": {
"start": "2025-04-01",
"end": "2025-05-01"
}
},
"count": 5
}'
{
"updates": [
{
"company": "ModelForge",
"event": "Series A funding",
"amount": "$12M",
"tag": "AI",
"date": "2025-04-27"
}
]
}
curl -X POST https://api.hypestack.com/v1/signals/company \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filters": {
"domain": "synthlabs.io"
},
"triggers": [
{ "signal": "exec_departure" },
{ "signal": "headcount_drop", "threshold_pct": 10 }
]
}'
{
"alert_id": "alert_12345",
"status": "active",
"company": "SynthLabs"
}
curl -X POST https://api.hypestack.com/v1/predict/job_changes \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filters": {
"industry": "Cybersecurity",
"location": "Remote"
},
"sort_by": "job_change_likelihood",
"sort_order": "desc",
"count": 5
}'
{
"predictions": [
{
"name": "Jules Khan",
"title": "Security Architect",
"company": "SafeLayer",
"job_change_likelihood": 0.82
}
]
}