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

# Multi search

> Perform multiple searches across different collections



## OpenAPI

````yaml post /v1/search/multi
openapi: 3.0.0
info:
  title: Thena Platform
  description: The Thena Platform API description
  version: 1.0.0
  contact: {}
servers:
  - url: https://platform.thena.ai
    description: Platform
  - url: http://localhost:8000
    description: Local
security:
  - ApiKey: []
tags: []
paths:
  /v1/search/multi:
    post:
      tags:
        - Search
      summary: Multi search
      description: Perform multiple searches across different collections
      operationId: SearchController_multiSearch
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ThenaMultiSearchDto'
      responses:
        '201':
          description: ''
components:
  schemas:
    ThenaMultiSearchDto:
      type: object
      properties:
        searches:
          description: Array of search objects for federated search
          type: array
          items:
            $ref: '#/components/schemas/TypesenseMultiSearchItemDto'
      required:
        - searches
    TypesenseMultiSearchItemDto:
      type: object
      properties:
        collection:
          type: string
          description: The collection to search
          enum:
            - tickets
            - comments
            - accounts
            - customer_contacts
            - help_center
            - users
            - organization
            - teams
        q:
          type: string
          description: The search query
        query_by:
          type: string
          description: Fields to query by
      required:
        - collection
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````