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

# Get Quicklinks by Terms

> Returns quicklinks whose trigger terms match `searchword` for the given engine.



## OpenAPI

````yaml /openapi/search-tools.json get /api/engine/{engineId}/quicklinkterms
openapi: 3.1.0
info:
  title: Cludo Search Tools API
  version: 4.0.0
  description: >-
    Manage search experience tools: banners, rankings, quicklinks, and synonym
    groups for Cludo search engines.
servers:
  - url: https://api.cludo.com
    description: EU region (Customer IDs below 10,000,000)
  - url: https://api-us1.cludo.com
    description: US region (Customer IDs 10,000,000 and above)
security:
  - BasicAuth: []
paths:
  /api/engine/{engineId}/quicklinkterms:
    get:
      summary: Get Quicklinks by Terms
      description: >-
        Returns quicklinks whose trigger terms match `searchword` for the given
        engine.
      operationId: getQuicklinkTerms
      parameters:
        - $ref: '#/components/parameters/engineId'
        - $ref: '#/components/parameters/searchword'
      responses:
        '200':
          description: Quicklink terms matching the search word.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/QuicklinkTerm'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: >-
            `searchword` was not provided. ASP.NET could not resolve the action
            and returned a generic routing error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  Message:
                    type: string
              example:
                Message: >-
                  No HTTP resource was found that matches the request URI
                  'http://api.cludo.com/api/engine/15205/quicklinkterms'.
        '500':
          $ref: '#/components/responses/InternalServerError'
      security:
        - BasicAuth: []
components:
  parameters:
    engineId:
      name: engineId
      in: path
      required: true
      description: Search engine whose banners, rankings, or quicklinks you are managing.
      schema:
        type: integer
    searchword:
      name: searchword
      in: query
      required: true
      description: Term to search for among quicklink terms.
      schema:
        type: string
  schemas:
    QuicklinkTerm:
      type: object
      required:
        - name
      additionalProperties: false
      properties:
        name:
          type: string
          description: >-
            Synonym or shortcut text that should suggest this quicklink (e.g.
            “contact”, “phone”).
    UnauthorizedError:
      type: object
      description: Returned when authentication fails.
      properties:
        message:
          type: string
          description: Authentication failure reason.
    ServerError:
      type: object
      description: Returned when an unexpected server error occurs.
      properties:
        status:
          type: string
          description: HTTP status name.
        code:
          type: integer
          description: HTTP status code.
        messages:
          type: array
          items:
            type: string
          description: Error details, usually including a support reference id.
  responses:
    Unauthorized:
      description: >-
        Authentication failed. The Authorization header is missing or contains
        invalid credentials.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/UnauthorizedError'
          example:
            message: unauthorized
    InternalServerError:
      description: >-
        An unexpected server error occurred. If this persists, contact
        support@cludo.com.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ServerError'
          example:
            status: InternalServerError
            code: 500
            messages:
              - >-
                Error occur. Please contact support with error ID:
                a1b2c3d4-e5f6-7890-abcd-ef1234567890
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: >-
        Basic authentication. Use your Customer ID as the username and API Key
        as the password. Example header: `Authorization: Basic
        MTIzNDU2NzpteS1hcGkta2V5`.

````