The Fundup AI API
Build with our database of companies, funding events, and market intelligence.
Built for fresh signals, not bulk archives. Poll the API for newly funded companies as they happen. Access is capped at 500 records (50 per request), so it's for tracking what's new, not exporting the full history. For one-off bulk pulls, use Discover export in the dashboard.
Company Data
Detailed company profiles, funding history, key contacts, and market positioning.
Funding Events
Funding rounds, investment amounts, investor information, and market trends.
Advanced Search
Powerful filtering and search across companies, industries, and funding data.
Recommended: pair the API with webhooks
The API works best as a webhook + endpoint combination. A webhook notifies you the moment a company raises funding (no polling, no scanning) and you call the API on demand only for the companies that matter (contacts, full profile). Used this way you stay comfortably within rate limits, and it's the setup we recommend for tracking fresh signals. Read the webhooks guide →
Quick example
A single call to retrieve recently funded companies.
curl -X GET "https://fundup.ai/api/v1/companies?funding_date_start=2025-01-01&funding_date_end=2025-12-31&limit=5&countries[]=US" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"data": [
{
"id": "comp_123",
"companyName": "Example Corp",
"description": "AI-powered solution",
"country": "United States",
"industry": "Financial Services",
"stage": "Series A",
"fundingAmount": 5000000,
"fundingAmountFormatted": "$5M"
}
],
"pagination": { "limit": 5, "offset": 0, "total": 1, "has_more": false }
}
Available endpoints
/health
GET
/companies
GET
/companies/{company_id}
GET
/companies/{company_id}/tech-stack
GET
/companies/{company_id}/fundings
GET
/companies/{company_id}/contacts
GET
/companies/{company_id}/open-roles
GET
/companies/{company_id}/highlights
GET
/companies/{company_id}/news
GET
/fundings
GET
/filters
GET
/stats