Skip to main content
GET
/
markets
/
search
Search markets
curl --request GET \
  --url https://api.circular.rosetta.sh/api/v1/markets/search \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "uniqueKey": "<string>",
      "protocol": "morpho",
      "chainId": 123,
      "label": "<string>",
      "collateral": "<string>",
      "loan": "<string>",
      "collateralAddress": "<string>",
      "loanAddress": "<string>",
      "collateralPrice": 123,
      "loanPrice": 123,
      "supply": 123,
      "borrow": 123,
      "available": 123,
      "utilization": 123,
      "supplyApy": 123,
      "borrowApy": 123,
      "supplyRewardsApy": 123,
      "borrowRewardsApy": 123,
      "rewardTokens": [
        "<string>"
      ],
      "lltv": 123,
      "maxLeverage": 123,
      "strategyType": "<string>",
      "strategyInfo": {
        "type": "<string>",
        "label": "<string>",
        "description": "<string>",
        "riskLevel": "low",
        "color": "<string>",
        "icon": "<string>"
      },
      "vaultSymbol": "<string>",
      "vaultAddress": "<string>",
      "governor": "<string>",
      "oracle": {
        "address": "<string>",
        "type": "ChainlinkOracle",
        "provider": "Chainlink",
        "feeds": [
          {
            "address": "<string>",
            "description": "<string>",
            "pair": "<string>"
          }
        ],
        "isComposite": true,
        "warnings": [
          "<string>"
        ]
      },
      "oracleHealth": {
        "lastUpdateTimestamp": 123,
        "secondsSinceUpdate": 123,
        "expectedHeartbeatSeconds": 123,
        "isStale": true,
        "stalenessRatio": 123
      }
    }
  ],
  "meta": {
    "latencyMs": 123,
    "freshness": "<string>",
    "source": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key in format circ_live_* or circ_test_*

Query Parameters

query
string
required

Search query

limit
integer
default:50

Maximum number of results to return

Response

200 - application/json

Matching markets

data
object[]
meta
object