API Reference
GET /v1/company/:handle/funding

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

ParameterTypeDefaultDescription
handlestring (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
}
FieldTypeDescription
fundingobjectMost recent funding round. null if no known funding.
vc_follow_signalarrayTracked VCs that followed this company, with timing relative to the funding announcement.
days_before_announcementintegerHow many days before the public funding announcement the VC follow was detected. Negative means after.