IWebmasterApi.GetRankAndTrafficStats
Namespace: Microsoft.Bing.Webmaster.Api
IWebmasterApi.GetRankAndTrafficStats Method
Get traffic statistics
Syntax
List<RankAndTrafficStats> GetRankAndTrafficStats(
string siteUrl
)
Parameters
Return Value
List of site's impressions and clicks for for the last 6 months.
Remarks
The data will be updated every day.
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/GetRankAndTrafficStats?siteUrl=http://example.com&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: