Now out of stealth: the missing link between AI agents and LinkedIn data.
Search
GET

/api/v1/search/job-changes

10 credits

Recent professional job-change events — people who joined, left, or changed titles at organizations. Page-paginated. Built for trigger-based prospecting and territory monitoring.

Try in Playground

Parameters

NameTypeRequiredDescription
event_typestringnoFilter by event. Accepted values: joined, left, title_change.
organization_idsstringnoComma-separated stable org_ ids to watch. Get them from /api/v1/companies/universal-name-to-id (read data.id). (e.g. org_jb3e59e3q21b8)
titlestringnoPartial job-title filter (min 3 chars).
geo_citystringnoCity filter (min 3 chars).
geo_country_codestringnoISO country code filter, e.g. us.
days_agointegernoRecency window in days (1-365). Omit for no window.
pageintegernoPage number (>=1, default 1).
limitintegernoResults per page, 1-50 (default 20).

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/search/job-changes?organization_ids=org_jb3e59e3q21b8"

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "errors": null,
  "data": [
    { "event_type": "joined", "person": { "id": "prsn_7meo9q4v5sr2i", "handle": "kevinisrael", "first_name": "Kevin", "last_name": "Israel", "headline": "Technology Leadership | AI Agents" }, "organization": { "id": "org_jb3e59e3q21b8", "name": "Microsoft", "slug": "microsoft" }, "title": "Principal Engineer", "changed_at": "2026-07-01" }
  ],
  "pagination": { "page": 1, "limit": 20, "has_more": true }
}

Successful responses are wrapped in the standard envelope. The data field carries the actual payload; errors is null on success.

Want to try this endpoint?

300 free credits on signup, no card required. That covers 30 calls.

Get an API key →