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

# Search feature requests semantically

> Dedupe-style search across the project's
`FEATURE_REQUEST` tickets. Uses OpenSearch fuzzy match + Voyage AI
rerank — returns the most semantically similar matches to the
`query` argument, not literal keyword hits. Use this before filing
a new feature request to avoid duplicates.

Returns `{ matches: [...] }` with at most 3 reranked matches (archived feature requests and hidden lanes
are excluded).



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /tickets/search-feature-requests
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /tickets/search-feature-requests:
    get:
      tags:
        - Ticket
      summary: Search feature requests semantically
      description: >-
        Dedupe-style search across the project's

        `FEATURE_REQUEST` tickets. Uses OpenSearch fuzzy match + Voyage AI

        rerank — returns the most semantically similar matches to the

        `query` argument, not literal keyword hits. Use this before filing

        a new feature request to avoid duplicates.


        Returns `{ matches: [...] }` with at most 3 reranked matches (archived
        feature requests and hidden lanes

        are excluded).
      operationId: SearchFeatureRequests
      parameters:
        - in: header
          name: project
          required: true
          schema:
            type: string
        - description: '- Required free-text description of the requested feature.'
          in: query
          name: query
          required: true
          schema:
            type: string
        - description: >-
            - Size of the candidate set retrieved before reranking (default:
            10). The reranked response is still capped at 3 matches unless
            `minScore=0` is passed.
          in: query
          name: limit
          required: false
          schema:
            type: number
            format: double
        - description: >-
            - Minimum rerank relevance score, 0-1 (default: 0.35). `0` disables
            reranking and returns up to `limit` candidates.
          in: query
          name: minScore
          required: false
          schema:
            type: number
            format: double
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema: {}
      security:
        - jwt: []
components:
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````