Example request
Call the scoring endpoint from your backend.
Call from your backend with the KITA_BASE_URL and KITA_API_KEY supplied by
Kita. Keep the key on your server.
Terminal
pip install kitaPython
from kita import KitaClient
client = KitaClient(api_key="kita_prod_...")
# Score one application from its documents
result = client.score(
["bank-statement.pdf", "payslip.pdf"],
application_id="app_example_001",
)
print(result.scores["bank_cash_flow_stability_index"])
