获取数据

简要描述:

请求URL:

请求方式:

请求参数:

参数名 必选 类型 说明
access_token string 密钥
starttime string 开始日期,unixtime
endtime string 结束日期,unixtime
domain string 域名,如www.test.com,如需查询多个域名,以逗号,分隔
type string 获取数据类型,支持bandwidth、traffic、request
resulttype int 取值为0:多域名数据做合并;1:每个域名数据分别返回。为1时域名必传

请求示例

curl -i -X POST 'https://api.chuangcache.com/history/getdata' -H "Accept: application/json" -H "Content-Type: application/json; charset=utf-8" -d '{"access_token": "ACCESS_TOKEN", "type":"bandwidth", "starttime":"starttime", "endtime":"endtime"}'

响应示例

 type为traffic:
 {
  "status": 1,
  "info": "操作成功",
  "data": [
    [ "2016-09-11", 535770136]
  ]
}
type为bandwidth:
{
  "status": 1,
  "info": "操作成功",
  "data": [
    [ "1473523200", 120211.33 ],
    [ "1473523500", 51439.57 ],
    [ "1473523800", 3114.72 ],
    ...
  ]
}

返回参数说明

参数名 类型 说明
status int 接口返回码 [ 0(操作失败)、1(操作成功)]
info string 接口返回信息 [ 操作失败 / 操作成功 ]
data array 数据列表,带宽单位为bps,流量单位为byte