Skip to main content

Kaaj form analysis API

This document describes the input fields for the API:

Endpoint

POST https://api.kaaj.ai/application/form-parsing

Headers

Authorization: Bearer <your_api_key>

Body

JSON body with the following fields:

Field NameTypeDescription
appIdstringUnique identifier for the application/form
fileNamestringname of the file
fileContentstringbase64 encoded file content

Response

Success Response

  • Code: 200 OK

Sample Response

{
"businessLegalName": "Krusty Krab",
"businessDbaName": null,
"entityType": null,
"businessAddressLine1": "Pacific Ocean",
"businessAddressLine2": null,
"businessCity": "Indio",
"businessState": "California",
"businessPostalCode": "1111-6688",
"contactFirstName": "Sponge",
"contactLastName": "Bob",
"contactEmail": "spongebob@mail.com",
"businessPhone": "(760)625-2536",
"contactOwnershipPercentage": 100,
"incorporationState": "California",
"businessStartDate": null,
"yearsInBusiness": 2,
"ein": null,
"owners": [
{
"firstName": "Sponge",
"lastName": "Bob",
"phone": "(760)625-2536",
"addressLine1": "82333 Pacific Ocean Drive",
"addressLine2": null,
"city": "Indio",
"state": "California",
"zip": "92201",
"email": "spongebob@mail.com",
"ssn": "000-76-#%$^",
"ownershipPercentage": 100,
"dob": null
}
],
"equipment": {
"vendor": "American Equipment & Trailer, Inc.",
"description": "2015 Peterbilt 389"
},
"other_fields": {
"applicationSubmittedDate": "11/8/2023 4:02 PM",
"opportunityName": "2015 Peterbilt 389 Opportunity",
"stage": "Review",
"term": null,
"corporateGuarantorExists": null,
"creditConsent": true,
"costPerUnit": "$80,095.00",
"condition": "Used",
"vendorAddressLine1": "12000 Hwy 191",
"vendorCity": "Midland",
"vendorState": "Texas",
"vendorPostalCode": "79707",
"vendorPhone": "8066702301",
"personalGuarantorName": "Leonel Rodriguez",
"rentOrOwn": "Rent",
"howWasThisConfirmed": "Owner"
}
}