IWebmasterApi.GetDeepLinkAlgoUrls
Namespace: Microsoft.Bing.Webmaster.Api
IWebmasterApi.GetDeepLinkAlgoUrls Method
Get algo urls with deep links
Syntax
List<DeepLinkAlgoUrl> GetDeepLinkAlgoUrls(
string siteUrl
)
Parameters
Return Value
List of algo urls which has deep links
Examples
XML request sample
GET /webmaster/api.svc/pox/GetDeepLinkAlgoUrls?siteUrl=http://example.com&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: 272 Content-Type: application/xml; charset=utf-8 <ArrayOfDeepLinkAlgoUrl xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Bing.Webmaster.Api" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <DeepLinkAlgoUrl> <Impressions>124</Impressions> <Url>http://example.com</Url> </DeepLinkAlgoUrl> </ArrayOfDeepLinkAlgoUrl>
JSON request sample
GET /webmaster/api.svc/json/GetDeepLinkAlgoUrls?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: 113
Content-Type: application/json; charset=utf-8
{
"d":[
{
"__type":"DeepLinkAlgoUrl:#Microsoft.Bing.Webmaster.Api",
"Impressions":124,
"Url":"http:\/\/example.com"
}]
}
See Also
Show: