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

# Get detailed information for a specific pool

> Retrieve token info, liquidity visualization, and pool data for a specific pool



## OpenAPI

````yaml /api-reference/openapi.json get /pools/{poolId}/info
openapi: 3.0.0
info:
  title: LP Agent Open API
  version: 1.0.0
  description: |+
    Public API for LP Agent

    **Authentication**

    All endpoints require an API key passed via the `x-api-key` header.

servers:
  - url: https://api.lpagent.io/open-api/v1
    description: Production
security:
  - apiKeyAuth: []
tags: []
paths:
  /pools/{poolId}/info:
    get:
      tags:
        - Pools
      summary: Get detailed information for a specific pool
      description: >-
        Retrieve token info, liquidity visualization, and pool data for a
        specific pool
      parameters:
        - in: path
          name: poolId
          required: true
          schema:
            type: string
          description: The pool address
          example: 7d51qGEeAKiPakkxLoHda9egShXQLJcjFYpHEcX4d3EM
      responses:
        '200':
          description: Successfully retrieved pool info
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  data:
                    type: object
                    properties:
                      type:
                        type: string
                        description: Pool protocol type
                        enum:
                          - meteora
                          - meteora_damm_v2
                        example: meteora
                      tokenInfo:
                        type: array
                        description: Tuple of two token info results [tokenX, tokenY]
                        items:
                          type: object
                          properties:
                            status:
                              type: string
                              example: success
                            data:
                              type: array
                              items:
                                type: object
                                properties:
                                  id:
                                    type: string
                                  name:
                                    type: string
                                  symbol:
                                    type: string
                                  icon:
                                    type: string
                                  decimals:
                                    type: number
                                  mcap:
                                    type: number
                                  fdv:
                                    type: number
                                  usdPrice:
                                    type: number
                                  organicScore:
                                    type: number
                                  holderCount:
                                    type: number
                      poolStats:
                        type: object
                        nullable: true
                        description: Pool stats from database (tvl, fee, volumes, etc.)
                      poolState:
                        type: object
                        description: Raw on-chain pool state
                      poolDb:
                        type: object
                        nullable: true
                        description: Pool data from database
                      amountX:
                        type: number
                        description: TVL of token X
                        example: 1500.25
                      amountY:
                        type: number
                        description: TVL of token Y
                        example: 50000
                      feeInfo:
                        type: object
                        description: Fee configuration
                        properties:
                          baseFeeRatePercentage:
                            type: number
                          maxFeeRatePercentage:
                            type: number
                          protocolFeePercentage:
                            type: number
                          dynamicFee:
                            type: number
                      feeStats:
                        type: array
                        description: Hourly fee stats for the last 7 days
                        items:
                          type: object
                      liquidityViz:
                        type: object
                        description: Liquidity visualization data (DLMM pools only)
                        properties:
                          activeBin:
                            type: object
                            properties:
                              binId:
                                type: integer
                              price:
                                type: string
                              pricePerToken:
                                type: string
                          bins:
                            type: array
                            items:
                              type: object
                              properties:
                                binId:
                                  type: integer
                                xAmount:
                                  type: number
                                yAmount:
                                  type: number
                                price:
                                  type: string
                                pricePerToken:
                                  type: string
        '500':
          description: Internal server error
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication

````