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

# Add Pool

> Add a custom liquidity pool.

Args:
    pool_request: Pool details (connector, type, network, base, quote, address)



## OpenAPI

````yaml /api-reference/openapi.json post /gateway/pools
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /gateway/pools:
    post:
      tags:
        - Gateway
      summary: Add Pool
      description: |-
        Add a custom liquidity pool.

        Args:
            pool_request: Pool details (connector, type, network, base, quote, address)
      operationId: add_pool_gateway_pools_post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddPoolRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Add Pool Gateway Pools Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    AddPoolRequest:
      properties:
        connector_name:
          type: string
          title: Connector Name
          description: DEX connector name (e.g., 'raydium', 'meteora')
        type:
          type: string
          title: Type
          description: Pool type ('clmm' or 'amm')
        network:
          type: string
          title: Network
          description: Network name (e.g., 'mainnet-beta')
        address:
          type: string
          title: Address
          description: Pool contract address
        base:
          type: string
          title: Base
          description: Base token symbol
        quote:
          type: string
          title: Quote
          description: Quote token symbol
        base_address:
          type: string
          title: Base Address
          description: Base token contract address
        quote_address:
          type: string
          title: Quote Address
          description: Quote token contract address
        fee_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Fee Pct
          description: Pool fee percentage (e.g., 0.25)
      type: object
      required:
        - connector_name
        - type
        - network
        - address
        - base
        - quote
        - base_address
        - quote_address
      title: AddPoolRequest
      description: Request to add a liquidity pool
    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
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````