1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

tools for finding search volume of a keyword

Discussion in 'Keywords' started by crownjewel, Jun 25, 2009.

  1. #1
    hi, how does the keywords tool generate estimated monthly search volume for a keyword? does it gather data from all major search engines? I noticed Hubspot's data is very different from google's keyword tool:
    whois generates local search volume of 673,000 and global search volume of 2,240,000 whereas Hubspot says 439,667, is Hubspot's number a guess?

    thanks
     
    crownjewel, Jun 25, 2009 IP
  2. myndconsulting

    myndconsulting Peon

    Messages:
    60
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    myndconsulting, Jun 25, 2009 IP
  3. rv12may

    rv12may Peon

    Messages:
    292
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    rv12may, Jun 29, 2009 IP
  4. jimbozs2000

    jimbozs2000 Peon

    Messages:
    48
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    One tool I use too see how my site ranks is FREE SEO Keyword Tracking!


    To view your Keyword Rankings, please login to: www.rockinseo.com

    it lets you know right where your site stands
     
    jimbozs2000, Jun 29, 2009 IP
  5. uttampegu

    uttampegu Peon

    Messages:
    63
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    uttampegu, Jun 29, 2009 IP
  6. manofasia

    manofasia Peon

    Messages:
    130
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    manofasia, Jul 3, 2009 IP
  7. vinothrvr

    vinothrvr Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Hi,
    This link https://adwords.google.com/select/KeywordToolExternal have data's like Local search volumes & Global Search volumes. I want to give a keyword and should get these two values from adwords using Python code.Below is the example of table which i need to automate with code,

    Keywords | Local (UK) Search Volume: July | Global Monthly Search Volume
    same day loans | 33100 | 40500
    quick loan | 18100 | 74000
    instant cash loans | 9900 | 12100

    Does anyone know how to do this or anyone have any code for this.

    Thanks & Regards,
    vinothrvr
    Reply With Quote
     
    vinothrvr, Sep 29, 2009 IP
  8. Liza New

    Liza New Peon

    Messages:
    627
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Hi crownjewel
    always analyze about keyword than step forward to create content for your web. google search is maximum search of world so sign up for google adwords and check each word to select.
     
    Liza New, Oct 2, 2009 IP
  9. akuchey

    akuchey Peon

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    i think there is a bit different method google use to get search keyword volume.it always differ result with many other tools.Try use free trial market samurai to see the different..
     
    akuchey, Oct 14, 2009 IP
  10. codysnider

    codysnider Guest

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    This is my parser for Google Adowrds Keyword Suggest using the CSV export. I don't have time to pretty it up right now. Also, if you use Wordze, I have a script on my blog to pull popularity straight from their API (codingwithcody.com)

    
    import csv
    
    def parseAdwordsCSV(self, fileString):
    csvReader = csv.reader(str(fileString).splitlines(), delimiter=',')
    		i=0
    		for row in csvReader:
    			if i >= 1:
    				try:
    					entDB.update('keyword', where="id=" + str(self.getKeywordId([B]row[0][/B])), popularity=str([B]row[3][/B]))
    				except:
    					pass
    			i+=1
    
    Code (markup):
     
    codysnider, Nov 16, 2009 IP
  11. djromanof

    djromanof Member

    Messages:
    199
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    33
    #11
    I see no reason why anyone would use any other tool for keyword research than google keyword tool. I think that it is the most accurate one, its free and it gives you all the information you will ever need.
     
    djromanof, Nov 24, 2009 IP
  12. Maqbool

    Maqbool Banned

    Messages:
    75
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #12
    The Google Adwords Keyword Tool is free whereas the Wordtracker remains paid and this is not the only difference.
     
    Maqbool, Nov 24, 2009 IP
  13. zgerm

    zgerm Peon

    Messages:
    584
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #13
    if you can afford to buy a good keyword software then you can go for it, but it is good enough using free keyword tool like google and wordtracker.
     
    zgerm, Nov 24, 2009 IP
  14. neelamets

    neelamets Peon

    Messages:
    123
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #14
    thanks for the post.
     
    neelamets, Dec 8, 2009 IP
  15. NightWriter

    NightWriter Peon

    Messages:
    42
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #15
    I like spacky.com
     
    NightWriter, Dec 8, 2009 IP
  16. watson00

    watson00 Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #16
    For checking keywords search volume you can take the following tools-- google adwords tool, wordtracker, and keyworddiscovery.

    Thanks
     
    watson00, Dec 9, 2009 IP
  17. daniellindsay

    daniellindsay Peon

    Messages:
    24
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #17
    Thanks for that.
     
    daniellindsay, Dec 17, 2009 IP
  18. sgooey

    sgooey Peon

    Messages:
    473
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #18
    Ok, it seems there is a real need for someone to come up with a site
    that is an aggregate of all those stats. anyone?
     
    sgooey, Dec 17, 2009 IP
  19. danjensen

    danjensen Peon

    Messages:
    64
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #19
    I use google keywords tool, it gives you a good basic understanding of where the volume is for keywords
     
    danjensen, Dec 18, 2009 IP
  20. intellg

    intellg Well-Known Member

    Messages:
    397
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    130
    #20
    I always recommended google keyword suggestion tool. They fetch keyword from all over the web.
     
    intellg, Dec 19, 2009 IP