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

> Industry Mentions documentation for TAMradar API.

### Content Structure

The `content` object for industry mentions contains:

| Field               | Type   | Nullable | Description                                        |
| ------------------- | ------ | -------- | -------------------------------------------------- |
| mention\_content    | string | No       | Content of the post or article                     |
| mention\_url        | string | No       | URL to the original post or article                |
| mention\_channel    | string | No       | Platform or source (e.g., Twitter, LinkedIn, News) |
| mention\_posted\_at | string | Yes      | Best estimated date of the mention (YYYY-MM-DD)    |
| author              | object | Yes      | Information about the author of the mention        |

#### Author Object

| Field           | Type   | Nullable | Description                 |
| --------------- | ------ | -------- | --------------------------- |
| first\_name     | string | No       | Author's first name         |
| last\_name      | string | Yes      | Author's last name          |
| profile\_url    | string | No       | URL to the author's profile |
| title           | string | Yes      | Author's current title      |
| company\_domain | string | Yes      | Author's company domain     |
| company\_name   | string | Yes      | Author's company name       |
| country         | string | Yes      | Author's country            |

### Example

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

```json theme={null}
{
  "update_id": "7f2f1b8e-2c3d-4e91-b6a5-9f0d1a2b3c4d",
  "update_type": "radar_finding",
  "record_id": "3a9b1b0e-8d3a-4f0b-9237-1f2c3d4e5f6a",
  "discovered_at": "2024-03-19T10:15:30Z",
  "data": {
    "radar_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "radar_type": "industry_mentions",
    "keyword": "artificial intelligence",
    "domain": null,
    "next_charge_at": "2024-04-20T12:30:00Z",
    "custom_fields": {
      "priority": "high",
      "campaign": "ai-trends"
    }
  },
  "content": {
    "mention_content": "The latest advances in artificial intelligence are transforming enterprise software, particularly in areas of automation and predictive analytics.",
    "mention_url": "https://www.linkedin.com/posts/joedoe-top-7360626072800903169-s4NE",
    "mention_channel": "LinkedIn",
    "mention_posted_at": "2024-03-18",
    "author": {
      "first_name": "Joe",
      "last_name": "Doe",
      "profile_url": "https://www.linkedin.com/in/joedoe",
      "title": "Director of Sales",
      "company_domain": "abc.com",
      "company_name": "ABC Corporation",
      "country": "United States"
    }
  }
}
```
