Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tamradar.com/llms.txt

Use this file to discover all available pages before exploring further.

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

Company Object

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

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
  • Series F
  • Series G
  • Bridge
  • Bridge Financing
  • Debt Financing
  • Growth Financing
  • Unknown
  • Crowdfunding
  • Initial Public Offering
  • Initial Coin Offering
  • Private Equity

Example

This example includes base webhook fields along with industry-funding-rounds-specific content.
{
  "update_id": "123e4567-e89b-12d3-a456-426614174000",
  "update_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"
    ]
  }
}