Activity & shared boards

POST /me/searches/{id}/share Session only

Publish one of your saved searches as a public board.

Mints (or keeps) the board slug and sets the optional author label. Owner-scoped; a missing/non-owned id is a 404. Returns the saved search, now carrying public_slug.

Path parameters

id integer required
The saved-search id.Example 2

Body

author_label string
Label shown on the board; blank/omitted renders it anonymously.Example Jane D.
curl
curl -X POST "https://freehire.dev/api/v1/me/searches/2/share" \
  -H 'Content-Type: application/json' -b cookies.txt \
  -d '{"author_label":"Jane D."}'
json — response
{ "data": { "id": 2, "name": "Senior Go remote", "query": "q=go&seniority=senior&work_mode=remote", "public_slug": "senior-go-remote-3f9a", "author_label": "Jane D." } }