网站统计

GET https://t.essnn.com/api/statistics/{website_id}
curl --request GET \
--url 'https://t.essnn.com/api/statistics/{website_id}?start_date=2020-01-01&end_date=2021-01-01' \
--header 'Authorization: Bearer {api_key}' \
参数 详细信息 描述
start_date 必需 字符串 Y-m-d格式的开始日期。
end_date 必需 字符串 Y-m-d格式的结束日期。
type 可选 字符串 要返回的数据类型。允许的值为:overviewpathsreferrersreferrer_pathscountriescitiesoperating_systemsdevice_typesbrowser_namesutms_sourceutms_medium_campaignscreen_resolutionsbrowser_languagesgoals。默认为overview
country_code 可选 字符串 仅在cities类型下可用的参数。
utm_source 可选 字符串 仅在utms_medium_campaign类型下可用的参数。
{
    "data": [
        {
          "path": "/dashboard",
          "pageviews": 500,
          "bounces": 10
        },
        {
          "path": "/websites",
          "pageviews": 250,
          "bounces": 0
        },
        {
          "path": "/",
          "pageviews": 200,
          "bounces": 36
        },
        {
          "path": "/register",
          "pageviews": 100,
          "bounces": 25
        },
        {
          "path": "login",
          "pageviews": 50,
          "bounces": 10
        },
    ]
}