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

> Company Reviews documentation for TAMradar API.

Notifies you when new customer reviews are detected for your tracked companies. This radar type helps you monitor customer feedback and sentiment across various review platforms.

### Content Structure

The `content` object contains the review information:

| Field           | Type   | Required | Description                                  |
| --------------- | ------ | -------- | -------------------------------------------- |
| review\_content | string | Yes      | Text content of the review                   |
| review\_url     | string | Yes      | URL to the original review                   |
| review\_source  | string | Yes      | Platform where reviewed (e.g., G2, Capterra) |
| review\_rating  | string | Yes      | Rating as string ("5", "4.5", etc.)          |
| reviewed\_at    | string | Yes      | Best estimated date of review (YYYY-MM-DD)   |

### Example

This example includes [base webhook fields](/webhooks/overview) along with review-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-18T09:15:00Z",
  "data": {
    "radar_id": "c70813b3-7e87-4ca7-90fd-8c64574d911b",
    "radar_type": "company_reviews",
    "domain": "domain.com",
    "next_charge_at": "2024-04-18T09:15:00Z",
    "custom_fields": {
      "priority": "high",
      "account_id": "0011U00000TFV7MQAX"
    }
  },
  "content": {
    "review_content": "Great product with excellent customer support. The onboarding process was smooth and the team was very responsive to our needs. Would highly recommend!",
    "review_url": "https://www.g2.com/products/domain/reviews/123456",
    "review_source": "G2",
    "review_rating": "5",
    "reviewed_at": "2024-03-18"
  }
}
```
