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

# Get Available Swarm Types

> Retrieve all available swarm types supported by the Swarms API.



## OpenAPI

````yaml https://api.swarms.world/openapi.json get /v1/swarms/available
openapi: 3.1.0
info:
  title: Swarms API
  description: >-
    The Swarms API delivers a high-performance, enterprise-grade platform for
    orchestrating advanced multi-agent systems. Built on a Rust-powered agent
    runtime, it enables scalable, robust, and secure agent collaboration,
    supporting complex workflows and dynamic agent communication. The API
    exposes a comprehensive suite of RESTful endpoints for the management,
    execution, and monitoring of agents, swarms, and related resources,
    empowering organizations to automate and optimize mission-critical
    processes. To access the API, obtain your API key from the [Swarms API Keys
    page](https://swarms.world/platform/api-keys). For detailed integration
    guides, best practices, and reference material, consult the [Swarms API
    Documentation](https://docs.swarms.ai).
  version: 1.0.0
servers:
  - url: https://api.swarms.world
    description: Swarms Production API
security: []
paths:
  /v1/swarms/available:
    get:
      tags:
        - Swarms
      summary: Get Available Swarm Types
      description: Retrieve all available swarm types supported by the Swarms API.
      operationId: check_swarm_types_v1_swarms_available_get
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
            title: X-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SwarmTypesOutput'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SwarmTypesOutput:
      properties:
        status:
          type: boolean
          title: Status
          description: Indicates whether fetching swarm types was successful.
          default: true
        timestamp:
          type: string
          title: Timestamp
          description: The ISO formatted timestamp when this response was generated.
          default: '2026-07-13T22:00:23.479964'
        swarm_types:
          items:
            type: string
          type: array
          title: Swarm Types
          description: A list of supported swarm type names.
          default:
            - AgentRearrange
            - MixtureOfAgents
            - SequentialWorkflow
            - ConcurrentWorkflow
            - GroupChat
            - MultiAgentRouter
            - AutoSwarmBuilder
            - HierarchicalSwarm
            - auto
            - MajorityVoting
            - CouncilAsAJudge
            - HeavySwarm
            - BatchedGridWorkflow
            - LLMCouncil
            - DebateWithJudge
            - RoundRobin
            - PlannerWorkerSwarm
      type: object
      title: SwarmTypesOutput
      description: |-
        Response model for supported swarm types.

        Attributes:
            status (bool): Indicates success of the operation.
            timestamp (str): The ISO formatted timestamp of the response.
            swarm_types (List[str]): A list of available swarm type names.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````