跳转到主要内容
GET
/
farms
/
info
/
lp
根据 LP mint 获取农场
curl --request GET \
  --url https://api-v3.raydium.io/farms/info/lp
{
  "id": "<string>",
  "success": true,
  "msg": "<string>",
  "data": {
    "count": 123,
    "data": [
      {
        "id": "<string>",
        "lpMint": "<string>",
        "rewardMints": [
          "<string>"
        ],
        "apr": 123
      }
    ],
    "hasNextPage": true
  }
}

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
string
必填
pageSize
integer
必填
必填范围: 1 <= x <= 100
page
integer
必填
必填范围: x >= 1

响应

200 - application/json

Success

通用响应封装。data 字段由各接口的响应 schema 通过 allOf 提供,因此未在基础封装中声明。

id
string
必填

请求 ID(UUID)

success
boolean
必填

请求是否成功

msg
string

失败时的错误信息

data
object