3
votes

I recently signed up for a key with Google's Custom Search Api. I reached the daily limit so signed up for billing to enable more requests. However, I keep getting the "usageLimit" error.

In my project's billing settings I see billing enabled. In Enabled Api's I see "Custom Search API".

This is my query:

https://www.googleapis.com/customsearch/v1?cx=(searchenginekey)&q=flower&rights=cc_publicdomain&key=(myprojectkey)

What am I doing wrong? Even when I test it in the explorer http://developers.google.com/apis-explorer/?hl=en_US#p/customsearch/v1/search.cse.list

I get this:

{
 "error": {
  "errors": [
   {
    "domain": "usageLimits",
    "reason": "keyInvalid",
    "message": "Bad Request"
   }
  ],
  "code": 400,
  "message": "Bad Request"
 }
}
1

1 Answers