POST
/
gads
/
generate_keyword_ideas
Generate Keyword Ideas
curl --request POST \
  --url https://public.plai.io/gads/generate_keyword_ideas \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "keyword": "<string>",
  "languageId": "<string>",
  "locationIds": [
    "<string>"
  ]
}'
{
  "success": true,
  "results": {
    "success": true,
    "keywords": [
      {
        "keyword": "<string>",
        "searchVolume": 123,
        "cpc": 123
      }
    ],
    "error": "<string>"
  }
}

Request Body

keyword
string
required
Keyword for generating similar keyword ideas.
languageId
string
locationIds
string[]
Location IDs for generating keyword ideasYou can retrieve the appropriate locationId using the Get Location API.
Default locationId is United States.

Response

success
boolean
Indicates that the HTTP response was successful (status code 200 OK).
results
object