> ## 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.

# Delete Pool

> Delete a liquidity pool from Gateway's pool list.

Args:
    address: Pool contract address to remove
    connector_name: DEX connector (e.g., 'meteora', 'raydium', 'uniswap')
    network: Network name (e.g., 'mainnet-beta', 'mainnet')
    pool_type: Pool type (e.g., 'clmm', 'amm')

Example: DELETE /gateway/pools/2sf5NYcY...?connector_name=meteora&network=mainnet-beta&pool_type=clmm



## OpenAPI

````yaml /api-reference/openapi.json delete /gateway/pools/{address}
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/{address}:
    delete:
      tags:
        - Gateway
      summary: Delete Pool
      description: >-
        Delete a liquidity pool from Gateway's pool list.


        Args:
            address: Pool contract address to remove
            connector_name: DEX connector (e.g., 'meteora', 'raydium', 'uniswap')
            network: Network name (e.g., 'mainnet-beta', 'mainnet')
            pool_type: Pool type (e.g., 'clmm', 'amm')

        Example: DELETE
        /gateway/pools/2sf5NYcY...?connector_name=meteora&network=mainnet-beta&pool_type=clmm
      operationId: delete_pool_gateway_pools__address__delete
      parameters:
        - name: address
          in: path
          required: true
          schema:
            type: string
            title: Address
        - name: connector_name
          in: query
          required: true
          schema:
            type: string
            description: DEX connector (e.g., 'meteora', 'raydium', 'uniswap')
            title: Connector Name
          description: DEX connector (e.g., 'meteora', 'raydium', 'uniswap')
        - name: network
          in: query
          required: true
          schema:
            type: string
            description: Network name (e.g., 'mainnet-beta', 'mainnet')
            title: Network
          description: Network name (e.g., 'mainnet-beta', 'mainnet')
        - name: pool_type
          in: query
          required: true
          schema:
            type: string
            description: Pool type (e.g., 'clmm', 'amm')
            title: Pool Type
          description: Pool type (e.g., 'clmm', 'amm')
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Delete Pool Gateway Pools  Address  Delete
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    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

````