> ## 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 Job Openings

> Company Job Openings documentation for TAMradar API.

Notifies you when new job postings are detected from your tracked companies. This radar type helps you monitor hiring trends and growth indicators.

### Content Structure

The `content` object contains the job posting information:

| Field            | Type   | Required | Nullable | Description                                                         |
| ---------------- | ------ | -------- | -------- | ------------------------------------------------------------------- |
| job\_title       | string | Yes      | No       | Title of the job posting                                            |
| job\_url         | string | Yes      | No       | URL to the original job posting                                     |
| job\_posted\_at  | string | Yes      | Yes      | Best estimated posting date (YYYY-MM-DD)                            |
| job\_description | string | Yes      | Yes      | Full or partial job description                                     |
| job\_source      | string | Yes      | No       | Source of the job posting (e.g., LinkedIn, Company Website)         |
| country          | string | Yes      | Yes      | Country where the job is located (extracted from job location data) |

### Example

This example includes [base webhook fields](/webhooks/overview) along with job-opening-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-20T14:30:00Z",
  "data": {
    "radar_id": "c70813b3-7e87-4ca7-90fd-8c64574d911b",
    "radar_type": "company_job_openings",
    "domain": "domain.com",
    "next_charge_at": "2024-04-20T14:30:00Z",
    "custom_fields": {
      "priority": "high",
      "account_id": "0011U00000TFV7MQAX"
    }
  },
  "content": {
    "job_title": "Senior Software Engineer",
    "job_url": "https://www.linkedin.com/jobs/view/123456789",
    "job_posted_at": "2024-03-20",
    "job_description": "We are seeking a Senior Software Engineer to join our growing team. The ideal candidate will have strong experience in distributed systems and cloud architecture...",
    "job_source": "LinkedIn",
    "country": "United Kingdom"
  }
}
```
