Skip to main content
GET
/
api
/
v1
/
liquidity
/
management
/
loans
List Loans
curl --request GET \
  --url https://api.mansafinance.co/api/v1/liquidity/management/loans \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "05fa4ec3-7c8f-4fa1-94f6-c1a4e3533d3a",
      "amount": "1000",
      "chain_id": "37361842-8d00-4f85-aaa2-5d0c014f303d",
      "status": "COMPLETED",
      "created_at": "2025-11-17T11:31:44.020Z",
      "updated_at": "2025-11-17T11:32:01.283Z"
    },
    {
      "id": "fc2833ff-5ec6-4371-851b-0b91665370fc",
      "amount": "1000",
      "chain_id": "37361842-8d00-4f85-aaa2-5d0c014f303d",
      "status": "COMPLETED",
      "created_at": "2025-11-17T10:33:01.366Z",
      "updated_at": "2025-11-17T10:33:18.103Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 50,
    "total": 50
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication

Authorization
string
header
required

JWT token following RFC001 specification

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 100
page
integer
default:1
Required range: x >= 1
status
string
chain_id
string<uuid>

Response

Loans list

items
object[]
meta
object