Daily AI Leads
Your account's AI-scored daily leads — the same leads Fundz generates for you in-app each morning, matched to your Ideal Customer Profile and scored for buyer intent, with verified contacts and a recommended next action. Pull them into your CRM, sequencer, or agent.
🚀 Quick Start
Fetch today's leads for your account:
curl -H "Authorization: YOUR_API_KEY" \
"https://api.fundz.net/daily-leads"Endpoints
https://api.fundz.net/daily-leadshttps://api.fundz.net/daily-leads/:organization_idAuthentication
Send your key in the Authorization header:
Authorization: YOUR_API_KEYRequires an active paid subscription. Leads are personalized — they come from the daily AI lead scoring already running for your account, so set up your Ideal Customer Profile in-app first (Account → Targeting). See Authentication & API Keys.
Common Use Cases
CRM Sync Every Morning
Cron a daily pull and upsert leads (with contacts and the recommended action) into HubSpot or Salesforce before your team logs in.
curl -H "Authorization: YOUR_API_KEY" \
"https://api.fundz.net/daily-leads" | jq '.leads[] | {name, score, action}'Drill Into One Lead
The list response is intentionally compact. Fetch the full object — complete insight, all events, every contact — for the lead you're acting on.
curl -H "Authorization: YOUR_API_KEY" \
"https://api.fundz.net/daily-leads/146195"Query Parameters
| Parameter | Type | Description |
|---|---|---|
| mode | string | Which day's list to return. Default: today. |
| include_deleted | boolean | Include leads you dismissed in-app. Default: false. |
Example Response
{
"leads": [
{
"id": 146195,
"name": "SideChannel",
"score": 92,
"stage": "Series A",
"location": "Boston, MA",
"industry": "Cybersecurity",
"employees": 45,
"insight": "Strong product-market-fit signals with recent key hires and an active funding round...",
"event": "Just hired VP of Sales; raised $8M Series A two weeks ago",
"action": "Reach out to the new VP of Sales while the team is scaling its stack",
"website": "sidechannel.com",
"contacts": [
{ "name": "Jane Doe", "title": "VP of Sales", "email": "jane@sidechannel.com" },
{ "name": "John Smith", "title": "CEO", "email": "john@sidechannel.com" }
]
}
],
"total": 10,
"mode": "today",
"tier": "Strategic",
"message": "Showing all 10 leads. Use /daily-leads/{id} to get full details for a specific lead."
}Lead values above are illustrative — your response contains companies matched to your ICP. leads is empty until daily AI lead scoring has run for your account.