Re: How do I get related keywords monthly search volume?

2019-03-15 Thread Matic Jurglic
Hey Peter, I'm having an issue where two seemingly similar keyword queries return the same search volume using TargetingIdeaService. The keywords are "erpsim" and "serpsim" - I receive identical search volume and CPC for both of them (880 and 4.91, respectively). This is really misleading

Re: Related keywords

2018-11-08 Thread 'Teja Makani' via AdWords API and Google Ads API Forum
to know more about generating targeting Ideas. Please let me know if you have any further questions. Regards, Sai Teja, AdWords API Team. On Thursday, November 8, 2018 at 6:58:55 AM UTC-5, Neil Patel wrote: > > I am using the AdWords API to get related keywords. But I have found that >

Related keywords

2018-11-08 Thread 'Neil Patel' via AdWords API and Google Ads API Forum
I am using the AdWords API to get related keywords. But I have found that the keywords they are showing aren't so related. Within AdWords there is an option to select, "only show ideas closely related to my search terms". Is there a way to get only related keywords when using t

Re: How do I get related keywords monthly search volume?

2017-02-15 Thread 'Peter Oliquino' via AdWords API Forum
Hi Abe, There is currently no way that I am aware of that you can set the matchType of a keyword as a filter in the TargetingIdeaService or in the AdWords UI (via the Keyword Planner tool). Keyword results can be retrieved or filtered based on their RequestTypes, being IDEAS (to retrieve

How do I get related keywords monthly search volume?

2017-02-15 Thread abe-burnett
s: from googleads import adwords import pandas as pd adwords_client = adwords.AdWordsClient.LoadFromStorage() PAGE_SIZE = 10 # Initialize appropriate service. targeting_idea_service = adwords_client.GetService( 'TargetingIdeaService', version='v201609') # Construct se

Re: Get Related Keywords Via Bulk Job?

2011-06-09 Thread Anash P. Oommen
Hi David, BMJS works only for campaign management tasks, it won't work for TargetingIdeaService and TrafficEstimatorService tasks. Also, v201101 API doesn't guarantee that the seed value be returned. See

Get Related Keywords Via Bulk Job?

2011-06-07 Thread David B
Hello, I am trying to write a nightly script to grab related keywords for newly-generated adgroups. However, I have a couple of questions. 1. Can BMJS be used for related keywords? I have written many scripts, using the BMJS, for campaigns, ads, keywords, etc.. 2. I have tried using

Re: How to query GetRelatedKeywords.php without related keywords in the result?

2011-01-17 Thread Victor
the 93 other related keywords. This is especially important because the API is charging me for all 100 keywords in the result, yet I only need 7 of them- Hide quoted text - - Show quoted text - -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion

Re: How to query GetRelatedKeywords.php without related keywords in the result?

2011-01-17 Thread Victor
list that have 0 search volume, so they were not returned. Therefore, I want to receive only the 7 that HAVE search volume, and I do not need the 93 other related keywords. This is especially important because the API is charging me for all 100 keywords in the result, yet I only need 7

Re: How to query GetRelatedKeywords.php without related keywords in the result?

2011-01-05 Thread v
. How do I get it to return only the 7, the same ones out of the group that I have sent? Obviously, there were 93 out of my list that have 0 search volume, so they were not returned. Therefore, I want to receive only the 7 that HAVE search volume, and I do not need the 93 other related keywords

Re: How to query GetRelatedKeywords.php without related keywords in the result?

2011-01-05 Thread AdWords API Advisor
of the group that I have sent? Obviously, there were 93 out of my list that have 0 search volume, so they were not returned. Therefore, I want to receive only the 7 that HAVE search volume, and I do not need the 93 other related keywords. This is especially important because the API is charging me

How to query GetRelatedKeywords.php without related keywords in the result?

2011-01-03 Thread v
I am using GetRelatedKeywords.php to read search volume and competition estimates for a list of keywords. What I want to do is return only the keywords in the result that are the same as the keywords in my list, but not related keywords. The AdWords Keyword Tool has an option for this, Only show

Re: Related Keywords Display

2010-10-15 Thread AdWords API Advisor
Hi June, The sandbox environment will always return dummy targeting ideas: http://code.google.com/apis/adwords/docs/sandbox.html#behavior To get real data you need to make a request against the production environment. Best, - Eric Koleda, AdWords API Team On Oct 14, 9:39 am, june albert

Related Keywords Display

2010-10-14 Thread june albert
How can i display the real keywords and average searches. the result that i always getting is Keyword with text 'sample keyword 1152841193 0', match type 'BROAD', and average monthly search volume '288102' was found. does anyone know how to display the keywords using the sandbox? thanks in

Re: Get Related Keywords

2010-10-12 Thread AdWords API Advisor
Hi Rakesh, In the sandbox environment the TargetingIdeaService doesn't return real keyword ideas. To get those you will need to use the production environment. Best, - Eric Koleda, AdWords API Tean On Oct 11, 8:00 am, Rakesh Sanghavi rakeshsanghav...@gmail.com wrote: I want the related

Get Related Keywords

2010-10-11 Thread Rakesh Sanghavi
I want the related keywords for the keyword text like e.g.'music' i m trying it using google api php library but i m not getting proper result could you please explain what is sample keyword and red herring what's this.. i m getting the output in the format like ;:: Keyword with text 'sample

Re: Getting related keywords

2010-10-07 Thread AdWords API Advisor
/select/KeywordToolExternal Best, - Eric Koleda, AdWords API Team On Oct 5, 1:48 pm, Dan dby...@gmail.com wrote: I'm trying to get related keywords for a given search term. There seem to be different sources of data, including TargetingIdeaService in the AdWords API. My assumption is that I should

Getting related keywords

2010-10-05 Thread Dan
I'm trying to get related keywords for a given search term. There seem to be different sources of data, including TargetingIdeaService in the AdWords API. My assumption is that I should use getBulkKeywordIdeas : TargetingIdeaSelector : SearchParameter : RelatedToKeywordSearchParameter

Re: Can i Get Estimated Average CPC for all related keywords

2010-08-17 Thread siva
In dot net program i have made some changes in GetRelatedKeywords.cs string keywordText = Keyword; Keyword keyword = new Keyword(); keyword.text = keywordText; keyword.matchTypeSpecified = true; keyword.matchType = KeywordMatchType.BROAD ;

Re: Can i Get Estimated Average CPC for all related keywords

2010-08-17 Thread AdWords API Advisor
Hi, CPC values are not available in the TargetingIdeaService. You'll have to use the v13 TrafficEstimatorService to get that information. Best, - Eric On Aug 17, 8:38 am, siva nsi...@gmail.com wrote: In  dot net program i have made some changes in GetRelatedKeywords.cs       string

Can i Get Estimated Average CPC for all related keywords

2010-08-16 Thread siva
Hi, I am not able to get the Estimated average CPC for all the related keywords. Also When i Search for the keyword 'bseindia' I am not getting 'sensex' as related keyword when i use the API, where as when I see it in the website(adwords.google.com). why

AdWords API Re: API 2009 : Get Related Keywords - BROAD ONLY

2010-03-30 Thread AdWords API Advisor
instructions PHRASE origami paper BROAD origami paper PHRASE origami paper EXACT origami folding PHRASE and I believe this result created by this following code :   // Display related keywords.   if (isset($page-entries)) {     foreach ($page-entries as $targetingIdea

AdWords API API 2009 : Get Related Keywords - BROAD ONLY

2010-03-29 Thread Sawyer
PHRASE origami paper BROAD origami paper PHRASE origami paper EXACT origami folding PHRASE and I believe this result created by this following code : // Display related keywords. if (isset($page-entries)) { foreach ($page-entries as $targetingIdea) { $keyword

AdWords API Re: Related Keywords by choosing language

2010-02-08 Thread AdWords API Advisor
that? :-) On 5 Feb., 12:51, adwo...@seo-news.at adwo...@seo-news.at wrote: Hi there! I'm new to the Adwords API but I'm trying to get related keywords (as well as the monthly search volume) for german language , searches from Austria. I'm using your basic code mixed with snippets found

AdWords API Re: Related Keywords by choosing language

2010-02-06 Thread adwo...@seo-news.at
for one keyword... Would you tell me how to solve that? :-) On 5 Feb., 12:51, adwo...@seo-news.at adwo...@seo-news.at wrote: Hi there! I'm new to the Adwords API but I'm trying to get related keywords (as well as the monthly search volume) for german language , searches from Austria

AdWords API Related Keywords by choosing language

2010-02-05 Thread adwo...@seo-news.at
Hi there! I'm new to the Adwords API but I'm trying to get related keywords (as well as the monthly search volume) for german language , searches from Austria. I'm using your basic code mixed with snippets found at the Adwords API Forum. When I run the code I do only get english results...Do

AdWords API Re: Related Keywords by choosing language

2010-02-05 Thread adwo...@seo-news.at
adwo...@seo-news.at wrote: Hi there! I'm new to the Adwords API but I'm trying to get related keywords (as well as the monthly search volume) for german language , searches from Austria. I'm using your basic code mixed with snippets found at the Adwords API Forum. When I run the code I do

AdWords API Re: Related Keywords by choosing language

2010-02-05 Thread AdWords API Advisor
., 12:51, adwo...@seo-news.at adwo...@seo-news.at wrote: Hi there! I'm new to the Adwords API but I'm trying to get related keywords (as well as the monthly search volume) for german language , searches from Austria. I'm using your basic code mixed with snippets found at the Adwords API