# Track verified company hiring signals

**Use case:** 

Daily-ready example that monitors one company, returns a full current snapshot plus lifecycle changes, and verifies official application URLs.

## Input

```json
{
  "companies": [
    "https://www.linkedin.com/company/tiny-spec-inc/"
  ],
  "maxJobsPerCompany": 100,
  "closureConfirmationScans": 2,
  "emitInitialSnapshot": true,
  "emitCurrentSnapshot": true,
  "stateStoreName": "linkedin-hiring-signals-state",
  "stateNamespace": "example-verified-company-signals-v0211",
  "closedJobRetentionDays": 90,
  "maxConcurrency": 1,
  "strictClosureQualityGate": true,
  "verifyApplyLinks": true,
  "strictVerificationQualityGate": true,
  "verifierActorId": "kamerozkan/linkedin-job-apply-link-verifier",
  "maxJobsToVerify": 20,
  "verificationMaxTotalChargeUsd": 0.1,
  "webhookBatchSize": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "eventType": {
    "label": "Event",
    "format": "string"
  },
  "detectedAt": {
    "label": "Detected",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "jobTitle": {
    "label": "Job title",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted",
    "format": "string"
  },
  "jobStatus": {
    "label": "Verified status",
    "format": "string"
  },
  "ghostJobRisk": {
    "label": "Ghost-job risk",
    "format": "string"
  },
  "officialApplyUrl": {
    "label": "Official apply",
    "format": "string"
  },
  "verificationConfidence": {
    "label": "Confidence",
    "format": "number"
  },
  "changedFields": {
    "label": "Changed fields",
    "format": "array"
  },
  "jobUrl": {
    "label": "Job",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Company Jobs Monitor — New, Changed & Closed Roles](https://apify.com/kamerozkan/linkedin-hiring-signals) with a specific input configuration. Visit the [Actor detail page](https://apify.com/kamerozkan/linkedin-hiring-signals) to learn more, explore other use cases, and run it yourself.