# APR ## Request {% tabs %} {% tab title="Get pairs" %} **GET** `[GATEWAY_V2_ENDPOINT]/apr` {% endtab %} {% endtabs %} ## Response ```json [ { "name": "USDT0", "symbol": "USDT0", "product_id": 0, "deposit_apr": 6.32465621e-10, "borrow_apr": 0.010050173557473174, "tvl": 20001010125092.633 }, { "name": "Wrapped BTC", "symbol": "WBTC", "product_id": 1, "deposit_apr": 8.561123e-12, "borrow_apr": 0.010050166480005895, "tvl": 1045563178297771.2 } ] ``` ## Response Fields
Field nameTypeNullableDescription
product_idnumberNoInternal unique ID of spot / perp product
namestringNoAsset name (as represented internally in the exchange).
symbolstringNoAsset symbol (as represented internally in the exchange).
deposit_aprfloatNoThe current estimated APR for depositing or holding this asset. Note: This value should be multiplied by 100 to represent the percentage (%) form.
borrow_aprfloatNoThe current estimated APR for borrowing this asset. Note: This value should be multiplied by 100 to represent the percentage (%) form.
tvltvlNoTotal Value Locked (TVL) represents the current USDT0 value of this asset, calculated as the difference between deposits and borrows.