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

# Get Amm Positions Owned

> List all of a wallet's AMM positions across pools (Meteora DAMM v2 only).

Fungible-LP AMMs (raydium, uniswap, pancakeswap) have no enumerable positions; Gateway rejects
them with a 400, surfaced here unchanged. Use position-info with a specific pool address instead.



## OpenAPI

````yaml /api-reference/openapi.json post /gateway/amm/positions-owned
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/positions-owned:
    post:
      tags:
        - Gateway AMM
      summary: Get Amm Positions Owned
      description: >-
        List all of a wallet's AMM positions across pools (Meteora DAMM v2
        only).


        Fungible-LP AMMs (raydium, uniswap, pancakeswap) have no enumerable
        positions; Gateway rejects

        them with a 400, surfaced here unchanged. Use position-info with a
        specific pool address instead.
      operationId: get_amm_positions_owned_gateway_amm_positions_owned_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AMMPositionsOwnedRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/AMMPositionInfoResponse'
                type: array
                title: >-
                  Response Get Amm Positions Owned Gateway Amm Positions Owned
                  Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    AMMPositionsOwnedRequest:
      properties:
        connector:
          type: string
          title: Connector
          description: AMM connector (meteora only; fungible-LP AMMs rejected)
        network:
          type: string
          title: Network
          description: Network ID in 'chain-network' format (e.g., 'solana-mainnet-beta')
        wallet_address:
          anyOf:
            - type: string
            - type: 'null'
          title: Wallet Address
          description: Wallet address (optional, uses default)
      type: object
      required:
        - connector
        - network
      title: AMMPositionsOwnedRequest
      description: >-
        Request to list all of a wallet's AMM positions across pools (Meteora
        only).
    AMMPositionInfoResponse:
      properties:
        poolAddress:
          type: string
          title: Pooladdress
          description: Pool address
        walletAddress:
          type: string
          title: Walletaddress
          description: Wallet address
        baseTokenAddress:
          type: string
          title: Basetokenaddress
          description: Base token contract address
        quoteTokenAddress:
          type: string
          title: Quotetokenaddress
          description: Quote token contract address
        lpTokenAmount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Lptokenamount
          description: Aggregate LP units across positions
        baseTokenAmount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Basetokenamount
          description: Aggregate base token amount
        quoteTokenAmount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Quotetokenamount
          description: Aggregate quote token amount
        price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Price
          description: Current pool price (quote per base)
        positions:
          anyOf:
            - items:
                $ref: '#/components/schemas/AMMPositionDetail'
              type: array
            - type: 'null'
          title: Positions
          description: Per-NFT position breakdown
      type: object
      required:
        - poolAddress
        - walletAddress
        - baseTokenAddress
        - quoteTokenAddress
        - lpTokenAmount
        - baseTokenAmount
        - quoteTokenAmount
        - price
      title: AMMPositionInfoResponse
      description: >-
        Wallet's aggregate liquidity in an AMM pool, plus a per-position
        breakdown (DAMM v2).
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AMMPositionDetail:
      properties:
        positionAddress:
          type: string
          title: Positionaddress
          description: Individual position (NFT) address
        lpTokenAmount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Lptokenamount
          description: Liquidity held by this position (LP units)
        baseTokenAmount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Basetokenamount
          description: Base token amount in this position
        quoteTokenAmount:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Quotetokenamount
          description: Quote token amount in this position
      type: object
      required:
        - positionAddress
        - lpTokenAmount
        - baseTokenAmount
        - quoteTokenAmount
      title: AMMPositionDetail
      description: >-
        Per-position breakdown entry (one NFT position). Non-fungible-LP AMMs
        only.
    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

````