APR
Retrieve current deposit / borrow APRs of available spots on Vertex.
Request
GET [GATEWAY_V2_ENDPOINT]/apr
Response
[
{
"name": "USD Coin",
"symbol": "USDC",
"product_id": 0,
"deposit_apr": 0.000814713180599929,
"borrow_apr": 0.013787383986496147,
"tvl": 295868.1800482209
},
{
"name": "Wrapped Ether",
"symbol": "WETH",
"product_id": 93,
"deposit_apr": 0.001660345938708101,
"borrow_apr": 0.01644425174333075,
"tvl": 299895.23031417205
},
{
"name": "Wrapped Mantle",
"symbol": "wMNT",
"product_id": 109,
"deposit_apr": 0.000022493743736921,
"borrow_apr": 0.010189531421664679,
"tvl": 46088.38922953847
},
{
"name": "Mantle Staked Ether",
"symbol": "METH",
"product_id": 111,
"deposit_apr": 0.0,
"borrow_apr": 0.0,
"tvl": 634462.9348960337
}
]
Response Fields
product_id
number
No
Internal unique ID of spot / perp product
name
string
No
Asset name (as represented internally in the exchange).
symbol
string
No
Asset symbol (as represented internally in the exchange).
deposit_apr
float
No
The current estimated APR for depositing or holding this asset. Note: This value should be multiplied by 100 to represent the percentage (%) form.
borrow_apr
float
No
The current estimated APR for borrowing this asset. Note: This value should be multiplied by 100 to represent the percentage (%) form.
tvl
tvl
No
Total Value Locked (TVL) represents the current USDC value of this asset, calculated as the difference between deposits and borrows.
Last updated