Baidu AI Cloud
中国站

百度智能云

CDN Abroad

Query Interface for Forward-to-Origin

Interface

This interface is used to query origin traffic.

Method Path Description
GET /v2/abroad/stat/srcflow Query traffic records

Request parameter

Parameter Optional Type Description
domain Optional String Domain name queried, if not specified, it returns the sum of traffic of all domain names of the user.
endTime Optional Timestamp End value of the time range queried, the default is the current time. The maximum time span between endTime and startTime is 31 days.
startTime Optional Timestamp Start time of the time range queried, the default is 24 hours ahead of the endTime.
period Optional Int Granularity of the query result, in seconds, you can select 60, 300 and 3,600, and the default is 300.

Response parameter

Parameter Type Description
details list<FlowDetails> Data details

Request example

GET /v2/abroad/stat/srcflow?domain=xxx.com&startTime=2019-04-08T09:40:00Z&endTime=2019-04-08T10:00:00Z&period=300 

Response example

{ 
    "status": "ok", 
    "details": [ 
        { 
            "timestamp": "2019-04-08T09:40:00Z" 
        }, 
        { 
            "timestamp": "2019-04-08T09:45:00Z" 
        }, 
        { 
            "timestamp": "2019-04-08T09:50:00Z" 
        }, 
        { 
            "timestamp": "2019-04-08T09:55:00Z" 
        } 
    ] 
}
Previous
Traffic Query Interface
Next
Query Interface for Querying the Byte Hit Rate