Jobs

GET /jobs/{slug}/similar Public

Jobs similar to the given one (semantic; may be empty).

Backed by the optional semantic index. Returns an empty list (not an error) when the source job is not indexed.

Path parameters

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

Query parameters

limit integer
Max similar jobs.Example 10
curl
curl "https://freehire.dev/api/v1/jobs/senior-go-engineer-acme-1a2b/similar?limit=10"
json — response
{ "data": [ { "public_slug": "...", "title": "...", "...": "..." } ] }