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
curl "https://kooperativa.io/api/v1/company/hiring-signals?company_id=2135371&days=30" \
-H "Authorization: Bearer ik_live_..."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
}