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

# Suggest keywords via metadata, search or similar



## OpenAPI

````yaml /api-reference/openapi.json get /apps/{id}/keywords/suggestions
openapi: 3.0.0
info:
  title: asobeast API
  description: Self hosted ASO toolkit API
  version: 0.4.0
  contact: {}
servers:
  - url: http://localhost:3000/api/backend
    description: Web origin proxy
  - url: http://localhost:4000
    description: Direct API
security:
  - personalApiToken: []
tags: []
paths:
  /apps/{id}/keywords/suggestions:
    get:
      tags:
        - keywords
      summary: Suggest keywords via metadata, search or similar
      operationId: KeywordsController_suggestions
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: strategy
          required: false
          in: query
          schema:
            default: metadata
            type: string
            enum:
              - metadata
              - search
              - similar
              - developer
              - competitors
              - seasonal
              - reviews
        - name: country
          required: false
          in: query
          schema:
            type: string
            pattern: ^[a-z]{2}$
            example: pl
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 100
            default: 30
            allOf:
              - $ref: '#/components/schemas/Object'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
components:
  schemas:
    Object:
      type: object
      properties: {}
  securitySchemes:
    personalApiToken:
      scheme: bearer
      bearerFormat: asob
      type: http

````