Skip to main content
GET
/
lending
/
offers
List Loan Offers
curl --request GET \
  --url https://api.example.com/lending/offers

Request

currency
string
Filter by currency.
limit
number
default:"20"
Results per page.
offset
number
default:"0"
Skip N results.
curl "https://api.midasprotocol.org/lending/offers?currency=USDC" \
  -H "Authorization: Bearer pp_your_key"

Response

{
  "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 }
}