Jobs

GET /jobs/{slug}/copies Public

Other open postings in the same role cluster (per-city duplicates).

The per-city openings folded under one canonical card by content-dedup — each keeps its own location and apply_url so a seeker picks their city. The anchor job itself is included. meta.total is the whole cluster size, so it stays accurate when the list is a capped page.

Path parameters

slug string required
The job public_slug.Example senior-go-engineer-acme-1a2b

Query parameters

limit integer
Page size, 1–200 (default 50).Example 50
offset integer
Rows to skip.Example 0
curl
curl "https://freehire.dev/api/v1/jobs/senior-go-engineer-acme-1a2b/copies"
json — response
{
  "data": [
    {
      "public_slug": "senior-go-engineer-acme-1a2b",
      "location": "Berlin, Germany",
      "apply_url": "https://boards.greenhouse.io/acme/jobs/123",
      "posted_at": "2026-06-18T00:00:00Z"
    }
  ],
  "meta": { "total": 4 }
}