活動與共享看板
GET /stats/jobs-activity 公開
每個時期增加與刪除的職缺的公共時間序列。
在一個日期範圍內聚合到所請求的粒度;該系列很密集(缺失週期為 0)。預設值:granularity=day、to=今天、from to 之前的每個粒度視窗。未知的粒度或超過 4000 天的範圍是 400。
查詢參數
granularitystringday、week、month之一(預設day)。範例weekfromstring (YYYY-MM-DD)- 開始日期 (UTC)。默认为
to之前的每粒度窗口。範例2026-01-01 tostring (YYYY-MM-DD)- 結束日期 (UTC)。預設為今天。範例
2026-06-30
curl "https://freehire.me/api/v1/stats/jobs-activity?granularity=week"{
"data": [
{ "period": "2026-06-01", "added": 120, "removed": 40 },
{ "period": "2026-06-08", "added": 98, "removed": 55 }
],
"meta": { "granularity": "week", "from": "2025-06-09", "to": "2026-06-08" }
}