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

# List Content Gaps

> Paginated content-gap suggestions sorted by similarity score (lowest first
means biggest gaps).



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/public/content-gaps
openapi: 3.1.0
info:
  title: Hikoo REST API
  description: >-
    Programmatic access to your Hikoo data: citations, prompts, competitors,
    audits, health and more. Authenticate with a personal API key
    (`Authorization: Bearer <key>`) created from the dashboard settings.
  version: 1.0.0
servers:
  - url: https://api.tryhikoo.com
security:
  - apiKey: []
paths:
  /api/v1/public/content-gaps:
    get:
      tags:
        - Content gaps
      summary: List Content Gaps
      description: >-
        Paginated content-gap suggestions sorted by similarity score (lowest
        first

        means biggest gaps).
      operationId: list_content_gaps_api_v1_public_content_gaps_get
      parameters:
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/ContentGapStatus'
              - type: 'null'
            title: Status
        - name: min_score
          in: query
          required: false
          schema:
            anyOf:
              - type: number
                maximum: 1
                minimum: 0
              - type: 'null'
            title: Min Score
        - name: max_score
          in: query
          required: false
          schema:
            anyOf:
              - type: number
                maximum: 1
                minimum: 0
              - type: 'null'
            title: Max Score
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: website_id
          in: query
          required: true
          schema:
            type: integer
            description: Target website id
            title: Website Id
          description: Target website id
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Bearer <api_key>
            title: Authorization
          description: Bearer <api_key>
        - name: X-MCP-Secret
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Mcp-Secret
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContentGapListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ContentGapStatus:
      type: string
      enum:
        - NEW
        - REVIEWED
        - ACCEPTED
        - DISMISSED
        - WRITTEN
      title: ContentGapStatus
      description: Status of a content gap suggestion.
    ContentGapListResponse:
      properties:
        suggestions:
          items:
            $ref: '#/components/schemas/ContentGapSuggestionListItemSchema'
          type: array
          title: Suggestions
        total:
          type: integer
          title: Total
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
      type: object
      required:
        - suggestions
        - total
        - limit
        - offset
      title: ContentGapListResponse
      description: Paginated list of content gap suggestions.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ContentGapSuggestionListItemSchema:
      properties:
        id:
          type: integer
          title: Id
        suggested_topic:
          type: string
          title: Suggested Topic
        similarity_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Similarity Score
        status:
          $ref: '#/components/schemas/ContentGapStatus'
        content_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Content Type
        priority:
          anyOf:
            - type: string
            - type: 'null'
          title: Priority
        closest_page:
          anyOf:
            - $ref: '#/components/schemas/ClosestPageSchema'
            - type: 'null'
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - suggested_topic
        - similarity_score
        - status
        - closest_page
        - created_at
      title: ContentGapSuggestionListItemSchema
      description: List item for content gap suggestions.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    ClosestPageSchema:
      properties:
        id:
          type: integer
          title: Id
        url:
          type: string
          title: Url
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
      type: object
      required:
        - id
        - url
        - title
      title: ClosestPageSchema
      description: Schema for the closest matching client page.
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: Personal API key created in the dashboard (Settings > API keys).

````