AI UnderwriterAPI reference

Exports

Workbook and PDF downloads.

Download the memo

GET /applications/{id}/memo/export

GET/applications/{id}/memo/export

curl

curl -X GET "https://underwriter.kita.ai/api/v1/applications/{id}/memo/export" \
  -H "Authorization: ApiKey $KITA_UW_API_KEY"

Path parameters

FieldTypeDescription
idrequiredstringApplication UUID or human `app_id`, for example `APP-1042`.

Query parameters

FieldTypeDescription
formatstring`pdf` returns the full credit memo. `xlsx` returns the financial-spread workbook. One of: pdf, xlsx.

200 The memo file.

Errors

FieldTypeDescription
401errorInvalid API key.
404errorNot 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}/export

curl

curl -X GET "https://underwriter.kita.ai/api/v1/applications/{id}/export" \
  -H "Authorization: ApiKey $KITA_UW_API_KEY"

Path parameters

FieldTypeDescription
idrequiredstringApplication UUID or human `app_id`, for example `APP-1042`.

Query parameters

FieldTypeDescription
formatstringOne of: xlsx.

200 The workbook.

Errors

FieldTypeDescription
401errorInvalid API key.
404errorNot found, or belongs to another organization.

On this page