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

# Contact Social Posts

> Contact Social Posts documentation for TAMradar API.

Notifies you when new social media posts are published BY specific contacts (individuals) you're tracking. This radar type helps you monitor personal communication and updates from key contacts at target companies or industry professionals.

**Key difference**: This radar tracks posts authored BY your contacts, while company social radars track posts ABOUT companies.

### Content Structure

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

| Field            | Type   | Nullable | Description                                         |
| ---------------- | ------ | -------- | --------------------------------------------------- |
| post\_text       | string | No       | Text content of the social media post               |
| post\_url        | string | No       | URL to the original social media post               |
| post\_channel    | string | No       | Platform where posted (e.g., "LinkedIn", "Twitter") |
| post\_posted\_at | string | No       | Best estimated date of posting (YYYY-MM-DD)         |
| post\_type       | string | No       | Type of post (e.g., Post, Repost)                   |
| author           | object | No       | Information about the contact who posted            |

#### Author Object

| Field           | Type   | Nullable | Description                                                                  |
| --------------- | ------ | -------- | ---------------------------------------------------------------------------- |
| first\_name     | string | No       | First name of the contact (may be the full profile name from some platforms) |
| last\_name      | string | Yes      | Last name of the contact (can be null if platform provides only full name)   |
| profile\_url    | string | No       | URL to the contact's professional profile                                    |
| title           | string | Yes      | Current job title (can be null if unavailable on certain platforms)          |
| company\_name   | string | Yes      | Name of the company where the contact works                                  |
| company\_domain | string | Yes      | Domain of the company where the contact works                                |
| country         | string | Yes      | Country of the contact (can be null if location unavailable)                 |

### Example

This example includes [base webhook fields](/webhooks/overview) along with contact-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-21T09:45:00Z",
  "data": {
    "radar_id": "c70813b3-7e87-4ca7-90fd-8c64574d911b",
    "radar_type": "contact_social_posts",
    "domain": "stripe.com",
    "next_charge_at": "2024-04-20T11:20:00Z",
    "custom_fields": {
      "priority": "high",
      "account_id": "0011U00000TFV7MQAX"
    },
    "profile_url": "https://www.linkedin.com/in/sarahjohnson/"
  },
  "content": {
    "post_text": "Just wrapped up an amazing quarter! Our team's dedication to innovation continues to drive incredible results. Excited to share what we're building next. #TeamWork #Innovation #Growth",
    "post_url": "https://www.linkedin.com/feed/update/activity:1234567890123456789/",
    "post_channel": "LinkedIn",
    "post_posted_at": "2024-03-21",
    "post_type": "Post",
    "author": {
      "first_name": "Sarah",
      "last_name": "Johnson",
      "profile_url": "https://www.linkedin.com/in/sarahjohnson/",
      "title": "VP of Engineering",
      "company_name": "Stripe",
      "company_domain": "stripe.com",
      "country": "United States"
    }
  }
}
```
