> ## 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.

# Keywords for Site

> Generate keyword ideas from a website topic.

# Keywords for Site

```json theme={"system"}
{
  "target": "microsoft.com",
  "location_code": 2840,
  "language_code": "en",
  "results_limit": 5
}
```

Each item is one website-relevant keyword record with available volume, competition, CPC, and trend metrics.


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/seo/keywords-for-site
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/keywords-for-site:
    post:
      tags:
        - seo
      summary: Keywords For Site API
      description: Generate keywords relevant to a website.
      operationId: socq_seo_keywords_for_site
      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
                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.
                results_limit:
                  type: integer
                  minimum: 1
                  maximum: 1000
                  default: 100
                target:
                  type: string
                  minLength: 1
                  description: Domain, subdomain, or page URL.
              required:
                - target
      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

````