Skip to main content
GET
/
ratex
/
liquidity
/
markets
Liquidity Markets (ID Map)
curl --request GET \
  --url https://api.junkyard.cloud/ratex/liquidity/markets \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "liq_id": "xSOL-2601",
      "market_indicator": "XSOL"
    },
    {
      "liq_id": "bbSOL-2412",
      "market_indicator": "BBSOL"
    },
    {
      "liq_id": "sUSD-2506",
      "market_indicator": "SUSD"
    }
  ],
  "next_cursor": "sUSD-2506"
}

Note

  • Reference page: app.rate-x.io/liquidity
  • To retrive all the Loop markets, please exclude the name query parameter.
  • Pagination with cursor:
    • Use limit (1-100, default 50) to control page size.
    • Use next_cursor from the response in the cursor param to fetch the next page.
  • Cache (Scheduled): 24 hours
No API key is required by default.
You can make requests without an API key, but with lower rate limits.

For higher rate limits, get your free API key from our team.

Authorizations

x-api-key
string
header
required

Query Parameters

name
string

Optional name to perform fuzzy search (case-insensitive)

limit
integer
default:50

Number of results to return per page

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination (liq_id to start after)

Response

200 - application/json

Successfully fetched liquidity markets

data
object[]
required
next_cursor
string | null
required

Cursor for next page (null if no more results)