Generate Keyword Ideas

Download CSV / JSON of geo targets

Languages available for targeting.

Body JSON
{
  "keywords": [
    "api service"
  ],
  "pageUrl": "appgregator.co",
  "locationId": [
    "1023191"
  ],
  "language_id": 1000
}

POST https://us-central1-appgregator.cloudfunctions.net/googleads/keywords/

Query Parameters

Name
Type
Description

name*

String

ft-4

connection_name*

String

ga-06

customer_id*

String

1667172913

Headers

Name
Type
Description

client_id*

String

XXXX-XXXX.apps.googleusercontent.com

client_secret*

String

XXXX-XXXX

login-customer-id*

String

3485333200

developer_token*

String

XXXX

x-api-key*

String

U2Fsd...

[
    {
        "KeywordIdea": "api service",
        "KeywordIdeaMetrics": {},
        "AvgMonthlySearches": 50,
        "Competition": 2
    },
    {
        "KeywordIdea": "api as a service",
        "KeywordIdeaMetrics": {},
        "AvgMonthlySearches": 10,
        "Competition": 3
    },
    {
        "KeywordIdea": "apis & services",
        "KeywordIdeaMetrics": {},
        "AvgMonthlySearches": 10,
        "Competition": 0
    },
    {
        "KeywordIdea": "api and services",
        "KeywordIdeaMetrics": {},
        "AvgMonthlySearches": 10,
        "Competition": 0
    }
]
var axios = require('axios');
var data = JSON.stringify({
  "keywords": [
    "api service"
  ],
  "pageUrl": "appgregator.co",
  "locationId": [
    "1023191"
  ],
  "language_id": 1000
});

var config = {
  method: 'post',
  url: 'https://us-central1-appgregator.cloudfunctions.net/googleads/keywords?name=ft-4&connection_name=ga-06&customer_id=1667172913',
  headers: { 
    'login-customer-id': '3485333200', 
    'client_id': 'XXX-XXX.apps.googleusercontent.com', 
    'client_secret': 'XXX-XXX', 
    'developer_token': 'XXXX', 
    'x-api-key': 'U2Fsd...', 
    'Content-Type': 'application/json'
  },
  data : data
};

axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});

Last updated