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

q string
Optional full-text query (as in search).Example golang
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/tracking/swipe" -H "Authorization: Bearer $FREEHIRE_API_KEY"
json — response
{
  "data": [ { "public_slug": "...", "title": "Senior Go Engineer", "...": "..." } ],
  "meta": { "total": 137, "limit": 20, "offset": 0 }
}