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

Documentation Index

Fetch the complete documentation index at: https://docs.midasprotocol.org/llms.txt

Use this file to discover all available pages before exploring further.

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": [...] }
  ]
}