> ## 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 New Companies

> Industry New Companies documentation for TAMradar API.

The Industry New Companies radar tracks newly launched startups and entrepreneurs coming out of stealth mode globally. Unlike company-specific radars, this monitors ALL new company formations and delivers them to your webhook endpoint. You can activate an `industry_new_companies` radar via the industry radar [endpoint](/api-reference/post-radars-industry).

### Content Structure

The `content` object for industry new companies contains:

| Field   | Type   | Required | Description                                  |
| ------- | ------ | -------- | -------------------------------------------- |
| person  | object | Yes      | Information about the founder/entrepreneur   |
| company | object | Yes      | Information about the newly launched company |

#### Person Object

| Field               | Type    | Required | Description                                                |
| ------------------- | ------- | -------- | ---------------------------------------------------------- |
| first\_name         | string  | Yes      | Founder's first name                                       |
| last\_name          | string  | Yes      | Founder's last name                                        |
| about               | string  | No       | Brief description or bio of the founder                    |
| profile\_url        | string  | Yes      | URL to founder's professional profile                      |
| country             | string  | No       | Founder's country                                          |
| ex\_founder         | boolean | Yes      | Whether this person was a founder before                   |
| became\_founder\_at | string  | Yes      | Date when they became founder of this company (YYYY-MM-DD) |
| roles               | array   | Yes      | Array of role objects (current and previous)               |

#### Role Object

| Field           | Type    | Required | Description                      |
| --------------- | ------- | -------- | -------------------------------- |
| title           | string  | Yes      | Job title                        |
| location        | string  | No       | Job location                     |
| company\_name   | string  | No       | Company name                     |
| company\_domain | string  | No       | Company website domain           |
| start\_date     | string  | No       | Role start date (YYYY-MM-DD)     |
| end\_date       | string  | No       | Role end date (YYYY-MM-DD)       |
| is\_current     | boolean | Yes      | Whether this is the current role |
| description     | string  | No       | Role description                 |

#### Company Object

| Field         | Type    | Required | Description                              |
| ------------- | ------- | -------- | ---------------------------------------- |
| name          | string  | Yes      | Company name                             |
| domain        | string  | No       | Company website domain                   |
| profile\_url  | string  | No       | Company social media profile             |
| founded\_at   | number  | No       | Year company was founded                 |
| description   | string  | No       | Company description                      |
| industry      | string  | No       | Industry category                        |
| categories    | array   | No       | Array of business category strings       |
| hq\_country   | string  | No       | Company headquarters country             |
| stealth\_mode | boolean | Yes      | Whether company is still in stealth mode |

### Example

This example includes base webhook fields along with industry-new-companies-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_new_companies",
    "domain": null,
    "next_charge_at": "2025-10-29T14:30:00Z",
    "custom_fields": {
      "client_ref": "ACME-001",
      "region": "north-america"
    }
  },
  "content": {
    "person": {
      "first_name": "Sarah",
      "last_name": "Chen",
      "about": "Former Google ML engineer building the future of autonomous logistics",
      "profile_url": "https://linkedin.com/in/sarahchen",
      "country": "United States",
      "ex_founder": false,
      "became_founder_at": "2025-09-15",
      "roles": [
        {
          "title": "Founder & CEO",
          "location": null,
          "company_name": "LogiFlow AI",
          "company_domain": "logiflow.ai",
          "start_date": "2025-09-15",
          "end_date": null,
          "is_current": true,
          "description": "Building AI-powered autonomous logistics platform"
        },
        {
          "title": "Senior ML Engineer",
          "location": "Mountain View, CA",
          "company_name": "Google",
          "company_domain": "google.com",
          "start_date": "2020-01-01",
          "end_date": "2025-08-31",
          "is_current": false,
          "description": "Led machine learning initiatives for search algorithms"
        }
      ]
    },
    "company": {
      "name": "LogiFlow AI",
      "domain": "logiflow.ai",
      "profile_url": "https://linkedin.com/company/logiflow-ai",
      "founded_at": 2025,
      "description": "AI-powered autonomous logistics platform for last-mile delivery",
      "industry": "Computer Software",
      "categories": ["B2B", "SaaS", "AI/ML"],
      "hq_country": "United States",
      "stealth_mode": false
    }
  }
}
```

## Stealth Mode Behavior

When `stealth_mode: true`, company data is intentionally limited as the startup is hiding details:

**Typically null:**

* `domain` - No public website yet
* `profile_url` - No LinkedIn company page
* `description` - Not revealing business details
* `industry` - Keeping sector secret
* `categories` - Empty array `[]`, no classification

**Still available:**

* `name` - Some company name (may be generic)
* `founded_at` - Incorporation year
* `hq_country` - Legal incorporation location

**Founder data remains complete** since it comes from public professional profiles, not company disclosure.
