Google PageRank API - v2 - Verified Working on 4/11/2011
URL:
How to use?
Replace 'google.com' with your own domain.
How's it work?
Pass a website url in 'url=sitehere.com'
returns value 0-10.
You can use this to integrate into your website or php applications.
PHP
When Google updates, so will I.
Enjoy.
URL:
Code:
http://safelinks4.me/getpr.php?url=google.com
How to use?
Replace 'google.com' with your own domain.
How's it work?
Pass a website url in 'url=sitehere.com'
returns value 0-10.
You can use this to integrate into your website or php applications.
PHP
Code:
<?php
$site = 'google.com';
$getpagerank = file_get_contents("http://safelinks4.me/getpr.php?url=$site");
echo $getpagerank;
?>
When Google updates, so will I.
Enjoy.