API Reference

Industry - Funding Rounds

Industry Funding Rounds

The Industry Funding Rounds radar tracks venture capital and private equity investments globally. Unlike company-specific radars, this monitors ALL funding activity and delivers it to your webhook endpoint. You can activate a industry_funding_roundsradar via the industry radar endpoint .


Content Structure

The content object for industry funding rounds contains:

FieldTypeRequiredNullableDescription
amount_usdnumberYesNoFunding amount in USD
announced_atstringYesNoDate announced (YYYY-MM-DD format)
roundstringYesNoFunding round type (see Round Types below)
companyobjectYesNoInformation about the company raising funds
referencesarrayYesNoSource URLs for the funding announcement. Typically limited to two references

Company Object

FieldTypeRequiredNullableDescription
namestringYesNoCompany name
domainstringYesNoCompany website domain
profile_urlstringNoYesCompany social media profile
hq_countrystringNoYesCompany headquarters country

Example

This example includes base webhook fields along with industry-funding-rounds-specific content.

{
  "event_id": "123e4567-e89b-12d3-a456-426614174000",
  "event_type": "radar_finding",
  "record_id": "456e7890-e89b-12d3-a456-426614174001",
  "discovered_at": "2025-09-29T14:30:00Z",
  "data": {
    "radar_id": "789e0123-e89b-12d3-a456-426614174002",
    "radar_type": "industry_funding_rounds",
    "domain": null,
    "next_charge_at": "2025-10-29T14:30:00Z",
    "custom_fields": {
      "client_ref": "ACME-001",
      "region": "north-america"
    }
  },
  "content": {
    "amount_usd": 50000000,
    "announced_at": "2025-09-28",
    "round": "Series B",
    "company": {
      "name": "TechStartup Inc",
      "domain": "techstartup.com",
      "profile_url": "https://linkedin.com/company/techstartup-inc",
      "hq_country": "United States"
    },
    "references": [
      "https://techcrunch.com/2025/09/28/techstartup-raises-50m-series-b",
      "https://venturebeat.com/2025/09/28/techstartup-funding"
    ]
  }
}

Round Types

The round field can contain one of the following values:

  • Pre-seed
  • Seed
  • Series A
  • Series B
  • Series C
  • Series D
  • Series E
  • Bridge
  • Bridge Financing
  • Debt Financing
  • Growth Financing
  • Unknown
  • Crowdfunding
  • Initial Public Offering
  • Private Equity