HI,

I´m using Python to query keyword search volumes.

The following is the snippet of my source to query the api:

    keywords = ['e-bike herren', 'transportkarre']

        targeting_idea_service = self.client.GetService(
        'TargetingIdeaService', version='v201409')
        
        # Construct selector object and retrieve related keywords.
        offset = 0
    
        selector = {
            'searchParameters': [
            {
            'xsi_type': 'RelatedToQuerySearchParameter',
            'queries': queries
            },
            {
            'xsi_type': 'LanguageSearchParameter',
            'languages': [{'id': '1001'}]
            }
            ],
            'ideaType': 'KEYWORD',
            'requestType': 'STATS',
            'requestedAttributeTypes': ['KEYWORD_TEXT', 
'TARGETED_MONTHLY_SEARCHES'],
            'paging': {
            'startIndex': str(offset),
            'numberResults': str(self.PAGE_SIZE)
            }
        }
    
    more_pages = True
    while more_pages:
        page = targeting_idea_service.get(selector)
        # ..


This works but there is a significant difference between the intersection 
of the resulting search volumes and the search volume from the Google 
Keyword Planner. (e.g. 8817 vs 170 for "e-bike herren" and 15217 vs 1300 
for "transportkarre"). I´ve come acoss KeywordMatchType which may be set to 
'EXACT' to fetch better values. However I´am not seeing a way to define 
that in the above source. I tried defining "matchType": 'EXACT' at 
different places in the selector.

Can someone please tell how to make this call request exact data?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8416566a-5e04-4273-a184-c2df033da7f0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to