Skip to main content
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>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://plai-a079b342.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Request Body

keyword
string
required
Keyword for generating similar keyword ideas.
languageId
string
languageId for generating keyword ideas.

You can find supported `languageIds` by downloading the file and use the column `Criterion ID` as the `languageId`

Default languageId is English.
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