Hii to all I am stuck here I need a list of all domains which having backlinks of any particular domain. Can anyone help me for this? Please provide me some link or some api procedure to get all the backlink. I had searched on alexa they provided the linksin backlink detail but not have any api request for that. I got a php script to get the rank of any domain it is having the all backlink count of that domain But I need the all the domains name at the same time.
$url="msn.com";
$xml = simplexml_load_file( http://data.alexa.com/data?cli=10&dat=snbamz&url= .$url);
$rank=(int)$xml->SD[1]->POPULARITY->attributes()->TEXT;
$web=(string)$xml->SD[1]->POPULARITY->attributes()->URL;
$backlink=(int)$xml->SD[0]->LINKSIN->attributes()->NUM;
echo $web." has Alexa Rank ".$rank." has backlink: ".$backlink;