Unified Alerts
One call, every signal for a company: recent fundings, executive changes, acquisitions, and FundzWatch™ website changes, rolled up over a window you choose — ideal for account monitoring and agent check-ins.
🚀 Quick Start
Everything that happened at a company in the last 90 days:
curl -H "Authorization: YOUR_API_KEY" \
"https://api.fundz.net/unified-alerts?domain=example.com&days_back=90"Endpoint
https://api.fundz.net/unified-alertsAuthentication
Send your key in the Authorization header:
Authorization: YOUR_API_KEYRequires an active paid subscription. Non-subscribers receive 403 with { "error": "subscription_required" }. See Authentication & API Keys.
Common Use Cases
Key-Account Monitoring
Poll your top accounts daily and alert reps when anything material happens — one request per account, one combined answer.
curl -H "Authorization: YOUR_API_KEY" \
"https://api.fundz.net/unified-alerts?domain=acme.com&days_back=7"Agent Briefings
The summary.description field is a ready-made natural-language answer for AI agents: “Detected 1 funding event, 2 executive changes in the past 30 days.”
curl -H "Authorization: YOUR_API_KEY" \
"https://api.fundz.net/unified-alerts?organization_id=25597" | jq '.summary.description'Query Parameters
| Parameter | Type | Description |
|---|---|---|
| domain | string | Company website domain to scope the rollup, e.g. acme.com. Also enables FundzWatch website-change results. |
| organization_id | integer | Fundz organization ID — alternative to domain for scoping. |
| days_back | integer | Rolling look-back window in days. Default 30. |
If neither domain nor organization_id is given, the rollup covers recent events across all companies (up to 100 per category).
Example Response
{
"generated_at": "2026-06-04T00:15:22Z",
"user": {
"email": "you@yourcompany.com",
"subscription_active": true,
"tier": "Strategic"
},
"events": {
"fundings": [
{
"id": 412345,
"organization": "Acme Robotics",
"amount": "$25 Million",
"round": "series b",
"date": "2026-05-21",
"investors": "Index Ventures, Foundry Group"
}
],
"executives": [
{
"id": 99812,
"organization": "Acme Robotics",
"name": "Dana Lee",
"title": "Chief Revenue Officer",
"action": "hired",
"date": "2026-05-28"
}
],
"acquisitions": [],
"website_changes": [
{
"type": "navigation_change",
"summary": "Added new 'Enterprise' product section",
"confidence": 0.95,
"detected_at": "2026-05-30T14:00:00Z"
}
]
},
"summary": {
"total_signals": 3,
"funding_events": 1,
"executive_changes": 1,
"acquisitions": 0,
"website_changes": 1,
"description": "Detected 1 funding event, 1 executive change, 1 website change in the past 90 days"
}
}website_changes is present only when you query by domain.