Skip to main content

List loan tokens

queryloanTokensPaginatedTokens!

Returns tokens that can be lent or borrowed. Pass search to filter by symbol or name.

Arguments

firstInt
Number of items requested (max 200)
skipInt
Number of items skipped
searchString

Response

items[Token!]
idID!
symbolString!
addressAddress!
decimalsInt!
chainIdInt!
pageInfoPageInfo
countTotalInt!
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
}
}
}
}