IWebmasterApi.GetQueryTrafficStats
Namespace: Microsoft.Bing.Webmaster.Api
IWebmasterApi.GetQueryTrafficStats Method
Get detailed traffic statistics for top queries
Syntax
List<RankAndTrafficStats> GetQueryTrafficStats( string siteUrl, string query )
Parameters
Return Value
Traffic stats for specified query.
Remarks
The data will be updated every day. Only top-queries will be saved and returned by this method.
Examples
XML request sample
GET /webmaster/api.svc/pox/GetQueryTrafficStats?siteUrl=http://example.com&query=query1&apikey=EEDECC1EA4AE341CC57365E075EBC8B6 HTTP/1.1 Content-Type: application/xml; charset=utf-8 Host: ssl.bing.com
XML response sample
HTTP/1.1 200 OK Content-Length: 316 Content-Type: application/xml; charset=utf-8 <ArrayOfRankAndTrafficStats xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Bing.Webmaster.Api" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <RankAndTrafficStats> <Clicks>15</Clicks> <Date>2011-09-16T00:00:00-07:00</Date> <Impressions>100</Impressions> </RankAndTrafficStats> </ArrayOfRankAndTrafficStats>
JSON request sample
GET /webmaster/api.svc/json/GetQueryTrafficStats?siteUrl=http://example.com&query=%22query1%22&apikey=EEDECC1EA4AE341CC57365E075EBC8B6 HTTP/1.1 Content-Type: application/json; charset=utf-8 Host: ssl.bing.com
JSON response sample
HTTP/1.1 200 OK
Content-Length: 138
Content-Type: application/json; charset=utf-8
{
"d":[
{
"__type":"RankAndTrafficStats:#Microsoft.Bing.Webmaster.Api",
"Clicks":15,
"Date":"\/Date(1316156400000-0700)\/",
"Impressions":100
}]
}
See Also
Show: