Optimyzee App/Create/Google Ads/Search Creation API

App/Create/GoogleAds/SearchCreation

Operations 6

POST /app/create/g/searchCreation #
POST /app/create/g/searchCreation/{draftId}/publish #
POST /app/create/g/searchCreation/{draftId}/rebuild #
GET /app/create/g/searchCreation/{draftId}/status #
GET /app/create/g/searchCreation/{draftId} #
PATCH /app/create/g/searchCreation/{draftId} #

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-searchcreation-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-searchcreation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Optimyzee Application App/Create/Google Ads/Search Creation API
  version: 4.1.0
  x-original-title: API
  description: App/Create/GoogleAds/SearchCreation
servers:
- url: https://api.optimyzee.com
  description: Production (host serving this document at /docs)
tags:
- name: App/Create/GoogleAds/SearchCreation
  description: App/Create/GoogleAds/SearchCreation
paths:
  /app/create/g/searchCreation:
    post:
      tags:
      - App/Create/GoogleAds/SearchCreation
      operationId: appCreateGoogleAdsSearchCreationCreate
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - url
              properties:
                url:
                  type: string
                linkingId:
                  type:
                  - integer
                  - 'null'
                rsaBuilderId:
                  type:
                  - integer
                  - 'null'
                keywordPlannerId:
                  type:
                  - integer
                  - 'null'
                languages:
                  type:
                  - array
                  - 'null'
                  items:
                    type: integer
                locations:
                  type:
                  - array
                  - 'null'
                  items:
                    type: integer
                budgetAmount:
                  type:
                  - integer
                  - 'null'
              type: object
      responses:
        '201':
          description: Successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IdSchema'
        '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/searchCreation/{draftId}/publish:
    post:
      tags:
      - App/Create/GoogleAds/SearchCreation
      operationId: appCreateGoogleAdsSearchCreationPublish
      parameters:
      - name: draftId
        in: path
        required: true
        schema:
          type: integer
      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: []
  /app/create/g/searchCreation/{draftId}/rebuild:
    post:
      tags:
      - App/Create/GoogleAds/SearchCreation
      operationId: appCreateGoogleAdsSearchCreationRebuild
      parameters:
      - name: draftId
        in: path
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required: []
              properties:
                url:
                  type:
                  - string
                  - 'null'
                prompt:
                  type:
                  - string
                  - 'null'
                languages:
                  type:
                  - array
                  - 'null'
                  items:
                    type: integer
                locations:
                  type:
                  - array
                  - 'null'
                  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: []
  /app/create/g/searchCreation/{draftId}/status:
    get:
      tags:
      - App/Create/GoogleAds/SearchCreation
      operationId: appCreateGoogleAdsSearchCreationStatus
      parameters:
      - name: draftId
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                required:
                - data
                properties:
                  data:
                    $ref: '#/components/schemas/AppCreateGoogleAdsSearchCreationStatusSchema'
                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: []
  /app/create/g/searchCreation/{draftId}:
    get:
      tags:
      - App/Create/GoogleAds/SearchCreation
      operationId: appCreateGoogleAdsSearchCreationView
      parameters:
      - name: draftId
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                required:
                - data
                properties:
                  data:
                    $ref: '#/components/schemas/AppCreateGoogleAdsSearchCreationDraftSchema'
                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: []
    patch:
      tags:
      - App/Create/GoogleAds/SearchCreation
      operationId: appCreateGoogleAdsSearchCreationUpdate
      parameters:
      - name: draftId
        in: path
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required: []
              properties:
                linkingId:
                  type:
                  - integer
                  - 'null'
                url:
                  type:
                  - string
                  - 'null'
                languages:
                  type:
                  - array
                  - 'null'
                  items:
                    type: integer
                locations:
                  type:
                  - array
                  - 'null'
                  items:
                    type: integer
                headlines:
                  type:
                  - array
                  - 'null'
                  items:
                    type: string
                descriptions:
                  type:
                  - array
                  - 'null'
                  items:
                    type: string
                keywords:
                  type:
                  - array
                  - 'null'
                  items:
                    type: integer
                budgetAmount:
                  type:
                  - integer
                  - 'null'
              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:
    AppCreateGoogleAdsSearchCreationStatusSchema:
      required:
      - status
      properties:
        status:
          type: string
          enum:
          - IDLE
          - BUILD_QUEUED
          - BUILD_PROCESSING
          - PUBLISH_QUEUED
          - PUBLISH_PROCESSING
          - PUBLISHED
          - PARTIALLY_PUBLISHED
      type: object
    ErrorSchema:
      required:
      - errors
      properties:
        error:
          type: string
        message:
          type:
          - string
          - 'null'
      type: object
    IdSchema:
      required:
      - id
      properties:
        id:
          type: integer
      type: object
    AppCreateGoogleAdsSearchCreationDraftSchema:
      required:
      - id
      - linkingId
      - linkingName
      - linkingCurrencyCode
      - campaignId
      - status
      - url
      - prompt
      - languages
      - locations
      - headlines
      - descriptions
      - headlineSuggestions
      - descriptionSuggestions
      - keywords
      - budgetAmount
      properties:
        id:
          type: integer
        linkingId:
          type:
          - integer
          - 'null'
        linkingName:
          type:
          - string
          - 'null'
        linkingCurrencyCode:
          type:
          - string
          - 'null'
        campaignId:
          type:
          - integer
          - 'null'
        status:
          type: string
          enum:
          - IDLE
          - BUILD_QUEUED
          - BUILD_PROCESSING
          - PUBLISH_QUEUED
          - PUBLISH_PROCESSING
          - PUBLISHED
          - PARTIALLY_PUBLISHED
        url:
          type:
          - string
          - 'null'
        prompt:
          type:
          - string
          - 'null'
        languages:
          type: array
          items:
            type: integer
        locations:
          type: array
          items:
            type: integer
        headlines:
          type: array
          items:
            type: string
        descriptions:
          type: array
          items:
            type: string
        headlineSuggestions:
          type: array
          items:
            type: string
        descriptionSuggestions:
          type: array
          items:
            type: string
        keywords:
          type: array
          items:
            $ref: '#/components/schemas/AppCreateGoogleAdsSearchCreationDraftKeywordSchema'
        budgetAmount:
          type:
          - integer
          - 'null'
      type: object
    AppCreateGoogleAdsSearchCreationDraftKeywordSchema:
      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