Get loan pool
This endpoint returns the current state of the loan pool including utilization, borrow and lend rates.
GET /api/v1/loan_poolResponse
{
"success": true,
"data": {
"total_borrowed": "500000.000000",
"total_borrowable": "2000000.000000",
"utilization": "0.25",
"borrow_rate_apr": "0.08",
"borrow_rate_apy": "0.0833",
"lend_rate_apr": "0.06",
"lend_rate_apy": "0.0618",
"utilization_max": "0.85",
"auto_lender_entry_threshold": "1000.000000",
"last_interest_accrual_at": 1716200000000,
"last_interest_payout_at": 1716200000000,
"updated_at": 1716200000000
},
"error": null,
"code": null
}Field
Type
Description
Code Example (Python)
Last updated