How To Find What Keywords A Webpage Ranks For

Tim1505

Registered Member
Joined
Feb 27, 2011
Messages
66
Reaction score
31
I?m not sure if this is possible but is there a way to find out what keywords a webpage is ranking for on google?


I?m not talking about keywords that are in the title tag, but long tail keywords from a 2000 word article.


Surely there is a tool that can tell me which keywords are on the first page of google.
 
Dunno.

Write yourself a little scrapper to do things something like this:

/*

$words = array($article);

foreach ($optimized_keywords as $kw) {
for($i = 0; $i < count($words); $i++) {
$rank = scrape_serp("$kw $words[$i]");
if($rank < 10) {
print "$kw $word\n";
}
}
}

*/

Optimize the code and rewrite it do to for 3/4/5 word phrases.
Use proxies, because you'll do a lot of scraping...

I really doesn't get the point how can we benefit to known a long tail keyword we rank for... but hope this help ya.
 
try semrush, you will only get a few kws with the free version
 
Back
Top