Retrieve a summary of a loan including key metrics like total amount, monthly payment, term, and activity status (open tasks, message activity). hasMessages reflects non-internal (customer/broker-visible) conversation only — internal banker threads are never exposed.
Security
ApiKeyAuth
- https://api.pioneerft.com/apihttps://api.pioneerft.com/api/public/v1/loans/{id}/summary
- https://api.staging.pioneerft.com/apihttps://api.staging.pioneerft.com/api/public/v1/loans/{id}/summary
curl -i -X GET \
'https://api.pioneerft.com/api/public/v1/loans/{id}/summary' \
-H 'Authorization: Bearer <YOUR_API Key_HERE>'Response
{ "data": { "loan": { "id": "string", "loanNumber": "string", "status": "string", "type": "business", "centsAmount": -9007199254740991, "centsMonthlyPayment": -9007199254740991, "monthsTerm": -9007199254740991, "monthsInterestOnly": -9007199254740991, "paymentFrequency": "weekly", "rateType": "fixed", "bpsRate": -9007199254740991, "purpose": "string", "purposeNarrative": "string", "applicationDate": "string", "closeDate": "string", "maturityDate": "string", "firstPaymentDate": "string", "product": { "id": "string", "name": "string" }, "stage": { "id": "string", "name": "string" }, "createdAt": "string", "updatedAt": "string" }, "metrics": { "centsTotalAmount": 0, "centsMonthlyPayment": 0, "monthsTerm": 0, "hasOpenTasks": true, "hasMessages": true } } }