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

# Create Amm Pool

> Create and seed a new AMM pool.

Seed price priority: initial_price → quote_token_amount ratio → live market price (anti-snipe).
Connector-specific params ride extra_params under Gateway's own names (configAddress for
meteora — required there, ammConfigIndex for raydium) — the same contract as clmm open's
extra_params. Seeding slippage for uniswap/pancakeswap is the standard slippage_pct field.



## OpenAPI

````yaml /api-reference/openapi.json post /gateway/amm/create-pool
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/amm/create-pool:
    post:
      tags:
        - Gateway AMM
      summary: Create Amm Pool
      description: >-
        Create and seed a new AMM pool.


        Seed price priority: initial_price → quote_token_amount ratio → live
        market price (anti-snipe).

        Connector-specific params ride extra_params under Gateway's own names
        (configAddress for

        meteora — required there, ammConfigIndex for raydium) — the same
        contract as clmm open's

        extra_params. Seeding slippage for uniswap/pancakeswap is the standard
        slippage_pct field.
      operationId: create_amm_pool_gateway_amm_create_pool_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AMMCreatePoolRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AMMCreatePoolResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    AMMCreatePoolRequest:
      properties:
        connector:
          type: string
          title: Connector
          description: AMM connector (e.g., 'meteora', 'raydium', 'uniswap')
        network:
          type: string
          title: Network
          description: Network ID in 'chain-network' format (e.g., 'solana-mainnet-beta')
        base_token:
          type: string
          title: Base Token
          description: Base token symbol or address (becomes the pool base)
        quote_token:
          type: string
          title: Quote Token
          description: Quote token symbol or address (becomes the pool quote)
        base_token_amount:
          anyOf:
            - type: number
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Base Token Amount
          description: Amount of base token to seed the pool with
        quote_token_amount:
          anyOf:
            - type: number
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Quote Token Amount
          description: Amount of quote to seed (sets price if given)
        initial_price:
          anyOf:
            - type: number
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Initial Price
          description: Initial price (quote per base); overrides quote amount
        slippage_pct:
          anyOf:
            - type: number
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Slippage Pct
          description: >-
            Seeding slippage percentage (uniswap/pancakeswap only); omit to use
            the connector's configured slippagePct
        wallet_address:
          anyOf:
            - type: string
            - type: 'null'
          title: Wallet Address
          description: Wallet address (optional, uses default)
        extra_params:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Extra Params
          description: >-
            Connector-specific create params, passed through to Gateway under
            its own names: configAddress (meteora DAMM v2, required there),
            ammConfigIndex (raydium CPMM). Unknown keys are rejected.
      type: object
      required:
        - connector
        - network
        - base_token
        - quote_token
        - base_token_amount
      title: AMMCreatePoolRequest
      description: Request to create and seed a new AMM pool.
    AMMCreatePoolResponse:
      properties:
        signature:
          type: string
          title: Signature
          description: Transaction signature (Solana) or transaction hash (EVM)
        status:
          type: string
          title: Status
          description: >-
            Transaction status: SUBMITTED, CONFIRMED or FAILED. Mapped from
            Gateway's TransactionStatus enum by the same helper the swap and
            CLMM surfaces use, so one vocabulary spans all three.
        poolAddress:
          type: string
          title: Pooladdress
          description: Address of the newly created pool
        price:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Price
          description: Initial price the pool was seeded at (quote per base)
        data:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Data
          description: Connector-specific confirmed-tx details
      type: object
      required:
        - signature
        - status
        - poolAddress
      title: AMMCreatePoolResponse
      description: Response after creating an AMM 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

````