Browse open loan offers
cURL
curl --request GET \ --url https://api.example.com/lending/offers
Documentation IndexFetch the complete documentation index at: https://docs.midasprotocol.org/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.midasprotocol.org/llms.txt
Use this file to discover all available pages before exploring further.
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 } }