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

# LP mintでファームを取得

> LPトークンのステークアドレスでファームを検索します。ページネーション対応。60秒キャッシュ。



## OpenAPI

````yaml /ja/api-reference/openapi/api-v3.yaml get /farms/info/lp
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:
  /farms/info/lp:
    get:
      tags:
        - Farms
      summary: LP mintでファームを取得
      description: LPトークンのステークアドレスでファームを検索します。ページネーション対応。60秒キャッシュ。
      operationId: getFarmsInfoLp
      parameters:
        - name: lp
          in: query
          required: true
          schema:
            type: string
        - name: pageSize
          in: query
          required: true
          schema:
            type: integer
            minimum: 1
            maximum: 100
        - 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/FarmListResponse'
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 の場合のエラーメッセージ
    FarmListResponse:
      type: object
      properties:
        count:
          type: number
        data:
          type: array
          items:
            $ref: '#/components/schemas/FarmInfoItem'
        hasNextPage:
          type: boolean
    FarmInfoItem:
      type: object
      properties:
        id:
          type: string
        lpMint:
          type: string
        rewardMints:
          type: array
          items:
            type: string
        apr:
          type: number

````