Skip to main content
GET
/
earn
/
tokens
tokens
curl --request GET \
  --url https://lite-api.jup.ag/lend/v1/earn/tokens
[
  {
    "id": 123,
    "address": "<string>",
    "name": "<string>",
    "symbol": "<string>",
    "decimals": 123,
    "assetAddress": "<string>",
    "asset": {
      "address": "<string>",
      "chain_id": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "decimals": 123,
      "logo_url": "<string>",
      "price": "<string>",
      "coingecko_id": "<string>"
    },
    "totalAssets": "<string>",
    "totalSupply": "<string>",
    "convertToShares": "<string>",
    "convertToAssets": "<string>",
    "rewardsRate": "<string>",
    "supplyRate": "<string>",
    "totalRate": "<string>",
    "rebalanceDifference": "<string>",
    "liquiditySupplyData": {
      "modeWithInterest": true,
      "supply": "<string>",
      "withdrawalLimit": "<string>",
      "lastUpdateTimestamp": "<string>",
      "expandPercent": "<string>",
      "expandDuration": "<string>",
      "baseWithdrawalLimit": "<string>",
      "withdrawableUntilLimit": "<string>",
      "withdrawable": "<string>"
    }
  }
]

Response

200 - application/json

Successful response

id
integer
required
  • Lending ID, starts from 1
address
string
required
  • Lending token address like 9BEcn9aPEmhSPbPQeFGjidRiEKki46fVQDyPpSQXPA2D
name
string
required
  • Lending token name like Jupiter Lend USDC
symbol
string
required
  • Lending token symbol like jlUSDC
decimals
integer
required
assetAddress
string
required
  • Lending token underlying asset address like EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
asset
object
required
totalAssets
string
required
  • Total available underlying mint from jlTokens (with accured interest)
totalSupply
string
required
  • Total supply of jlTokens for this mint
convertToShares
string
required
  • Value of one 1 underlying token to jlToken, like 1 USDC = X jlUSDC
  • Used for conversion
convertToAssets
string
required
  • Value of one 1 jlToken token to underlying mint, like 1 jlUSDC = X USDC
  • Used for conversion
rewardsRate
string
required
  • Rewards rate , in 1e4 decimals
supplyRate
string
required
  • Supply rate, in 1e4 decimals
totalRate
string
required
  • Total sum of rewards + supply rate
rebalanceDifference
string
required
liquiditySupplyData
object
required
I