Skip to main content
GET
/
pools
/
info
/
mint
Get pools by token mint
curl --request GET \
  --url https://api-v3.raydium.io/pools/info/mint
{
  "id": "<string>",
  "success": true,
  "msg": "<string>",
  "data": {
    "count": 123,
    "data": [
      {
        "id": "<string>",
        "type": "<string>",
        "programId": "<string>",
        "lpMint": "<string>",
        "mint1": {},
        "mint2": {},
        "tvl": 123,
        "lpPrice": 123,
        "farmOngoingCount": 123,
        "day": {},
        "week": {},
        "month": {}
      }
    ],
    "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.

Query Parameters

mint1
string
required
mint2
string
poolType
enum<string>
required
Available options:
all,
concentrated,
standard,
allFarm,
concentratedFarm,
standardFarm
poolSortField
enum<string>
required
Available options:
default,
liquidity,
volume24h,
fee24h,
apr24h,
volume7d,
fee7d,
apr7d,
volume30d,
fee30d,
apr30d
sortType
enum<string>
required
Available options:
desc,
asc
pageSize
integer
required
Required range: 1 <= x <= 1000
page
integer
required
Required range: x >= 1

Response

200 - application/json

Success

Common response envelope. The data field is supplied by each endpoint's response schema via allOf and is therefore not declared on the base envelope.

id
string
required

Request ID (UUID)

success
boolean
required

Whether the request was successful

msg
string

Error message if success is false

data
object