CV builder & tailoring
GET /me/cvs/{id}/revisions Session only
The edit history of this CV, newest first.
Each entry names what changed and where (paths), not the edit itself — the operations carry your own prior text and stay server-side. undoable is false for an entry with nothing to reverse (e.g. the CV’s own creation); reverted marks an entry already undone rather than removing it from the feed.
Path parameters
idstring (uuid) required- The CV id.
curl "https://freehire.me/api/v1/me/cvs/0f2c…/revisions" -b cookies.txt{
"data": [
{
"id": "b1a2…",
"actor": "agent",
"origin": "tailoring",
"batch_id": "f3c1…",
"title": "Reframed 2 bullets toward Kafka",
"note": "Emphasized event-bus scale to match the requirement",
"paths": ["experience[0].bullets[1]"],
"reverted": false,
"undoable": true,
"created_at": "2026-07-28T20:10:00Z"
}
]
}