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

# 分页列出流动性池

> **旧版端点。** 获取带过滤和排序的分页流动性池列表。缓存 60 秒，pageSize 上限为 1000。该端点保留以兼容现有集成；新集成建议通过其他 `/pools/info/*` 端点按 ID、mint 对或 LP mint 查询流动性池，或使用 Transaction API 中基于索引器的路由接口。



## OpenAPI

````yaml /zh/api-reference/openapi/api-v3.yaml get /pools/info/list
openapi: 3.0.3
info:
  title: Raydium API v3
  version: 3.0.0
  description: >-
    Raydium API v3 提供 REST 接口，用于查询 Solana 区块链上的流动性池、mint 信息、Farm 详情、IDO
    池及链上元数据。钱包、聚合器和交易者可通过其获取价格数据、池数据及路由信息。
servers:
  - url: https://api-v3.raydium.io
    description: 生产环境（主网）
  - url: https://api-v3-devnet.raydium.io
    description: 开发环境（Devnet）
security: []
tags:
  - name: Main
    description: 链信息、TVL 及配置的核心 API 接口
  - name: Mint
    description: Token mint 信息与定价
  - name: Pools
    description: 流动性池信息、密钥及历史数据
  - name: Farms
    description: Farm 池信息与密钥
  - name: IDO
    description: IDO 池信息与密钥
paths:
  /pools/info/list:
    get:
      tags:
        - Pools
      summary: 分页列出流动性池
      description: >-
        **旧版端点。** 获取带过滤和排序的分页流动性池列表。缓存 60 秒，pageSize 上限为
        1000。该端点保留以兼容现有集成；新集成建议通过其他 `/pools/info/*` 端点按 ID、mint 对或 LP mint
        查询流动性池，或使用 Transaction API 中基于索引器的路由接口。
      operationId: getPoolsInfoList
      parameters:
        - name: poolType
          in: query
          required: true
          schema:
            type: string
            enum:
              - all
              - concentrated
              - standard
              - allFarm
              - concentratedFarm
              - standardFarm
        - name: poolSortField
          in: query
          required: true
          schema:
            type: string
            enum:
              - default
              - liquidity
              - volume24h
              - fee24h
              - apr24h
              - volume7d
              - fee7d
              - apr7d
              - volume30d
              - fee30d
              - apr30d
        - name: sortType
          in: query
          required: true
          schema:
            type: string
            enum:
              - desc
              - asc
        - name: pageSize
          in: query
          required: true
          schema:
            type: integer
            minimum: 1
            maximum: 1000
        - name: page
          in: query
          required: true
          schema:
            type: integer
            minimum: 1
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiResponse'
                  - type: object
                    properties:
                      data:
                        $ref: '#/components/schemas/PoolListResponse'
      deprecated: true
components:
  schemas:
    ApiResponse:
      type: object
      description: 通用响应封装。`data` 字段由各接口的响应 schema 通过 `allOf` 提供，因此未在基础封装中声明。
      required:
        - id
        - success
      properties:
        id:
          type: string
          description: 请求 ID（UUID）
        success:
          type: boolean
          description: 请求是否成功
        msg:
          type: string
          description: 失败时的错误信息
    PoolListResponse:
      type: object
      properties:
        count:
          type: number
        data:
          type: array
          items:
            $ref: '#/components/schemas/PoolInfoItem'
        hasNextPage:
          type: boolean
    PoolInfoItem:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
        programId:
          type: string
        lpMint:
          type: string
        mint1:
          type: object
        mint2:
          type: object
        tvl:
          type: number
        lpPrice:
          type: number
        farmOngoingCount:
          type: number
        day:
          type: object
        week:
          type: object
        month:
          type: object

````