AI analysis

GET /me/recommendations Session or API key

Open jobs ranked by semantic similarity to your CV.

Ranks jobs by your persisted CV embedding, constrained by the same facet filter params as search. Degrades to a successful empty list (never an error) when you have no usable CV vector or the semantic index is off.

Query parameters

limit integer
Page size, 1–100.Example 20
offset integer
Rows to skip; offset + limit ≤ 10000.Example 0
curl
curl "https://freehire.dev/api/v1/me/recommendations" -H "Authorization: Bearer $FREEHIRE_API_KEY"
json — response
{
  "data": [ { "public_slug": "...", "title": "...", "...": "..." } ],
  "meta": { "total": 40, "limit": 20, "offset": 0 }
}