GET /v1/company/:handle/funding
Funding and deal information for a company, cross-referenced with VC follow signals.
Cost: $0.10 per call
curl "https://frontrun.vc/v1/company/stealth_ai_co/funding" \
-H "X-API-Key: your_api_key"Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
handle | string (path) | -- | X username of the company. Required. |
Response
{
"handle": "stealth_ai_co",
"funding": {
"name": "StealthAI",
"amount": "$12M",
"round": "Series A",
"date": "2026-03-15",
"lead_investors": ["a16z"],
"other_investors": ["Sequoia Scout", "SV Angel"]
},
"vc_follow_signal": [
{
"vc_handle": "pmarca",
"followed_at": "2026-02-28",
"days_before_announcement": 15
},
{
"vc_handle": "naval",
"followed_at": "2026-03-01",
"days_before_announcement": 14
}
],
"cost_cents": 15,
"balance_cents": 4800
}| Field | Type | Description |
|---|---|---|
funding | object | Most recent funding round. null if no known funding. |
vc_follow_signal | array | Tracked VCs that followed this company, with timing relative to the funding announcement. |
days_before_announcement | integer | How many days before the public funding announcement the VC follow was detected. Negative means after. |