CV builder & tailoring
GET /me/cvs/{id}/tracer-links Session only
What is known about this CV's traced links.
One entry per link the PDF carries (header links, project links). Clicks you made on your own CV are excluded from the counts; bot_clicks is tallied separately rather than folded in. distinct_visitors is omitted — not zero — on a deployment with no visitor salt, since there is no honest count to report.
Path parameters
idstring (uuid) required- The CV id.
curl "https://freehire.me/api/v1/me/cvs/0f2c…/tracer-links" -b cookies.txt{
"data": [
{
"source_path": "header.links[0]",
"destination_url": "https://github.com/you",
"traced_url": "https://freehire.me/cv/acme-x7abc",
"clicks": 12,
"bot_clicks": 3,
"distinct_visitors": 9,
"last_click_at": "2026-07-20T10:00:00Z"
}
]
}