Hi All, I want to check it a page is in google. means the page is indexed, cached or in any form present in google. Can any one please help me to get this using any free API.
HI just type site:your site URL on google search bar and hit enterif result shows then its there other wise not.
Can't help you dude. We do generally check our indexed page by typing the url of the page on the search box.
Hi, As Icecube media said Just type your website in Google Search Engine or any search engine for confirming your site added or not
I shared you the webmaster guidelines you can check it here http://support.google.com/webmasters/bin/answer.py?hl=en&answer=35769
well you may need some code in php to check indexed pages in google but that requires high level of php .
<?php $url='https://www.google.com/search?q=site%3Awallpapers16.com&ie=utf-8&oe=utf-8&aq=t'; $result = _get($url); echo xt($result,'Results','for <b>site:'); //<div id=resultStats>6 results<nobr> function xt($templ,$bg,$ed){ $bgpos=strpos($templ,$bg); $templ2=str_replace(substr($templ,0,$bgpos),'',$templ); $edpos=$bgpos+strpos($templ2,$ed); $subtempl=substr($templ,$bgpos,($edpos-$bgpos)); $subtempl=str_replace($bg,'',$subtempl); return $subtempl; } function _get($url){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)"); $response = curl_exec($ch); curl_close($ch); //echo $response; return $response; } ?> Code (markup):