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

# Search Toolkits

> Search available toolkits by keywords. Returns both native and third-party integrations.



## OpenAPI

````yaml GET /proxy/tools/search
openapi: 3.1.0
info:
  title: Kylon Tools API
  description: >-
    Kylon Tools API for searching, authenticating, inspecting, executing,
    proxying, and uploading files for connected tools.
  version: 1.0.0
servers:
  - url: https://api.kylon.io
    description: Production
security:
  - apiKey: []
paths:
  /proxy/tools/search:
    get:
      tags:
        - Toolkits
      summary: Search toolkits
      description: >-
        Search available toolkits by keywords. Returns both native and
        third-party integrations.
      operationId: searchToolkits
      parameters:
        - name: keywords
          in: query
          required: true
          description: Search keywords matched against toolkit slug, name, and description.
          schema:
            type: string
        - name: limit
          in: query
          required: false
          description: Maximum number of results to return.
          schema:
            type: integer
        - name: cursor
          in: query
          required: false
          description: Pagination cursor from a previous response.
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  toolkits:
                    type: array
                    items:
                      $ref: '#/components/schemas/ToolkitSummary'
                  nextCursor:
                    type:
                      - string
                      - 'null'
                    description: Cursor for the next page of results.
                required:
                  - toolkits
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    ToolkitSummary:
      type: object
      properties:
        slug:
          type: string
          description: Toolkit identifier used in all endpoints.
        name:
          type: string
        description:
          type: string
        icon:
          type:
            - string
            - 'null'
          description: URL to the toolkit icon.
      required:
        - slug
        - name
        - description
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  responses:
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Unauthorized - invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Can also be passed as `Authorization: Bearer
        <token>`.

````