Thống kê liên kết
GET https://qrcodemonkey.net/api/statistics/{link_id}
Tham số | Chi tiết | Mô tả |
---|---|---|
start_date | Yêu cầu | Ngày bắt đầu trong định dạng Y-m-d . |
end_date | Yêu cầu | Ngày kết thúc trong định dạng Y-m-d |
type | Tùy chọn | Loại dữ liệu sẽ được trả về. Giá trị được phép là: overview , referrer_host , referrer_path , country_code , city_name , os_name , browser_name , device_type , browser_language , utm_source , utm_medium , utm_campaign . Mặc định là overview . |
country_code | Tùy chọn | Tham số chỉ có sẵn cho loại tên_thành_phố |
utm_source | Tùy chọn | Tham số chỉ có sẵn cho loại utm_medium và utm_campaign . |
utm_medium | Tùy chọn | Tham số chỉ có sẵn cho loại utm_campaign |
curl --request GET \
--url 'https://qrcodemonkey.net/api/statistics/{link_id}?start_date=2020-01-01&end_date=2021-01-01' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qrcodemonkey.net/api/statistics/{link_id}?start_date=2020-01-01&end_date=2021-01-01' \
--header 'Authorization: Bearer {api_key}' \
{
"data": [
{
"pageviews": 20,
"visitors": 5,
"formatted_date": "2021-01"
},
{
"pageviews": 35,
"visitors": 10,
"formatted_date": "2021-02"
},
{
"pageviews": 50,
"visitors": 25,
"formatted_date": "2021-03"
}
]
}