AI UnderwriterAPI reference
Exports
Workbook and PDF downloads.
Download the memo
GET /applications/{id}/memo/export
GET
/applications/{id}/memo/exportcurl
curl -X GET "https://underwriter.kita.ai/api/v1/applications/{id}/memo/export" \
-H "Authorization: ApiKey $KITA_UW_API_KEY"Path parameters
| Field | Type | Description |
|---|---|---|
idrequired | string | Application UUID or human `app_id`, for example `APP-1042`. |
Query parameters
| Field | Type | Description |
|---|---|---|
format | string | `pdf` returns the full credit memo. `xlsx` returns the financial-spread workbook. One of: pdf, xlsx. |
200 The memo file.
Errors
| Field | Type | Description |
|---|---|---|
401 | error | Invalid API key. |
404 | error | Not found, or belongs to another organization. |
Download the extraction workbook
GET /applications/{id}/export
Downloads the extraction workbook as .xlsx.
Returns 404 if no document has extraction data yet, so treat a 404
here as "nothing extracted so far" rather than as a missing
application.
The memo exports separately, as a PDF or a financial-spread workbook.
GET
/applications/{id}/exportcurl
curl -X GET "https://underwriter.kita.ai/api/v1/applications/{id}/export" \
-H "Authorization: ApiKey $KITA_UW_API_KEY"Path parameters
| Field | Type | Description |
|---|---|---|
idrequired | string | Application UUID or human `app_id`, for example `APP-1042`. |
Query parameters
| Field | Type | Description |
|---|---|---|
format | string | One of: xlsx. |
200 The workbook.
Errors
| Field | Type | Description |
|---|---|---|
401 | error | Invalid API key. |
404 | error | Not found, or belongs to another organization. |

