Browse open loan offers
cURL
curl --request GET \ --url https://api.example.com/lending/offers
curl "https://api.midasprotocol.org/lending/offers?currency=USDC" \ -H "Authorization: Bearer pp_your_key"
{ "data": [ { "id": "uuid", "lenderId": "...", "amount": "100.00", "currency": "USDC", "interestRate": 5, "durationDays": 30, "collateralPercent": 50, "status": "OPEN" } ], "pagination": { "total": 3, "limit": 20, "offset": 0, "hasMore": false } }