Pete Bowen's site

How to use the Google Ads API to do keyword research.

The AdWords API offers two keyword research services:

I built a custom keyword research tool for my agency, MarketingMotor. It uses the TargetingIdeaService.

We feed the data from our keyword research tool straight into our campaign building tool. It lets us assemble AdWords campaigns in a fraction of the time it would take to do them in the web interface. Its even faster than a spreadsheet or AdWords editor, and, we make fewer mistakes.

I bumped into a couple of unexpected problems building our keyword research tool.

Rate limits.

Google restricts the frequency at which your keyword research tool can access the API. If you make too many requests in too short a time they fail.

The TargetingIdeaService seems to have the strictest rate limits. I say seems to because the actual rate limits are not documented, and they change depending on how busy the API is.

At times I've had to slow to less than one request per minute. At that rate the first version of my tool felt like the internet in 1996. I eventually redesigned the tool from the ground up so it was comfortable even with strict rate limits.

Drowning in data.

The API will dig out thousands of obscure long tail keywords if you let it. In theory long tail keywords are good. In practice, saying yes or no to a thousand possible keywords takes too long. Decision fatigue leads to mistakes.

Required minimum functionality.

If your keyword tool is open for the public or other agencies it'll have to comply with the minimum functionality requirements. At the time of writing keyword research tools also have to allow users to build and manage campaigns.

Internal-use-only tools don’t have these requirements.

Need help with the Google Ads API? Email me (me@pete-bowen.com) for a no-cost, no-obligation chat. I’m always happy to talk Google Ads and code.

Need some help with this?

I offer 1-to-1 mentoring and consulting. You’ll get help, advice, support and answers without having to commit to a long-term contract. Details here.

Want to increase your conversion rate?
I’ve seen conversion rates double, triple and even 10X after a few quick and easy changes to the enquiry form. Subscribe now, and I'll send you a free copy of my in-depth ebook High-Converting Enquiry Forms.
You're already paying for clicks. Now turn them into conversions. Privacy policy. Unsubscribe at any time.

Related articles

Google Ads API:- does every client account have to authorise your access? A reader asked me about authorising Google Ads API access to their client accounts.

AdWords API: Authorization for multiple users. Here's how you handle authorization for multiple users of your AdWords API tool.

Choosing a domain name for your Google Ads tool. I bumped into an unexpected problem when I chose the Ad-Minister.app domain.

Death by alerts. Will your custom AdWords tool monitor AdWords performance? It's surprisingly difficult to work out when your monitoring system should warn your users. Read on for guidelines on alerts and notifications.

Where can I find a programmer to help implement the Google Ads API? Good news is that you don’t a programmer who is an expert at the AdWords API because the programming constructs that the API uses are well known. For instance, the API uses OAuth for authentication which is very common.

Building custom tools with the Google Ads API. You run an digital marketing agency. You’re thinking about building a custom Google Ads tool using the API. Here are some of the things that trip people up.