IWebmasterApi.GetRankAndTrafficStats(String) Method

Definition

Get traffic statistics

public:
 System::Collections::Generic::List<Microsoft::Bing::Webmaster::Api::Interfaces::RankAndTrafficStats ^> ^ GetRankAndTrafficStats(System::String ^ siteUrl);
[System.ServiceModel.FaultContract(typeof(Microsoft.Bing.Webmaster.Api.Interfaces.ApiFault))]
[System.ServiceModel.OperationContract]
[System.ServiceModel.Web.WebGet(BodyStyle=System.ServiceModel.Web.WebMessageBodyStyle.WrappedRequest)]
public System.Collections.Generic.List<Microsoft.Bing.Webmaster.Api.Interfaces.RankAndTrafficStats> GetRankAndTrafficStats (string siteUrl);
abstract member GetRankAndTrafficStats : string -> System.Collections.Generic.List<Microsoft.Bing.Webmaster.Api.Interfaces.RankAndTrafficStats>
Public Function GetRankAndTrafficStats (siteUrl As String) As List(Of RankAndTrafficStats)

Parameters

siteUrl
String

Returns

Attributes

Examples

XML request sample

GET /webmaster/api.svc/pox/GetQueryTrafficStats?siteUrl=http://example.com&query=query1&apikey=sampleapikeyedecc1ea4ae341cc8b6 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=sampleapikeyedecc1ea4ae341cc8b6 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
}]
}

Remarks

The data will be updated every day.
The traffic data includes Impressions and Clicks from all verticals i.e. Web, Chat, News, Images, Videos and Knowledge Panel from March 24th, 2023 onwards.

Applies to