Mobile app version of vmapp.org
Login or Join
Sherry384

: Getting keywords in XML from Google? need to know how to get all keywords from Google Keywords service. By default, i can download only 700 keywords. How to get all keywords from one query?

@Sherry384

Posted in: #Google

need to know how to get all keywords from Google Keywords service. By default, i can download only 700 keywords. How to get all keywords from one query? Thanks.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Sherry384

1 Comments

Sorted by latest first Latest Oldest Best

 

@Si4351233

Auto-Pagination through the API

Here is a quick overview on how to do auto-pagination with our API. You might also follow along by checking the fully working sample code in Python which you can use in your own applications.

The following sample query fetches the first 10,000 keywords by conversion rate for the month of February:
www.google.com/analytics/feeds/data ?ids=ga:12345
&dimensions=ga:keywords
&metrics=ga:conversionRateAll
&sort=-ga:conversionRateAll
&start-date=2011-02-01
&end-date=2011-02-28
&start-index=1
&max-results=10000


Notice how start-index is set to 1 and max-results is set to 10,000. When this query is issued to the API, the API will return up to 10,000 results. The API also returns the number rows found in Google Analytics in the openSearch:totalResult XML element

14,654


To get the total number of pages in this request, we can use the following python code:

num_pages = math.ceil(total_results / 10000)


Then getting the start-index for each additional page is trivial:

for page_number in range(num_pages)[1:]: # skips the first page.
start_index_for_page = page_number * 10000 + 1


Thats it! If you want to start doing this today, or just see how it should work, we’ve included a fully working example. If you liked this, and want to see more example, let us know what we should do next in our comments.

Posted by Nick Mihailovski, Google Analytics API Team

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme