An API-first
detection platform.
Kynos is built as an API first and a dashboard second. If your team has an existing trust and safety stack, Kynos drops into it. If you want to build something custom, every dashboard feature is available as an endpoint.
Score a message
in two calls.
Open a session. Post messages to it. Kynos returns a composite risk score, behavioral signals, and fires webhooks when an alert crosses your threshold.
Real endpoints, field names, and versioning rules live inside the product documentation, behind authentication. Request access and we will walk the integration with you.
Request developer access# Illustrative only. Real endpoints and payload shapes
# are provided to credentialed integrators in the product docs.
# 1. Open a session between two participants
curl -X POST https://api.kynos.example/v1/sessions \
-H "Authorization: Bearer $KYNOS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"participants": [{ "role": "a" }, { "role": "b" }]
}'
# 2. Post a message to that session
curl -X POST https://api.kynos.example/v1/sessions/{id}/messages \
-H "Authorization: Bearer $KYNOS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"from": "a",
"text": "hey what are you up to",
"at": "2026-04-22T18:00:00Z"
}'
# => { "risk_level": "low", "composite": 0.03, ... }Try it before
you wire it up.
Every dashboard includes an API playground. Pick an endpoint, fill in a body, hit send, see the exact response. Use it to sanity-check your integration before a line of code ships.

Everything the dashboard does, you can do via API.
Sessions + messages
Create sessions, score messages, pull history. The scoring hot path is Bearer-token authenticated.
Webhooks
HMAC-signed webhook events for alert.fired and alert.resolved. Retry semantics, delivery log, signature verification samples.
Reports + evidence
Trigger forensic reports, fetch evidence chains, verify signatures. All the court-ready pieces, programmatically.
Management API
Team, cases, alerts, analytics. Full audit log. Build custom dashboards or automate operations.
Next