Developer portal
Documentation
CHIAKOR exposes reasoning, explanation, evidence and backtesting over a stable REST API, powered by the frozen FinKG engine. Sign in to explore the interactive workspace, or read the concepts below.
Authentication
Sign in with your username and password to receive a JWT, then send it as a Bearer token on every protected request. Reasoning, explanation and evidence require it; health and capabilities are public.
POST /v1/auth/loginPOST /v1/auth/registerauth.sh
curl -X POST $API/v1/auth/login \
-d '{"user":"analyst","password":"…"}'
# → { "token": "<jwt>" }
# use the token on every protected call
curl -X POST $API/v1/reason \
-H "Authorization: Bearer $TOKEN" \
-d '{"scenario":{"inflation":"rising"}}'Reference
Live endpoint reference
Fetched in real time from the running backend via /v1/capabilities.