Skip to content

Hiring Signals

Detect which companies are actively hiring based on recent job changes.

GET /api/v1/company/hiring-signals

Returns people who recently joined a company, a strong signal the company is actively hiring and growing.

Query parameters

Parameter Type Required Description
company_id string Yes Numeric company ID
days integer No Lookback window in days (default: 90)
page integer No Page number (default: 1)
per_page integer No Results per page (default: 10, max: 50)

Code examples

cURLbash
curl "https://kooperativa.io/api/v1/company/hiring-signals?company_id=2135371&days=30" \
  -H "Authorization: Bearer ik_live_..."
JavaScriptjs
const res = await fetch(
  "https://kooperativa.io/api/v1/company/hiring-signals?company_id=2135371&days=30",
  { headers: { Authorization: `Bearer ${process.env.KOOPERATIVA_API_KEY}` } }
);
const { results, total } = await res.json();

Response

{
  "company_id": "2135371",
  "window_days": 30,
  "results": [
    {
      "id": "c3d4e5f6-...",
      "full_name": "Alex Johnson",
      "current_title": "Senior Engineer",
      "current_company": "Stripe"
    }
  ],
  "total": 103,
  "page": 1,
  "per_page": 10
}
Navigation

Type to search…

↑↓ navigate↵ selectEsc close