List markets
query
tenorMarkets → PaginatedTenorMarkets!Returns every Tenor market, paginated. A market pairs one loan token with one or more accepted collaterals; the fixed-rate terms that trade inside it are its fixed markets.
Arguments
firstIntNumber of items requested (max 200)
skipIntNumber of items skipped
whereTenorMarketsFiltersloanTokenIdStringcollateralAddressAddresstagStringsearchStringResponse
items[TenorMarket!]idID!chainIdInt!loanTokenToken!symbolString!addressAddress!decimalsInt!collateralTokens[Token!]!symbolString!addressAddress!tags[String!]!pageInfoPageInfocountTotalInt!Total number of items
countInt!Number of items as scoped by pagination.
limitInt!Number of items requested.
skipInt!Number of items skipped.
Try it
Query
Variables
Example response
{
"data": {
"tenorMarkets": {
"items": [
{
"id": "e7041445-c77d-4406-922a-1f7f33dd6ac0",
"chainId": 8453,
"loanToken": {
"symbol": "USDC",
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"decimals": 6
},
"collateralTokens": [
{
"symbol": "cbBTC",
"address": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf"
},
{
"symbol": "cbBTC-USDC-collat",
"address": "0xf6a70085b7f79FA76B04EbF7A2D7D87C3c5c04BC"
}
],
"tags": [
"BTC",
"STABLE"
]
},
{
"id": "c3e775ae-8d49-46f8-91cc-658f233533ed",
"chainId": 8453,
"loanToken": {
"symbol": "USDC",
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"decimals": 6
},
"collateralTokens": [
{
"symbol": "WETH",
"address": "0x4200000000000000000000000000000000000006"
},
{
"symbol": "WETH-USDC-collat",
"address": "0xe690a58EF52854513462745237F6A213a0d54dF1"
}
],
"tags": [
"ETH",
"STABLE"
]
}
],
"pageInfo": {
"countTotal": 3,
"count": 2,
"limit": 2,
"skip": 0
}
}
}
}