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

# Google Organic SERP

> Retrieve live Google organic search results.

# Google Organic SERP

```json theme={"system"}
{"query":"keyword research","location_code":2840,"language_code":"en","device":"desktop","results_limit":10}
```

Each item is one search-result element with its URL, title, rank, and available enriched fields.


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/seo/google-organic-serp
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-c8347f9103e7
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/seo/google-organic-serp:
    post:
      tags:
        - seo
      summary: Google Organic SERP API
      description: Retrieve live organic search results.
      operationId: socq_seo_google_organic_serp
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                callback_url:
                  type: string
                  format: uri
                device:
                  type: string
                  enum:
                    - desktop
                    - mobile
                language:
                  type: string
                  minLength: 1
                language_code:
                  type: string
                  minLength: 2
                  maxLength: 10
                location_code:
                  type: integer
                  minimum: 1
                  description: Search market location code.
                location_name:
                  type: string
                  minLength: 1
                  description: Search market location name.
                query:
                  type: string
                  minLength: 1
                  description: Search query.
                results_limit:
                  type: integer
                  minimum: 1
                  maximum: 700
                  default: 10
              required:
                - query
      responses:
        '200':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentSubmitResponse'
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  schemas:
    AgentSubmitResponse:
      type: object
      properties:
        code:
          type: integer
          const: 200
        data:
          type: object
          properties:
            task_id:
              type: string
            status:
              type: string
            created_time:
              type:
                - string
                - 'null'
            idempotent_replay:
              type: boolean
          required:
            - task_id
            - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````