Job interactions
GET /me/tracking/swipe Session or API key
A batch of open jobs for the swipe triage deck.
Runs the same query as search (same facets, q, and sort), then excludes the jobs you have already saved or dismissed. 503 when search is unavailable.
Query parameters
qstring- Optional full-text query (as in search).Example
golang limitinteger- Page size, 1–100.Example
20 offsetinteger- Rows to skip;
offset + limit≤ 10000.Example0
curl "https://freehire.dev/api/v1/me/tracking/swipe" -H "Authorization: Bearer $FREEHIRE_API_KEY"{
"data": [ { "public_slug": "...", "title": "Senior Go Engineer", "...": "..." } ],
"meta": { "total": 137, "limit": 20, "offset": 0 }
}