職缺
GET /agent/jobs/search 公開
搜尋程序化/代理消費者的完整描述。
與 /jobs/search 相同的查詢和篩選器,但每個結果都包含完整的 description(來自資料庫的逐字紀錄),而不是截斷的索引預覽。使用 description_format 選擇渲染方式。
查詢參數
qstring- 對標題、公司和描述的全文查詢。範例
golang description_formatstringhtml(默認,逐字)、text(剝離標籤)、markdown(HTML 轉換為 Markdown)之一。未知值回退到html。範例markdownsortstringcreated_at、posted_at、salary_min、salary_max之一。省略相關性/最新內容。範例posted_atorderstringasc或desc(預設desc)。範例desclimitinteger- 頁面大小,1–100。範例
20 offsetinteger- 要跳過的行;
offset + limit≤ 10000。範例0
另外支援 篩選職缺.
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 }
}