v1
latestOpenAPI 3.1.02026-07-24233206489.1 KBapplications
List applications for lender
Get a list of all applications for logged in lender
get/v1/capitals/lenders/applications
Query parameters
account_idstring
Filter by account ID
offer_idstring
Filter by offer ID
offer_namestring
Filter by offer name (partial match)
status'submitted' | 'under_review' | 'approved' | 'rejected'
Filter by application status
afterstring
Forward pagination
limitinteger
Items per page (default: 5)
Response
Successfully retrieved list of applications
Example response
{
"data": [
{
"account_id": "org_1",
"currency": "PHP",
"id": "apl_1",
"interest_fee": 550,
"offer": {
"amount_increment": 10000,
"currency": "PHP",
"id": "offer_123",
"interest_fee": 250,
"max_amount": 500000,
"max_term": 12,
"min_amount": 10000,
"min_term": 1,
"name": "Special Loan Offer",
"repayment_rate": 550
},
"offer_id": "offer_1",
"principal_amount": 50000,
"purpose": "Expand business inventory",
"term": 12
}
]
}