> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentbody.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Return Google Ads keyword search volume, CPC, and competition

> Use this operation to return google ads keyword search volume, cpc, and competition. Authenticate with Authorization: Bearer <AGENTBODY_API_KEY>. Correct a 400 invalid-input error; do not retry unchanged. Retry only declared 502, 503, or 504 responses with backoff.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/seo/google-ads-search-volume
openapi: 3.1.0
info:
  description: >-
    Direct authenticated APIs for public social data, people data, transcripts,
    documents, text, and SEO. Send an API key as a Bearer token. Responses never
    include provider credentials or raw provider payloads.
  license:
    name: Proprietary
    url: https://agentbody.io
  title: AgentBody API
  version: '2026-08-19'
servers:
  - url: https://api.agentbody.io
security:
  - bearerAuth: []
paths:
  /v1/seo/google-ads-search-volume:
    get:
      tags:
        - seo
      summary: Return Google Ads keyword search volume, CPC, and competition
      description: >-
        Use this operation to return google ads keyword search volume, cpc, and
        competition. Authenticate with Authorization: Bearer
        <AGENTBODY_API_KEY>. Correct a 400 invalid-input error; do not retry
        unchanged. Retry only declared 502, 503, or 504 responses with backoff.
      operationId: get_v1_seo_google_ads_search_volume
      parameters:
        - in: query
          name: keyword
          required: true
          schema:
            type: string
        - in: query
          name: location_code
          schema:
            type: integer
        - in: query
          name: language_code
          schema:
            type: string
        - in: query
          name: search_partners
          schema:
            type: boolean
        - in: query
          name: sort_by
          schema:
            type: string
      responses:
        '200':
          $ref: '#/components/responses/SEOSearchVolumeSuccess'
        '400':
          content:
            application/json:
              example:
                error:
                  code: INVALID_ARGUMENT
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: INVALID_ARGUMENT
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Correct the input; do not retry unchanged.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
        '401':
          content:
            application/json:
              example:
                error:
                  code: UNAUTHENTICATED
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: UNAUTHENTICATED
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Configure a valid API key; do not retry unchanged.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
        '502':
          content:
            application/json:
              example:
                error:
                  code: UPSTREAM_INVALID_RESPONSE
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: UPSTREAM_INVALID_RESPONSE
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Retry with backoff, then report temporary unavailability.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
        '503':
          content:
            application/json:
              example:
                error:
                  code: UPSTREAM_UNAVAILABLE
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: UPSTREAM_UNAVAILABLE
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Retry with backoff, then report temporary unavailability.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
        '504':
          content:
            application/json:
              example:
                error:
                  code: UPSTREAM_TIMEOUT
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: UPSTREAM_TIMEOUT
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Retry with backoff, then report temporary unavailability.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
components:
  responses:
    SEOSearchVolumeSuccess:
      content:
        application/json:
          example:
            items: []
          schema:
            $ref: '#/components/schemas/SEOSearchVolumeResult'
      description: Keyword demand estimates.
      headers:
        X-Request-Id:
          description: Gateway request identifier for support and audit.
          schema:
            format: uuid
            type: string
  schemas:
    SEOSearchVolumeResult:
      additionalProperties: false
      properties:
        items:
          items:
            additionalProperties: false
            properties:
              competition:
                type: string
              competition_index:
                type: integer
              cpc:
                type: number
              high_top_of_page_bid:
                type: number
              keyword:
                type: string
              low_top_of_page_bid:
                type: number
              search_volume:
                type: integer
            type: object
          type: array
      required:
        - items
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````