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

# Company Social Posts

> Company Social Posts documentation for TAMradar API.

Notifies you when new social media posts are detected from your tracked companies. This radar type helps you monitor company announcements, marketing campaigns, and social media presence.

### Content Structure

The `content` object contains the social media post information:

| Field            | Type   | Required | Description                                                                                                                              |
| ---------------- | ------ | -------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| post\_text       | string | No       | Text content of the social media post. `null` when `post_type` is `Repost` and the company reshared without adding their own commentary. |
| post\_url        | string | Yes      | URL to the original social media post                                                                                                    |
| post\_channel    | string | Yes      | Platform where posted (e.g., Twitter, LinkedIn)                                                                                          |
| post\_posted\_at | string | Yes      | Best estimated date of posting (YYYY-MM-DD)                                                                                              |
| post\_type       | string | Yes      | Type of post (e.g., Post, Repost)                                                                                                        |

### Example

This example includes [base webhook fields](/webhooks/overview) along with social-posts-specific content:

```json theme={null}
{
  "update_id": "41991828-ed31-4bd9-98d2-44b2763f9f35",
  "update_type": "radar_finding",
  "record_id": "b77af154-c369-4446-b70a-f328880c3a48",
  "discovered_at": "2024-03-22T15:30:00Z",
  "data": {
    "radar_id": "c70813b3-7e87-4ca7-90fd-8c64574d911b",
    "radar_type": "company_social_posts",
    "domain": "domain.com",
    "next_charge_at": "2024-04-20T08:00:00Z",
    "custom_fields": {
      "priority": "high",
      "account_id": "0011U00000TFV7MQAX"
    }
  },
  "content": {
    "post_text": "We're excited to announce our new partnership with @TechCorp! Together, we'll be revolutionizing the way companies handle their data analytics. Stay tuned for more updates! #Innovation #Partnership",
    "post_url": "https://twitter.com/domain/status/1234567890",
    "post_channel": "Twitter",
    "post_posted_at": "2024-03-22",
    "post_type": "Post"
  }
}
```
