# Qonoro Job Change Detection

> Qonoro Job Change Detection is a paid API for AI agents from api.qonoro.ai, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Detects recent job changes, new roles, and career moves for a named person at a given company, returning structured signals with source URLs and confidence scores.

## Facts

- Endpoint: POST https://api.qonoro.ai/v1/job-changes/detect
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/qonoro-job-change-detection-35f09906
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__8MzwjHlQoip1DRpNGL5o

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability qonoro-job-change-detection-35f09906 -d '<json body>'
```

Example prompt: Has Sarah Chen from Acme Corp recently changed jobs or moved to a new role? I need the source links and a confidence score.

## When to prefer this

Choose this endpoint when you need to detect job change events for a specific named individual at a known company, especially for sales triggers, CRM hygiene, or prospect monitoring. Prefer it over general person enrichment when the specific goal is career-move detection with sourced evidence and confidence scoring rather than full profile enrichment.

## Known failure modes

- Person not found in data sources — returns empty or low-confidence signals
- Ambiguous name match — may return signals for wrong individual if name is common
- No recent job change detected — returns empty signal set even if one occurred but isn't indexed
- Company name mismatch — incorrect or abbreviated company name may fail to resolve
- Rate or quota limit exceeded — returns error if call budget exhausted
- Stale data — signals may lag actual job change by days or weeks depending on source freshness

## How this service works

Given a person name and company, detect recent job changes, new roles, and career moves. Returns structured signals with source URLs and confidence scoring.

## Output

Returns structured signals indicating detected job changes for the specified person, including the new role or company, career move type, source URLs validating the change, and a confidence score for each signal.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "depth": {
   "enum": [
    "standard",
    "deep"
   ],
   "type": "string",
   "default": "standard"
  },
  "person_name": {
   "type": "string",
   "description": "Full name of the person to track."
  },
  "buyer_region": {
   "enum": [
    "PR",
    "outside_PR",
    "unknown"
   ],
   "type": "string",
   "description": "Optional privacy-safe buyer region for operational reporting."
  },
  "person_title": {
   "type": "string",
   "description": "Last known job title. Improves search accuracy."
  },
  "current_company": {
   "type": "string",
   "description": "Company you know this person from."
  },
  "person_linkedin_url": {
   "type": "string",
   "description": "LinkedIn profile URL. Helps disambiguate common names."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/qonoro-job-change-detection-35f09906/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.qonoro.ai](https://www.zero.xyz/host/api.qonoro.ai/llms.txt)
