> ## 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.

# Industry Funding Rounds

> Industry Funding Rounds documentation for TAMradar API.

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_rounds`radar via the industry radar [endpoint](/api-reference/post-radars-industry).

### Content Structure

The `content` object for industry funding rounds contains:

| Field         | Type   | Required | Nullable | Description                                 |
| ------------- | ------ | -------- | -------- | ------------------------------------------- |
| amount\_usd   | number | Yes      | No       | Funding amount in USD                       |
| announced\_at | string | Yes      | No       | Date announced (YYYY-MM-DD format)          |
| round         | string | Yes      | No       | Funding round type (see Round Types below)  |
| company       | object | Yes      | No       | Information about the company raising funds |
| references    | array  | Yes      | No       | Source URLs for the funding announcement    |

#### Company Object

| Field        | Type   | Required | Nullable | Description                  |
| ------------ | ------ | -------- | -------- | ---------------------------- |
| name         | string | Yes      | No       | Company name                 |
| domain       | string | Yes      | No       | Company website domain       |
| profile\_url | string | No       | Yes      | Company social media profile |
| hq\_country  | string | No       | Yes      | Company 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.

```json theme={null}
{
  "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"
    ]
  }
}
```
