Keyword Planner API - getting just U.S historical stats

2023-02-22 Thread Maciek eF
Hi dear members,
I have problem with keyword planner API.
I set polish language and Poland as geo target in 
create_keyword_plan_campaign, but I get just stats from USA (for example 
program do faktur shows in API just 10 approximate monthly searches, but in 
UI keywordplanner I can see around 6,600 monthly searches. What have I done 
wrongly?

Thanks for your help in advance.

def create_keyword_plan_campaign(client, customer_id, keyword_plan):
"""Adds a keyword plan campaign to the given keyword plan.
Args:
client: An initialized instance of GoogleAdsClient
customer_id: A str of the customer_id to use in requests.
keyword_plan: A str of the keyword plan resource_name this keyword 
plan
campaign should be attributed to.create_keyword_plan.
Returns:
A str of the resource_name for the newly created keyword plan 
campaign.
Raises:
GoogleAdsException: If an error is returned from the API.
"""
keyword_plan_campaign_service = client.get_service(
"KeywordPlanCampaignService"
)
operation = client.get_type("KeywordPlanCampaignOperation")
keyword_plan_campaign = operation.create

keyword_plan_campaign.name = f"Keyword plan campaign {uuid.uuid4()}"
keyword_plan_campaign.cpc_bid_micros = 1
keyword_plan_campaign.keyword_plan = keyword_plan

network = client.enums.KeywordPlanNetworkEnum.GOOGLE_SEARCH
keyword_plan_campaign.keyword_plan_network = network

geo_target = client.get_type("KeywordPlanGeoTarget")
# Constant for U.S. Other geo target constants can be referenced here:
# https://developers.google.com/google-ads/api/reference/data/geotargets
geo_target.geo_target_constant = "geoTargetConstants/2840"
keyword_plan_campaign.geo_targets.append(geo_target)

# Constant for English
language = "languageConstants/1030"
keyword_plan_campaign.language_constants.append(language)

response = keyword_plan_campaign_service.mutate_keyword_plan_campaigns(
customer_id=customer_id, operations=[operation]
)

resource_name = response.results[0].resource_name

print(f"Created keyword plan campaign with resource name: 
{resource_name}")

return resource_name

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/14828720-aa4f-4e39-9190-499490b6238en%40googlegroups.com.


Re: Keyword Planner API not filtering for region specified

2022-05-31 Thread Alexey
https://groups.google.com/g/adwords-api/c/3-qUQblSw-Q

On Tuesday, May 31, 2022 at 9:32:15 AM UTC+4 Una wrote:

> We have been trying to integrate the Google Ads Keyword Planner API  to 
> create keyword plans () and generate historical metrics (Generate 
> Historical Metrics  |  Google Ads API  |  Google Developers 
> <https://developers.google.com/google-ads/api/docs/keyword-planning/generate-historical-metrics>)
>  
> using the Python code snippets in the documentation mentioned above. The 
> code snippet includes a line which helps specify the region for which the 
> search volume needs to be fetched for (geo_target.geo_target_constant = 
> "geoTargetConstants/2840").
>
> We have referred to the link  
> https://developers.google.com/google-ads/api/reference/data/geotargets  
> <https://developers.google.com/google-ads/api/reference/data/geotargets>to 
> identify the required region code, but despite inputing the correct ID, the 
> response from the API does not show region specific search volume but 
> rather gives only the worldwide search volume numbers.
>
> Any help to get search volume for specific region for the keywords would 
> be greatly appreciated.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4bc7ce00-145c-42c6-8e39-d98a29b1e4bfn%40googlegroups.com.


Keyword Planner API not filtering for region specified

2022-05-30 Thread Una
We have been trying to integrate the Google Ads Keyword Planner API  to 
create keyword plans () and generate historical metrics (Generate 
Historical Metrics  |  Google Ads API  |  Google Developers 
<https://developers.google.com/google-ads/api/docs/keyword-planning/generate-historical-metrics>)
 
using the Python code snippets in the documentation mentioned above. The 
code snippet includes a line which helps specify the region for which the 
search volume needs to be fetched for (geo_target.geo_target_constant = 
"geoTargetConstants/2840").

We have referred to the link  
https://developers.google.com/google-ads/api/reference/data/geotargets  
<https://developers.google.com/google-ads/api/reference/data/geotargets>to 
identify the required region code, but despite inputing the correct ID, the 
response from the API does not show region specific search volume but 
rather gives only the worldwide search volume numbers.

Any help to get search volume for specific region for the keywords would be 
greatly appreciated.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2939bcd1-68e9-4e1a-92ba-0f4fe73d718an%40googlegroups.com.


Google Keyword Planner API Lacking Data Compared to UI

2022-05-13 Thread Niall Quirke
Hi, 

When you generate keyword ideas for a search term on the Keyword Planner UI 
you can download a CSV of the ideas with info such as search volume, brand 
names, store names, materials, etc. but when you generate keyword ideas for 
a search term through the API you only get search volume and competition 
index. 

Is there any way of getting this brand, store, materials, etc. data through 
the API?

Thanks

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bb765514-1b64-47d5-88db-63e65bfbacb7n%40googlegroups.com.


RE: Keyword planner API to google sheet / google data studio

2021-03-17 Thread Google Ads API Forum Advisor Prod
Hi Bob,

Thanks for reaching out. There isn't an Ads API-Sheets/Data Studio connector 
that I can point to, but I would recommend looking into the Sheets API with 
Apps Scripts. For Data Studio related support, I would recommend reaching out 
on this forum.

Thanks,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2DwFep:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4ZA7c0QQ4CJ800aQ9er_6JQV6QVupgYLpcjg%40sfdc.net.


Keyword planner API to google sheet / google data studio

2021-03-16 Thread Qijian Bob Ge
Hi Team,

I am trying to automatically push keyword planner data into either google 
sheet / google data studio. Is any way to do that?

I am currently copy and paste the data into google spreadsheet at weekly 
basis,. Just try to avoid manual work.


Many thanks,
Bob

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6c533c99-07c0-4410-927e-d33202f37304n%40googlegroups.com.


RE: Regarding Keyword Planner API

2021-03-16 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for  reaching out.

Extracting the keywords generated by the UI's Keyword Planner using the Google 
Ads API is not possible.

You can however, implement the API equivalent feature of the Keyword Planner 
and then from the results, you can create the keywords by referring to this 
targeting guide and this example.

I hope this helps.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2Dvy5V:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/U6WX60QQ3E0N00yN1BgluzSzWx7Ed1anKA2A%40sfdc.net.


Regarding Keyword Planner API

2021-03-16 Thread Osoftz Tech
Hi google team,
How to add keywords to an existing campaign or ad groups from 
keyword planner using Google Ads API ? This option is available in Keyword 
Planner's UI. Is there a way to achieve it  in  Google Ads API ?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d9567c81-f027-40b3-a751-cf4c468b6e63n%40googlegroups.com.


RE: Keyword planner API

2020-01-31 Thread Google Ads API Forum Advisor Prod
Hello Jonny,

Thank you for writing to us. Currently, the integration of AdWords API to 
Google Spreadsheet is not supported. The Keywords Planner feature is supported 
via API as mentioned in this guide using the TargetingIdeaService which could 
be used to retrieve the keyword search volume data. Let us know if you have any 
additional concerns.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UUzqaM:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/WLOBh0Q4ZM9G00IscuvPsSR5G7gNMpOwqnQA%40sfdc.net.


Keyword planner API

2020-01-30 Thread Jonny Walsh
Hi Everybody, 

Apologies if this has been asked before, but it it possible to pull in 
keyword volume in Google sheets via the API.

Thanks,

Jonny

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2bce1b5d-558f-4c6b-a3b6-030ecb5f4a55%40googlegroups.com.


RE: Keyword Planner API

2019-10-29 Thread Google Ads API Forum Advisor Prod
Hi Anand,

Thank you for writing to us. There is no charge for using the Google Ads API or 
Adwords API. However, there is a quota on total number of cloud projects. You 
can sign up for a new Google account which includes a free project quota 
alternatively. Please refer to the Rate Sheet and Non-Compliance fees document 
for more information.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UKOlcT:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/vB0-i0Q05811003BuzuHpHSy-nho5-iS_aeQ%40sfdc.net.


Keyword Planner API

2019-10-29 Thread Anand Babu
Hi Team 

 I am looking to build a Keyworesearch tool with the help of Google Keyword 
planner api. 2anted to understand if there are any fee applicable to use 
Targeting idea services for this.

Will be helpful if someone can share links to understand this better.

Thanks

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/544fd83c-a386-401d-bd87-086044416630%40googlegroups.com.


RE: Is there any limit to search keywords or search results for google keyword planner API?

2019-01-28 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum


Hello Rahul,

You could use the TargetingIdeaService

of the API to achieve similar results that you see in the Keyword Planner
 web interface. There is a limit
on the number of keyword results you could fetch in a single call, where
the selector must specify a paging value, with numberResults set to 700 or
less. You could use this sample program

in Java to fetch the keyword ideas. Code samples in other languages can be
found here .
Please let me know if you have any further questions.

Regards,
Sai Teja, AdWords API Team


=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com/search/label/adwords_api
https://developers.google.com/adwords/api/community/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1a0q0i00ggohq2005qar2cx70mj2e9k6ko30c1g68qj0dhk%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Is there any limit to search keywords or search results for google keyword planner API?

2019-01-28 Thread iamrahul371986
Hello

   I am planning to build an application like "https://kwfinder.com; 
using google Adwords API for keyword planner. Is there any limit to search 
keywords or search results for google keyword planner API?
   Any help would be appreciated. Thank you

Best Regards,

Sarath TS

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/33b2d310-5000-4608-b712-dca36358c9de%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Keyword Planner API - Configured Requests for List of Keywords

2018-07-10 Thread 'Teja Makani' via AdWords API and Google Ads API Forum
Hello Rishav,

By setting the TargetingIdeaService.RequestType 

 to 
STATS for the TargettingIdeaService 
,
 
you could get the historic search volume for the specific keyword. You 
would be also able to configure the language and location preferences of 
the historical stats using LanguageSearchParameter 

 and LocationSearchParameter 

 of 
the TargettingIdeaSelector 
.
 
The sample code in Java to fetch keywords related to a seed keyword is 
mentioned here 
.
 
With a little modification as mentioned above, you would be able to use the 
sample program as per your requirements. Code samples in other languages 
can be found here 
. You could 
also refer to this guide 
 
to 
know more about generating targeting Ideas. Please let me know if you have 
any further questions. 

Regards,
Sai Teja, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/affbc674-8d0e-4a5f-b05a-399001d69f03%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Keyword Planner API - Configured Requests for List of Keywords

2018-07-10 Thread Rishav Choudhury
Is there any exhaustive technical documentation on Google AdWords API which 
explains how I can call specific configurations for a list of keywords to 
return the volume?

Say for Example: I have a list of 10,000 keywords for which I need Search 
Volume but I want to configure the Country and other filters.

Please help!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9f02422e-d99f-4be4-910c-0e551325ec94%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting stats from Keyword planner API for specific date range

2018-03-09 Thread 'Peter Oliquino' via AdWords API Forum
Hi Jigar,

As discussed in this guide 
,
 
you can use the TARGETING_MONTHLY_SEARCHES 

 attribute 
to retrieve monthly volumes for a period of 12 months. Also, seeing that 
you have responded to quite an old thread to discuss your concern, I would 
recommend that you create a new one if you have additional questions, for 
better tracking.

Best regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/18b44542-15bc-4b8d-a834-26a60dda94c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting stats from Keyword planner API for specific date range

2018-03-09 Thread Jigar Navadiya
Hi there,

I also wanted to get a month on month data using API. What's the 
solution? Please share here.

On Tuesday, May 2, 2017 at 7:28:34 AM UTC+5:30, vib...@nvidia.com wrote:
>
> Hello I'm using the targeting keyword Idea api to extract the search 
> volume of past searches of a speciifc word monthly. In the UI I can set the 
> date range and extract the month by month stats for the specific country 
> for past three years. In API I can get the annual stats. However when I 
> want to get the stats for three years month by month I'm nt able to 
> correctly use the date range feature in the python API of the Google 
> ADWORDS. I get the below error  
>
> TypeNotFound: Type not found: 'DateRange':
>
>
>
> This is my script. Please help
>
>
> from googleads import adwords
>
>
> PAGE_SIZE = 100
>
> start_date = '20140101'
> end_date = '20140101'
> def main(client):
>   # Initialize appropriate service.
>   targeting_idea_service = client.GetService(
>   'TargetingIdeaService', version='v201702')
>
>   # Construct selector object and retrieve related keywords.
>   offset = 0
>   selector = {
>   'searchParameters': [
>   {
>   'xsi_type': 'RelatedToQuerySearchParameter',
>   'queries': ['TRUMP DUMP']
>   },
>   {
>   # Language setting (optional).
>   # The ID can be found in the documentation:
>   #  
> https://developers.google.com/adwords/api/docs/appendix/languagecodes
>   'xsi_type': 'LanguageSearchParameter',
>   'languages': [{'id': '1000'}]
>   },
>   {
>   # Network search parameter (optional)
>   'xsi_type': 'NetworkSearchParameter',
>   'networkSetting': {
>   'targetGoogleSearch': True,
>   'targetSearchNetwork': False,
>   'targetContentNetwork': False,
>   'targetPartnerSearchNetwork': False
>   }
>   }
>   ],
>   'ideaType': 'KEYWORD',
>   'requestType': 'STATS',
>   'requestedAttributeTypes': ['KEYWORD_TEXT', 'SEARCH_VOLUME',
>   'TARGETED_MONTHLY_SEARCHES'],
>   'paging': {
>   'startIndex': str(offset),
>   'numberResults': str(PAGE_SIZE)
>   },
> 
> 'DateRange':{
> 'min': '20140101',
>  'max': '20170101'
> }
> 
>   
> 
> 
>   }
>
>   more_pages = True
>   while more_pages:
> page = targeting_idea_service.get(selector)
>
> # Display results.
> if 'entries' in page:
>   for result in page['entries']:
> attributes = {}
> for attribute in result['data']:
>   attributes[attribute['key']] = getattr(attribute['value'], 'value',
>  '0')
> print ('Keyword with \'%s\' text and average monthly search volume '
>'\'%s\' was found with Products and Services categories: %s.'
>% (attributes['KEYWORD_TEXT'],
>   attributes['SEARCH_VOLUME'],
>   attributes['TARGETED_MONTHLY_SEARCHES']))
>   print
> else:
>   print 'No related keywords were found.'
> offset += PAGE_SIZE
> selector['paging']['startIndex'] = str(offset)
> more_pages = offset < int(page['totalNumEntries'])
>
>
> if __name__ == '__main__':
>   # Initialize client object.
>   adwords_client = adwords.AdWordsClient.LoadFromStorage()
>
>   main(adwords_client)
>
>
>
-- 
Read the Latest Case Study: How AegonLife saw a 12% Increase in Policy 
Purchases with Tatvic & Google Analytics 360 


Based on your experience with Tatvic, how likely are you to recommend us to 
a friend or a colleague?

Click on the star to rate (1 being least likely and 5 being most likely)


*Thank you for reading this far. This email may be *confidential* or 
*privileged*. If you received this communication by mistake, please don't 
forward it to anyone else. Please erase all copies and attachments, and let 
me know that it went to the wrong person.*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the 

Re: keyword planner api doesnt work sometimes

2017-09-11 Thread 'Peter Oliquino' via AdWords API Forum
Hi Mike,

The InternalApiError.UNEXPECTED_INTERNAL_API_ERROR 

 you 
are encountering indicates that it could be a temporary issue in the 
servers or could be due to a bug and is usually not associated to rate 
exceeded errors. You may refer here 
 for 
more information regarding rate limits and to this guide 
 for the exact 
values associated to operational limits.

As for the issue at hand, could you confirm if you are encountering this 
intermittently? Additionally, if the issue persists, kindly send to me the 
generated SOAP request and response so I can further investigate. You may 
reply via the *Reply privately to author* option.

Thanks and regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f57d973f-3d95-4e7f-b03d-c505fbafc208%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


keyword planner api doesnt work sometimes

2017-09-10 Thread mike
Hi,
Sometimes I use the keyword planner API for a couple of queries and I 
receive this error:
InternalApiError.UNEXPECTED_INTERNAL_API_ERROR.

There is a maximum rate that after I receive thise error? Maximum number of 
queries? What can I do if I receive these exceptions.
Thanks!

-- 
The information contained in this communication and its attachments is 
intended solely for the use of the individual or entity to whom it is 
addressed and others authorized to receive it. It is the property of 
Adgorithms and may contain confidential or legally privileged information. 
If you are not the intended recipient you are hereby notified that any 
disclosure, copying, retention, printing or distribution of this 
communication or any part thereof, or taking any action in reliance on the 
contents of this information is strictly prohibited and may be unlawful. If 
you have received this communication in error, please notify us immediately 
by responding to this email and then delete all copies of it from your 
system. Adgorithms is not liable for the proper and complete transmission 
of the information contained in this communication nor for any delay in its 
receipt.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ed354af4-a82b-42fb-bf24-3bc52d565090%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting stats from Keyword planner API for specific date range

2017-05-01 Thread 'Peter Oliquino' via AdWords API Forum
Hi Vibhor,

In the TargetingIdeaService of the AdWords API, only the 
TARGETED_MONTHLY_SEARCHES 

 attribute 
type is supported for the Date Range, which ranges to only 12 months as 
mentioned in this section 

 of 
the Targeting Ideas guide 
. 
However, to further investigate your concern, could you provide the 
complete screenshot (all filters included) of the Keyword Planner in the 
AdWords UI wherein you were able to specify a date range for the past three 
years? Please reply using *Reply privately to author*.

Thanks and regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9692c860-790d-49ea-a968-9ff5530f6f3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting stats from Keyword planner API for specific date range

2017-05-01 Thread vibhora

On Monday, May 1, 2017 at 6:58:34 PM UTC-7, vib...@nvidia.com wrote:
>
> Hello I'm using the targeting keyword Idea api to extract the search 
> volume of past searches of a speciifc word monthly. In the UI I can set the 
> date range and extract the month by month stats for the specific country 
> for past three years. In API I can get the annual stats. However when I 
> want to get the stats for three years month by month I'm nt able to 
> correctly use the date range feature in the python API of the Google 
> ADWORDS. I get the below error  
>
> TypeNotFound: Type not found: 'DateRange':
>
>
>
> This is my script. Please help
>
>
> from googleads import adwords
>
>
> PAGE_SIZE = 100
>
> start_date = '20140101'
> end_date = '20140101'
> def main(client):
>   # Initialize appropriate service.
>   targeting_idea_service = client.GetService(
>   'TargetingIdeaService', version='v201702')
>
>   # Construct selector object and retrieve related keywords.
>   offset = 0
>   selector = {
>   'searchParameters': [
>   {
>   'xsi_type': 'RelatedToQuerySearchParameter',
>   'queries': ['TRUMP DUMP']
>   },
>   {
>   # Language setting (optional).
>   # The ID can be found in the documentation:
>   #  
> https://developers.google.com/adwords/api/docs/appendix/languagecodes
>   'xsi_type': 'LanguageSearchParameter',
>   'languages': [{'id': '1000'}]
>   },
>   {
>   # Network search parameter (optional)
>   'xsi_type': 'NetworkSearchParameter',
>   'networkSetting': {
>   'targetGoogleSearch': True,
>   'targetSearchNetwork': False,
>   'targetContentNetwork': False,
>   'targetPartnerSearchNetwork': False
>   }
>   }
>   ],
>   'ideaType': 'KEYWORD',
>   'requestType': 'STATS',
>   'requestedAttributeTypes': ['KEYWORD_TEXT', 'SEARCH_VOLUME',
>   'TARGETED_MONTHLY_SEARCHES'],
>   'paging': {
>   'startIndex': str(offset),
>   'numberResults': str(PAGE_SIZE)
>   },
> 
> 'DateRange':{
> 'min': '20140101',
>  'max': '20170101'
> }
> 
>   
> 
> 
>   }
>
>   more_pages = True
>   while more_pages:
> page = targeting_idea_service.get(selector)
>
> # Display results.
> if 'entries' in page:
>   for result in page['entries']:
> attributes = {}
> for attribute in result['data']:
>   attributes[attribute['key']] = getattr(attribute['value'], 'value',
>  '0')
> print ('Keyword with \'%s\' text and average monthly search volume '
>'\'%s\' was found with Products and Services categories: %s.'
>% (attributes['KEYWORD_TEXT'],
>   attributes['SEARCH_VOLUME'],
>   attributes['TARGETED_MONTHLY_SEARCHES']))
>   print
> else:
>   print 'No related keywords were found.'
> offset += PAGE_SIZE
> selector['paging']['startIndex'] = str(offset)
> more_pages = offset < int(page['totalNumEntries'])
>
>
> if __name__ == '__main__':
>   # Initialize client object.
>   adwords_client = adwords.AdWordsClient.LoadFromStorage()
>
>   main(adwords_client)
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6669439b-d979-48ed-b0bf-3fa53c6c117b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Getting stats from Keyword planner API for specific date range

2017-05-01 Thread vibhora
Hello I'm using the targeting keyword Idea api to extract the search 
volume of past searches of a speciifc word monthly. In the UI I can set the 
date range and extract the month by month stats for the specific country 
for past three years. In API I can get the annual stats. However when I 
want to get the stats for three years month by month I'm nt able to 
correctly use the date range feature in the python API of the Google 
ADWORDS. I get the below error  

TypeNotFound: Type not found: 'DateRange':



This is my script. Please help


from googleads import adwords


PAGE_SIZE = 100

start_date = '20140101'
end_date = '20140101'
def main(client):
  # Initialize appropriate service.
  targeting_idea_service = client.GetService(
  'TargetingIdeaService', version='v201702')

  # Construct selector object and retrieve related keywords.
  offset = 0
  selector = {
  'searchParameters': [
  {
  'xsi_type': 'RelatedToQuerySearchParameter',
  'queries': ['TRUMP DUMP']
  },
  {
  # Language setting (optional).
  # The ID can be found in the documentation:
  #  
https://developers.google.com/adwords/api/docs/appendix/languagecodes
  'xsi_type': 'LanguageSearchParameter',
  'languages': [{'id': '1000'}]
  },
  {
  # Network search parameter (optional)
  'xsi_type': 'NetworkSearchParameter',
  'networkSetting': {
  'targetGoogleSearch': True,
  'targetSearchNetwork': False,
  'targetContentNetwork': False,
  'targetPartnerSearchNetwork': False
  }
  }
  ],
  'ideaType': 'KEYWORD',
  'requestType': 'STATS',
  'requestedAttributeTypes': ['KEYWORD_TEXT', 'SEARCH_VOLUME',
  'TARGETED_MONTHLY_SEARCHES'],
  'paging': {
  'startIndex': str(offset),
  'numberResults': str(PAGE_SIZE)
  },

'DateRange':{
'min': '20140101',
 'max': '20170101'
}

  


  }

  more_pages = True
  while more_pages:
page = targeting_idea_service.get(selector)

# Display results.
if 'entries' in page:
  for result in page['entries']:
attributes = {}
for attribute in result['data']:
  attributes[attribute['key']] = getattr(attribute['value'], 'value',
 '0')
print ('Keyword with \'%s\' text and average monthly search volume '
   '\'%s\' was found with Products and Services categories: %s.'
   % (attributes['KEYWORD_TEXT'],
  attributes['SEARCH_VOLUME'],
  attributes['TARGETED_MONTHLY_SEARCHES']))
  print
else:
  print 'No related keywords were found.'
offset += PAGE_SIZE
selector['paging']['startIndex'] = str(offset)
more_pages = offset < int(page['totalNumEntries'])


if __name__ == '__main__':
  # Initialize client object.
  adwords_client = adwords.AdWordsClient.LoadFromStorage()

  main(adwords_client)


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0f177e91-0948-47da-90df-e95dbf0d35f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: keyword planner API for search volume

2015-06-01 Thread Ayala Michelson
Mike,

I'd like to use Google KW Planner API to get stats on KW. Can you please 
direct me to the relevant link where I can get all the info on what API 
calls are available/Cost/Limitations (number allowed queries a day) and 
etc'...

Thanks 

On Thursday, February 6, 2014 at 4:10:24 PM UTC+2, Michael Cloonan (AdWords 
API Team) wrote:

 Hi Chriss,

 You can track keyword performance using the Keywords Performance Report 
 https://developers.google.com/adwords/api/docs/appendix/reports#keywords. 
 Here are the Java examples for running reports with 
 https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201309/reporting/DownloadCriteriaReportWithAwql.java
  
 and without 
 https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201309/reporting/DownloadCriteriaReport.java
  
 using AWQL https://developers.google.com/adwords/api/docs/guides/awql. 
 If Java isn't your language of choice, you can find similar examples in all 
 of our other client libraries 
 https://developers.google.com/adwords/api/docs/clientlibraries.

 You can set up ad groups using the AdGroupService 
 https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupService,
  
 and can set up keywords (which are a type of criteria) on an ad group level 
 using the AdGroupCriterionService 
 https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService
 .

 Hopefully this answers your questions. Let me know if I can help you 
 further.

 Thanks,
 Mike, AdWords API Advisor

 On Monday, February 3, 2014 8:00:08 AM UTC-5, chriss Moyle wrote:

 Hi All,

 I have successfully got the OAuth token from google API (in c#).

 Now, i am search keyword planner API for below option, so i can post 
 keywords and target location and in return i got the bid information.

 Get search volume for a list of keywords or group them into ad groups

 Please advice, is what method and how to call their method using google 
 API.

 Thanks,
 Chriss



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/181b20a6-42fc-48aa-b769-9ae7f92176cf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: keyword planner API for search volume

2015-06-01 Thread Michael Cloonan (AdWords API Team)
Hello Ayala,

Please see our guides on Estimating Traffic 
https://developers.google.com/adwords/api/docs/guides/traffic-estimator-service
 and 
Generating Targeting Ideas 
https://developers.google.com/adwords/api/docs/guides/targeting-idea-service 
for 
information on how to use the API's versions of the keyword planner.

Please see our rate sheet 
https://developers.google.com/adwords/api/docs/ratesheet for information 
on Basic vs. Standard API access, which outlines costs/limitations/etc.

Regards,
Mike, AdWords API Team

On Monday, June 1, 2015 at 8:43:34 AM UTC-4, Ayala Michelson wrote:

 Mike,

 I'd like to use Google KW Planner API to get stats on KW. Can you please 
 direct me to the relevant link where I can get all the info on what API 
 calls are available/Cost/Limitations (number allowed queries a day) and 
 etc'...

 Thanks 

 On Thursday, February 6, 2014 at 4:10:24 PM UTC+2, Michael Cloonan 
 (AdWords API Team) wrote:

 Hi Chriss,

 You can track keyword performance using the Keywords Performance Report 
 https://developers.google.com/adwords/api/docs/appendix/reports#keywords. 
 Here are the Java examples for running reports with 
 https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201309/reporting/DownloadCriteriaReportWithAwql.java
  
 and without 
 https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201309/reporting/DownloadCriteriaReport.java
  
 using AWQL https://developers.google.com/adwords/api/docs/guides/awql. 
 If Java isn't your language of choice, you can find similar examples in all 
 of our other client libraries 
 https://developers.google.com/adwords/api/docs/clientlibraries.

 You can set up ad groups using the AdGroupService 
 https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupService,
  
 and can set up keywords (which are a type of criteria) on an ad group level 
 using the AdGroupCriterionService 
 https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService
 .

 Hopefully this answers your questions. Let me know if I can help you 
 further.

 Thanks,
 Mike, AdWords API Advisor

 On Monday, February 3, 2014 8:00:08 AM UTC-5, chriss Moyle wrote:

 Hi All,

 I have successfully got the OAuth token from google API (in c#).

 Now, i am search keyword planner API for below option, so i can post 
 keywords and target location and in return i got the bid information.

 Get search volume for a list of keywords or group them into ad groups

 Please advice, is what method and how to call their method using google 
 API.

 Thanks,
 Chriss



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/85fec162-bb3c-4480-b704-e20749e225fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


keyword planner api search volume,location how to get it?

2014-12-23 Thread Florijn Terstal
Hi,

I did read some post here.. but still i didn't understand the answers..



in python i wanna connect to the keyword planner api.

Wat i need is:
- a search of one or more keywords
- the search volume of this month 
- the search volume of the past month 
- location in the Netherlands



how should i do this?  maybe a exmple code..

gr.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/645be3ec-56e3-4336-b4d0-1a01df42102c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: keyword planner api search volume,location how to get it?

2014-12-23 Thread Danial Klimkin
Hello Florijn,


Please see the guides here:

  
https://developers.google.com/adwords/api/docs/guides/traffic-estimator-service
  https://developers.google.com/adwords/api/docs/guides/targeting-idea-service

and code example available for Python here:

  
https://github.com/googleads/googleads-python-lib/tree/master/examples/adwords/v201409/optimization


-Danial, AdWords API Team.


On Tuesday, December 23, 2014 1:57:56 PM UTC+3, Florijn Terstal wrote:

 Hi,

 I did read some post here.. but still i didn't understand the answers..



 in python i wanna connect to the keyword planner api.

 Wat i need is:
 - a search of one or more keywords
 - the search volume of this month 
 - the search volume of the past month 
 - location in the Netherlands



 how should i do this?  maybe a exmple code..

 gr.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/43282ebb-194b-4347-82d2-c69fdf6189b1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


keyword planner api for C#

2014-11-12 Thread Ravindra Naik
Hi,

I want to use keyword planner api to suggest relevant keywords to upload 
for a particular business category. I have been looking for some good 
documentation as to how to go about it, but I have not been successful till 
now. Can anyone help me with Keyword planner api.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/217d9a91-a896-4d8e-9169-e8d721c0f30d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: keyword planner api for C#

2014-11-12 Thread Michael Cloonan (AdWords API Team)
Hello,

Please see our guides on the TargetingIdeaService 
https://developers.google.com/adwords/api/docs/guides/targeting-idea-service 
and the TrafficEstimatorService 
https://developers.google.com/adwords/api/docs/guides/traffic-estimator-service,
 
which are the APIs analogues for the keyword planner.

Regards,
Mike, AdWords API Team

On Wednesday, November 12, 2014 4:45:58 AM UTC-5, Ravindra Naik wrote:

 Hi,

 I want to use keyword planner api to suggest relevant keywords to upload 
 for a particular business category. I have been looking for some good 
 documentation as to how to go about it, but I have not been successful till 
 now. Can anyone help me with Keyword planner api.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9c879366-bac5-44c4-b386-37aaf21bf3b5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: keyword planner API for search volume

2014-02-10 Thread Michael Cloonan (AdWords API Team)
Hi James,

The Keyword Performance Report can only give statistics on keywords that 
actually have statistics to show.

If you want information on what keywords are set up for a 
Campaignhttps://developers.google.com/adwords/api/docs/reference/v201309/CampaignCriterionServiceor
 
AdGrouphttps://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService,
 
you need to look at the relevant Criterion service (linked).

I'm not sure what you mean about keywords you don't yet want to add to a 
campaign. Do you mean general performance of said keywords, not associated 
with your account? If so, I don't believe such an option exists.

Thanks,
Mike, AdWords API Advisor

On Sunday, February 9, 2014 12:28:44 PM UTC-5, James Eckhardt wrote:

 Hi Michael,

 Does the Keyword Performance Report give you data for keywords that are 
 not yet in a campaign?

 If not, do you know how to get data for keywords you don't yet want to add 
 to a campaign?

 Best wishes,


 James




 On Monday, 3 February 2014 13:00:08 UTC, chriss Moyle wrote:

 Hi All,

 I have successfully got the OAuth token from google API (in c#).

 Now, i am search keyword planner API for below option, so i can post 
 keywords and target location and in return i got the bid information.

 Get search volume for a list of keywords or group them into ad groups

 Please advice, is what method and how to call their method using google 
 API.

 Thanks,
 Chriss



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: keyword planner API for search volume

2014-02-06 Thread Michael Cloonan (AdWords API Team)
Hi Chriss,

You can track keyword performance using the Keywords Performance 
Reporthttps://developers.google.com/adwords/api/docs/appendix/reports#keywords.
 
Here are the Java examples for running reports 
withhttps://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201309/reporting/DownloadCriteriaReportWithAwql.javaand
 
withouthttps://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201309/reporting/DownloadCriteriaReport.javausing
 
AWQL https://developers.google.com/adwords/api/docs/guides/awql. If Java 
isn't your language of choice, you can find similar examples in all of our 
other client 
librarieshttps://developers.google.com/adwords/api/docs/clientlibraries
.

You can set up ad groups using the 
AdGroupServicehttps://developers.google.com/adwords/api/docs/reference/v201309/AdGroupService,
 
and can set up keywords (which are a type of criteria) on an ad group level 
using the 
AdGroupCriterionServicehttps://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService
.

Hopefully this answers your questions. Let me know if I can help you 
further.

Thanks,
Mike, AdWords API Advisor

On Monday, February 3, 2014 8:00:08 AM UTC-5, chriss Moyle wrote:

 Hi All,

 I have successfully got the OAuth token from google API (in c#).

 Now, i am search keyword planner API for below option, so i can post 
 keywords and target location and in return i got the bid information.

 Get search volume for a list of keywords or group them into ad groups

 Please advice, is what method and how to call their method using google 
 API.

 Thanks,
 Chriss



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.