The Industry New Companies radar tracks newly launched companies 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.
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.
{
"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_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
}
}
} {
"event_id": "789e1234-e89b-12d3-a456-426614174003",
"event_type": "radar_finding",
"record_id": "345e6789-e89b-12d3-a456-426614174004",
"discovered_at": "2025-11-18T08:15:00Z",
"data": {
"radar_id": "456e7890-e89b-12d3-a456-426614174005",
"radar_type": "industry_new_companies",
"domain": null,
"next_charge_at": "2025-12-18T08:15:00Z",
"custom_fields": {
"priority": "high",
"segment": "ai-startups"
}
},
"content": {
"person": {
"first_name": "Marcus",
"last_name": "Rodriguez",
"about": "Former Tesla Autopilot lead building next-generation autonomous systems",
"profile_url": "https://linkedin.com/in/marcusrodriguez",
"country": "United States",
"ex_founder": true,
"became_founder_at": "2025-10-01",
"roles": [
{
"title": "Co-Founder & CTO",
"location": null,
"company_name": "Stealth",
"company_domain": null,
"start_date": "2025-10-01",
"end_date": null,
"is_current": true,
"description": "Building stealth-mode AI infrastructure platform"
},
{
"title": "Senior Staff Engineer, Autopilot",
"location": "Palo Alto, CA",
"company_name": "Tesla",
"company_domain": "tesla.com",
"start_date": "2021-03-01",
"end_date": "2025-09-30",
"is_current": false,
"description": "Led neural network optimization for FSD Beta"
}
]
},
"company": {
"name": "Stealth",
"domain": null,
"profile_url": null,
"founded_at": 2025,
"description": null,
"industry": null,
"categories": [],
"hq_country": "United States",
"stealth_mode": true
}
}
}Stealth Mode Behavior
When stealth_mode: true, company data is intentionally limited as the company is hiding details:
Typically null:
domain- No public website yetprofile_url- No LinkedIn company pagedescription- Not revealing business detailsindustry- Keeping sector secretcategories- Empty array[], no classification
Still available:
name- Some company name (may be generic)founded_at- Incorporation yearhq_country- Legal incorporation location
Founder data remains complete since it comes from public professional profiles, not company disclosure.