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

# Suggest Keywords

> Get AI-powered keyword suggestions based on your website or brand description.

Let AI analyze your website or brand description and suggest high-value keywords for your SEO strategy. Great for discovering keywords you might not have thought of.

<Tip>
  Use these suggested keywords as seeds for the [Keyword Research](/docs/api-reference/endpoints/keyword-research) endpoint to get detailed volume and competition data.
</Tip>


## OpenAPI

````yaml GET /v3/keywords/suggest-keywords
openapi: 3.0.0
info:
  title: SnowSEO API
  description: API documentation for SnowSEO
  version: 1.0.0
servers:
  - url: https://api.snowseo.com
    description: Production server
security: []
tags:
  - name: Keywords
    description: Keyword research and suggestion end-points
  - name: Onboarding
    description: Brand onboarding and strategy end-points
  - name: Brands
    description: Brand management end-points
  - name: Organizations
    description: Organization and member end-points
  - name: Integrations
    description: Google Search Console and other integrations
  - name: Utilities
    description: Common utility end-points like screenshots and uploads
externalDocs:
  url: https://snowseo.com/docs
  description: Find more info here
paths:
  /v3/keywords/suggest-keywords:
    get:
      tags:
        - keywords
      summary: AI-powered keyword suggestions
      description: >-
        Generates 10 high-value SEO keywords for a brand. If `description` is
        not supplied, the route crawls the website for context.
      parameters:
        - schema:
            type: string
          in: query
          name: teamId
          required: false
          description: Team ID
        - schema:
            type: string
            format: uri
          in: query
          name: website
          required: true
          description: Brand website URL (used for context crawl if no description given)
        - schema:
            type: string
          in: query
          name: description
          required: false
          description: Brand description that replaces a crawl when provided
        - schema:
            anyOf:
              - type: string
              - type: array
                items:
                  type: string
          in: query
          name: targetAudience
          required: false
          description: Target audience segments
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - keywords
                properties:
                  keywords:
                    type: array
                    items:
                      type: string
                    description: Suggested SEO keyword list (max 10 items)
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string

````