Skip to main content
GET
/
lending
/
my-loans
My Loans
curl --request GET \
  --url https://api.example.com/lending/my-loans

Request

curl https://api.midasprotocol.org/lending/my-loans \
  -H "Authorization: Bearer pp_your_key"

Response

{
  "asLender": [
    { "id": "uuid", "borrowerId": "...", "amount": "100.00", "status": "ACTIVE", "repayments": [...] }
  ],
  "asBorrower": [
    { "id": "uuid", "lenderId": "...", "amount": "200.00", "status": "REPAID", "repayments": [...] }
  ]
}