OPEN API

回首頁 OPEN API
/visitors/search/

服務說明

取得歷年參觀人數統計

輸入參數

limit
integer, 限制最多回傳的資料筆數,上限50筆。

offset
integer, 指定從第幾筆之後開始回傳資料。

sdate
string, 指定回傳的統計開始年度,格式:yyyy。

edate
string, 指定回傳的統計結束年度,格式:yyyy。

輸出內容範例

{
    "status": 200,
    "result": [
        {
            "Serial_No": "1",
            "Year": "2015",
            "Month": "1",
            "TotalVistors": "482236"
        },
        {
            "Serial_No": "2",
            "Year": "2015",
            "Month": "2",
            "TotalVistors": "533567"
        },
        {
            "Serial_No": "3",
            "Year": "2015",
            "Month": "3",
            "TotalVistors": "441972"
        },
        {
            "Serial_No": "4",
            "Year": "2015",
            "Month": "4",
            "TotalVistors": "406013"
        },
        {
            "Serial_No": "5",
            "Year": "2015",
            "Month": "5",
            "TotalVistors": "459271"
        }
    ],
    "error": null
}

輸出欄位說明

Serial_No:清單編號

Year:統計年度

Month:統計月份

TotalVistors:到訪總人數