Optimyzee App/Create/Google Ads/Keyword Planner API

App/Create/GoogleAds/KeywordPlanner

Operations 5

GET /app/create/g/keywordPlanner/{plannerId}/export #
POST /app/create/g/keywordPlanner #
POST /app/create/g/keywordPlanner/{plannerId}/reprocess #
GET /app/create/g/keywordPlanner/{plannerId} #
PUT /app/create/g/keywordPlanner/{plannerId} #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/optimyzee-app-create-googleads-keywordplanner-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

optimyzee-app-create-googleads-keywordplanner-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Optimyzee Application App/Create/Google Ads/Keyword Planner API
  version: 4.1.0
  x-original-title: API
  description: App/Create/GoogleAds/KeywordPlanner
servers:
- url: https://api.optimyzee.com
  description: Production (host serving this document at /docs)
tags:
- name: App/Create/GoogleAds/KeywordPlanner
  description: App/Create/GoogleAds/KeywordPlanner
paths:
  /app/create/g/keywordPlanner/{plannerId}/export:
    get:
      tags:
      - App/Create/GoogleAds/KeywordPlanner
      operationId: appCreateGoogleAdsKeywordPlannerExport
      parameters:
      - name: plannerId
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Successful
          content:
            text/csv:
              schema:
                type: string
                format: binary
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
        '401':
          description: Unauthenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
      security:
      - token: []
  /app/create/g/keywordPlanner:
    post:
      tags:
      - App/Create/GoogleAds/KeywordPlanner
      operationId: appCreateGoogleAdsKeywordPlannerQueue
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - url
              properties:
                url:
                  type: string
                prompt:
                  type:
                  - string
                  - 'null'
                language:
                  type:
                  - integer
                  - 'null'
                locations:
                  type:
                  - array
                  - 'null'
                  items:
                    type: integer
              type: object
      responses:
        '201':
          description: Successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IdSchema'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBagSchema'
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
        '401':
          description: Unauthenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
      security:
      - token: []
  /app/create/g/keywordPlanner/{plannerId}/reprocess:
    post:
      tags:
      - App/Create/GoogleAds/KeywordPlanner
      operationId: appCreateGoogleAdsKeywordPlannerReprocess
      parameters:
      - name: plannerId
        in: path
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - url
              properties:
                url:
                  type: string
                prompt:
                  type:
                  - string
                  - 'null'
                language:
                  type:
                  - integer
                  - 'null'
                locations:
                  type:
                  - array
                  - 'null'
                  items:
                    type: integer
              type: object
      responses:
        '204':
          description: Successful
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBagSchema'
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
        '401':
          description: Unauthenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
      security:
      - token: []
  /app/create/g/keywordPlanner/{plannerId}:
    get:
      tags:
      - App/Create/GoogleAds/KeywordPlanner
      operationId: appCreateGoogleAdsKeywordPlannerView
      parameters:
      - name: plannerId
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                required:
                - data
                properties:
                  data:
                    $ref: '#/components/schemas/AppCreateGoogleAdsKeywordPlannerSchema'
                type: object
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
        '401':
          description: Unauthenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
      security:
      - token: []
    put:
      tags:
      - App/Create/GoogleAds/KeywordPlanner
      operationId: appCreateGoogleAdsKeywordPlannerUpdate
      parameters:
      - name: plannerId
        in: path
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - selected
              properties:
                selected:
                  type: array
                  items:
                    type: integer
              type: object
      responses:
        '204':
          description: Successful
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
        '401':
          description: Unauthenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorSchema'
      security:
      - token: []
components:
  schemas:
    AppCreateGoogleAdsKeywordPlannerSchema:
      required:
      - id
      - url
      - language
      - locations
      - keywordSeed
      - prompt
      - status
      - keywords
      properties:
        id:
          type: integer
        url:
          type: string
        language:
          type:
          - integer
          - 'null'
        locations:
          type: array
          items:
            type: integer
        keywordSeed:
          type: array
          items:
            type: string
        prompt:
          type:
          - string
          - 'null'
        status:
          type: string
          enum:
          - QUEUED
          - PROCESSING
          - SUCCESSFUL
          - FAILED
        keywords:
          type: array
          items:
            $ref: '#/components/schemas/AppCreateGoogleAdsKeywordPlannerKeywordSchema'
      type: object
    IdSchema:
      required:
      - id
      properties:
        id:
          type: integer
      type: object
    ErrorSchema:
      required:
      - errors
      properties:
        error:
          type: string
        message:
          type:
          - string
          - 'null'
      type: object
    ErrorBagSchema:
      required:
      - errors
      properties:
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
      type: object
    AppCreateGoogleAdsKeywordPlannerKeywordSchema:
      required:
      - id
      - text
      - lowTopOfPageBid
      - highTopOfPageBid
      - competition
      - avgMonthlySearches
      - score
      - selected
      properties:
        id:
          type: integer
        text:
          type: string
        lowTopOfPageBid:
          type:
          - integer
          - 'null'
        highTopOfPageBid:
          type:
          - integer
          - 'null'
        competition:
          type:
          - integer
          - 'null'
        avgMonthlySearches:
          type:
          - integer
          - 'null'
        score:
          type:
          - integer
          - 'null'
        selected:
          type: boolean
      type: object
  securitySchemes:
    token:
      type: apiKey
      description: Bearer token authorization
      name: authorization
      in: header