AI UnderwriterAPI reference
Conversation
Borrower conversation messages.
Read borrower conversation
GET /applications/{id}/conversation
Returns borrower conversation messages ordered by display_order.
Use after to sync incrementally: keep the highest display_order you
have seen and pass it back on the next call, rather than re-reading the
whole thread each time.
GET
/applications/{id}/conversationcurl
curl -X GET "https://underwriter.kita.ai/api/v1/applications/{id}/conversation" \
-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 |
|---|---|---|
after | integer | Cursor. Returns messages with a higher display order. |
Response · 200
| Field | Type | Description |
|---|---|---|
data | object[] | |
data[].id | string(uuid) | |
data[].display_order | integer | |
data[].role | string | |
data[].body | string | |
data[].created_at | string(date-time) |
Errors
| Field | Type | Description |
|---|---|---|
401 | error | Invalid API key. |
404 | error | Not found, or belongs to another organization. |

