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

/api/v1/companies/enrich-bulk-status

0 credit

Track a bulk company-enrichment job. Free to poll. Returns status, counts, a not_found list, and companies keyed to your exact inputs. Page with next_cursor.

Try in Playground

Parameters

NameTypeRequiredDescription
job_idstringyesThe job_id returned by /api/v1/companies/enrich-bulk. (e.g. job_7dh1m4)
afterintegernoResult cursor — start at 0, then pass the response's next_cursor to page.

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/companies/enrich-bulk-status?job_id=job_7dh1m4"

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "errors": null,
  "data": { "status": "completed", "total": 2, "resolved": 2, "errors": 0, "next_cursor": 2, "not_found": [], "companies": { "microsoft": { "id": "org_jb3e59e3q21b8", "name": "Microsoft" } } }
}

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 →