List loan tokens
query
loanTokens → PaginatedTokens!Returns tokens that can be lent or borrowed. Pass search to filter by symbol or name.
Arguments
firstIntNumber of items requested (max 200)
skipIntNumber of items skipped
searchStringResponse
items[Token!]idID!symbolString!addressAddress!decimalsInt!chainIdInt!pageInfoPageInfocountTotalInt!Total number of items
Try it
Query
Variables
Example response
{
"data": {
"loanTokens": {
"items": [
{
"id": "16646ea5-3577-4d29-a6d7-b36505f487a3",
"symbol": "USDC",
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"decimals": 6,
"chainId": 8453
},
{
"id": "f0759211-72f7-4526-ae79-0507f3d2bf13",
"symbol": "WETH",
"address": "0x4200000000000000000000000000000000000006",
"decimals": 18,
"chainId": 8453
}
],
"pageInfo": {
"countTotal": 2
}
}
}
}