Documentation
Curated public guidance for external integrations, reviewed-access workflows, high-level deployment options, security disclosure, and machine-readable docs.
External Integration API
Stable public contract for app registration, OAuth, JWKS verification, webhooks, and GraphQL transport.
/docs/api-referenceIntegration Guide
Recommended onboarding path for approved integrations and reviewed access requests.
/docs/integration-guideDeployment Options
High-level deployment models and what is shared during a solution review.
/docs/deploymentSecurity Documentation
Disclosure process and public guidance for secure integration practices.
/docs/securityAI Access
Machine-readable public docs through `llms.txt`, `llms-full.txt`, and `/api/docs`.
/docs/ai-accessPublic integration quick start
Start with the curated public contract. Request reviewed access only when your workflow needs partner-only capabilities or environment-specific onboarding.
# Discover the public documentation surface
curl https://knogin.com/api/docs | jq .
# Review the app registration contract
curl https://auth.knogin.com/v1/platform/scopes \
-H "Authorization: Bearer <admin-access-token>"
# Exchange an approved client for a token
curl -X POST https://auth.knogin.com/v1/oauth/token \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "grant_type=client_credentials&client_id=<client-id>&client_secret=<client-secret>&scope=webhooks:write"Command examples remain canonical English because they match the public API surface directly.