Jobs
GET /agent/jobs/search Public
Search with full descriptions, for programmatic/agent consumers.
Same query and filters as /jobs/search, but each result carries the description in full (verbatim from the database) instead of the truncated index preview. Use description_format to choose how it is rendered.
Query parameters
qstring- Full-text query over title, company, and description.Example
golang description_formatstring- One of
html(default, verbatim),text(tags stripped),markdown(HTML converted to Markdown). Unknown values fall back tohtml.Examplemarkdown sortstring- One of
created_at,posted_at,salary_min,salary_max. Omit for relevance/newest.Exampleposted_at orderstringascordesc(defaultdesc).Exampledesclimitinteger- Page size, 1–100.Example
20 offsetinteger- Rows to skip;
offset + limit≤ 10000.Example0
Plus every filter in Filtering jobs.
curl "https://freehire.me/api/v1/agent/jobs/search?q=golang&work_mode=remote&description_format=markdown"{
"data": [ { "public_slug": "...", "title": "Senior Go Engineer", "description": "## About the role\n...", "...": "..." } ],
"meta": { "total": 137, "limit": 20, "offset": 0 }
}