GET /v1/company/:handle/funding
Funding and deal information for a company, cross-referenced with VC follow signals.
Cost: 60 credits per call. If no funding can be resolved, you are not charged.
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",
"name": "StealthAI",
"funding": {
"source": "fundable",
"name": "StealthAI",
"total_funding": "$12.0M",
"num_rounds": 2,
"rounds": [
{
"round": "Series A",
"amount": "$10.0M",
"amount_usd": 10000000,
"date": "2026-03-15",
"description": "Series A to scale enterprise AI workflows",
"investors": 4
},
{
"round": "Seed",
"amount": "$2.0M",
"amount_usd": 2000000,
"date": "2025-06-02",
"description": null,
"investors": 3
}
],
"investors": ["a16z", "SV Angel"],
"lead_investors": ["a16z"],
"founders": ["Jane Doe"],
"founded_on": "2024-11-01",
"crunchbase_url": "https://www.crunchbase.com/organization/stealthai"
},
"vc_follow_signal": ["pmarca", "naval"],
"cost_credits": 60,
"balance_credits": 9540
}| Field | Type | Description |
|---|---|---|
funding | object | Resolved funding profile for the company. |
funding.source | string | Which data source resolved the funding. |
funding.total_funding | string | Total raised across known rounds (e.g. "$12.0M"). null if unknown. |
funding.rounds | array | Known rounds, each with round, amount, amount_usd, date, description, and investors (count). |
funding.lead_investors | string[] | Lead investors, when known. |
funding.founders | string[] | Founder names, when known. |
vc_follow_signal | string[] | Your tracked accounts that follow this company - your own signal on the deal. |
Fields inside funding that the source can't resolve are null or empty arrays.
No funding found
If no funding can be resolved for the handle, the response has found: false and you are not charged:
{
"handle": "stealth_ai_co",
"name": "StealthAI",
"found": false,
"funding": null,
"vc_follow_signal": ["pmarca"],
"cost_credits": 0,
"balance_credits": 9600
}