Job interactions

GET /me/tracking/analyses Session or API key

Jobs you have run the AI fit analysis on.

Newest first, closed jobs included (with closed: true). Each item carries the overall score and verdict; stale marks an analysis whose CV, job, or model has changed since. meta.credits reports your AI-points balance. Never runs the LLM.

curl
curl "https://freehire.dev/api/v1/me/tracking/analyses" -H "Authorization: Bearer $FREEHIRE_API_KEY"
json — response
{
  "data": [
    {
      "slug": "senior-go-engineer-acme-1a2b",
      "title": "Senior Go Engineer",
      "company": "Acme",
      "closed": false,
      "overall_score": 82,
      "verdict": "Strong Fit",
      "analysed_at": "2026-07-11T10:00:00Z",
      "stale": false
    }
  ],
  "meta": { "credits": { "remaining": 17, "resets_at": "2026-08-01T00:00:00Z" } }
}