Hi, i know this question have been raised in the past, but i could not find a suitable answer.
I've been working with a python script that should get, the search volumes for a list of keywords.

This is the output from the script. And i have used the "SEARCH_VOLUME" from the api reference to get the volume. If i upload my my list to the keyword planner the picture is a bit different.

Since i am using python, here is the code of my selector:
offset = 0
selector = {
'searchParameters': [
{
'xsi_type': 'RelatedToQuerySearchParameter',
'queries': keyword_list
},
{
# 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': langID}]
},
{
# Location setting (optional).
# The ID can be found in the documenation:
# https://developers.google.com/adwords/api/docs/appendix/geotargeting
# Country codes found by searching country name in name filter
'xsi_type': 'LocationSearchParameter',
'locations': [{'id': locID}]
},
{
# 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', 'COMPETITION'],
'paging': {
'startIndex': str(offset),
'numberResults': count
}
}
I simply can't see what i am doing wrong. Any suggestions?
Best Regards
Steffen