Get Person Info¶
Retrieves financial profile information for an individual borrower, sponsor, or guarantor associated with a deal, including net worth, liquidity, DSCR, and debt ratio.
Key Details¶
- Returns personal financial metrics parsed from Personal Financial Statements (PFS), tax returns, or other borrower documentation.
personalNetWorthis total assets minus total liabilities, in USD.personalLiquidityrepresents liquid assets (cash, marketable securities) available for loan obligations, in USD.personalDSCRis the individual's debt service coverage ratio — personal income divided by annual debt obligations. Values > 1.0 indicate income exceeds debt payments.personalCashFlowAfterDebtServiceis net cash flow after all debt obligations, in USD.personDebtRatiois total debt divided by income, expressed as a decimal (e.g., 0.35 = 35%).address,phone,email,image, anddescriptionprovide contact and profile details.contactIdlinks to the underlying contact record.
Related Endpoints¶
- Get Company Info — for business entity borrowers/sponsors
- Get Deal Info — retrieve deals associated with this person via
personIds[]
Parameters¶
id string
Unique identifier for the person
Response¶
Status: 200
Type: application/json
Schema: PersonInfoResponseDto
success boolean
Indicates whether the API request completed successfully
error ErrorDto
target string
Field or parameter that caused the error
code string(enum)
Error code (e.g., Duplicated, MissingMandatoryField, InvalidCreateValues, MissingEntity)
Available enum values: Duplicated, MissingMandatoryField, InvalidCreateValues, Existing, ValidationError, MissingEntity
message string
details array [ ErrorDto ]
id string
Unique identifier for the person
contactId string
ID of the associated contact record
firstName string
middleName string
lastName string
description string
primaryPhoneNumber string
Person contact primary phone number
primaryEmail string
Person contact primary email address
image string(byte)
address AddressDto
fullAddress string
Complete street address validated by Google Places API (e.g., "1600 Amphitheatre Parkway, Mountain View, CA 94043")
placeId string
Google Places unique identifier for this address
zipCode string
number integer(int32)
street string
city string
county string
state string
country string
additionalFreeText string
Additional address information such as suite or unit number
personalNetWorth number(double)
Total net worth of the individual, in USD
personalLiquidity number(double)
Liquid assets available to the individual, in USD
personalDSCR number(double)
Individual's Debt Service Coverage Ratio calculated as cash flow available for debt service divided by total debt service. Values > 1.0 indicate sufficient income to cover debt obligations
personalCashFlowAfterDebtService number(double)
Cash flow remaining after debt service payments, in USD
personDebtRatio number(double)
Total debt divided by total assets, expressed as a decimal (e.g., 0.35 = 35%)
{
"success": true,
"error": {
"target": "string",
"code": "Duplicated",
"message": "string",
"details": [
{}
]
},
"id": "string",
"contactId": "string",
"firstName": "string",
"middleName": "string",
"lastName": "string",
"description": "string",
"primaryPhoneNumber": "string",
"primaryEmail": "string",
"image": "string",
"address": {
"fullAddress": "string",
"placeId": "string",
"geoLocation": {
"lat": 0.0,
"lng": 0.0
},
"zipCode": "string",
"number": 0,
"street": "string",
"city": "string",
"county": "string",
"state": "string",
"country": "string",
"additionalFreeText": "string"
},
"personalNetWorth": 0.0,
"personalLiquidity": 0.0,
"personalDSCR": 0.0,
"personalCashFlowAfterDebtService": 0.0,
"personDebtRatio": 0.0
}