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

# トークンのmintでプールを取得

> 1つまたは2つのトークンのmintでプールをフィルタリングします。mint の順序は内部で正規化されます。60秒キャッシュ。



## OpenAPI

````yaml /ja/api-reference/openapi/api-v3.yaml get /pools/info/mint
openapi: 3.0.3
info:
  title: Raydium API v3
  version: 3.0.0
  description: >-
    Raydium API v3 は、Solana ブロックチェーン上のリクイディティプール・ミント情報・ファーム詳細・IDO
    プール・チェーンメタデータを照会するための REST
    エンドポイントを提供します。ウォレット・アグリゲーター・トレーダーが価格フィード・プールデータ・ルーティング情報を取得する際に使用します。
servers:
  - url: https://api-v3.raydium.io
    description: 本番環境（Mainnet）
  - url: https://api-v3-devnet.raydium.io
    description: 開発環境（Devnet）
security: []
tags:
  - name: Main
    description: チェーン情報・TVL・設定に関するコア API エンドポイント
  - name: Mint
    description: トークンのミント情報と価格
  - name: Pools
    description: リクイディティプールの情報・キー・履歴データ
  - name: Farms
    description: ファームプールの情報とキー
  - name: IDO
    description: IDO プールの情報とキー
paths:
  /pools/info/mint:
    get:
      tags:
        - Pools
      summary: トークンのmintでプールを取得
      description: 1つまたは2つのトークンのmintでプールをフィルタリングします。mint の順序は内部で正規化されます。60秒キャッシュ。
      operationId: getPoolsInfoMint
      parameters:
        - name: mint1
          in: query
          required: true
          schema:
            type: string
        - name: mint2
          in: query
          required: false
          schema:
            type: string
        - 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'
components:
  schemas:
    ApiResponse:
      type: object
      description: >-
        共通レスポンスエンベロープ。`data` フィールドは各エンドポイントのレスポーススキーマが `allOf`
        を通じて提供するため、ベースエンベロープ上では宣言されません。
      required:
        - id
        - success
      properties:
        id:
          type: string
          description: リクエスト ID（UUID）
        success:
          type: boolean
          description: リクエストが成功したかどうか
        msg:
          type: string
          description: success が false の場合のエラーメッセージ
    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

````