One HTTP Request node. One filter. Push to Slack, HubSpot, Airtable, Google Sheets, or any of the 400+ integrations n8n already speaks. Free at 100 calls/day.
`GET https://fundedapi.com/v1/startups?niche=AI&hiring=true` with a Bearer token. n8n auto-parses JSON. Zero custom code.
Daily morning digest of new funded startups in your #sales channel in under 5 minutes of setup time.
Map API fields to HubSpot company properties. Hiring=true → set lifecycle to 'opportunity'. One-way sync, no conflicts.
Have n8n listen at `https://your-n8n.com/webhook/funded`. We POST HMAC-signed events when new startups match. Zero polling, zero missed rows.
Need 500 rows at once? `GET /v1/startups/export?since=2026-04-01` returns CSV. Airtable, Sheets, BigQuery — all speak CSV natively.
`X-RateLimit-*` on every response — n8n's If node can branch on remaining quota and schedule retries automatically.
POST /v1/search/ai
{ "query": "Seed-stage AI startups in the US hiring, delivered to #sales every morning" }# n8n workflow: Cron → HTTP Request → Slack
# HTTP Request node config:
{
"method": "GET",
"url": "https://fundedapi.com/v1/startups",
"queryParameters": {
"niche": "AI",
"hiring": "true",
"round": "Seed",
"country": "United States",
"since": "{{ $today.minus(1, 'day').toISODate() }}",
"limit": "50"
},
"headerParameters": {
"Authorization": "Bearer {{$env.FUNDED_API_KEY}}"
}
}
# Then → Slack node: post ${{$json.name}} raised ${{$json.fundingAmount}} ◉Not yet — the HTTP Request node handles everything with zero overhead. A first-party n8n community node is on the roadmap. Star the repo to vote it up.
Cron (daily @ 9am) → HTTP Request to /v1/startups with yesterday's `since` → Set node to format → Slack/Email node. 4 nodes, 5 minutes of setup.
Either (a) filter by `since=yesterday` so each run only sees new rows, or (b) use our webhooks — we only fire on `startup.created`, never on updates.
Yes. In the Webhook trigger node, use a Code node right after it to HMAC-verify `X-FundedAPI-Signature` against your secret. Rejects forged payloads. Full code in /recipes/slack.
Free 100/day · Pro 10K/day · Scale 100K/day. If you're fanning out one API call per row, use the CSV export endpoint instead — one HTTP request = up to 5000 rows.
Yes — we export CSV with a stable column order. Map domain → company domain, niches[0] → industry, fundingAmount → annualrevenue. Our /recipes/hubspot has the full mapping.
Self-hosting is available on our Enterprise plan — we ship a containerized FundedAPI deployment into the same VPC as your self-hosted n8n, so the HTTP Request node stays entirely inside your network. Email hello@fundedapi.com for pricing.
Fresh funding rounds + key hiring signals in your inbox every Monday.
Free forever. No card. No tricks.