API reference
e-KYC API
- Endpoints
- —
- Paths
- —
- Groups
- Schemas
- —
Start here
-
Get a session token
POST /session/loginwith your username and password. The response carries a session whosetokenfield is what you send next. If two-factor is enabled the response is{ "twoFactorRequired": true }instead — post the emailed OTP to/session/login/verify-otpto receive the session. -
Send it on every call
Pass the token as the
X-AUTH-TOKENheader. Each operation below exposes that header as a parameter, so paste the token into the field before you press Execute.GET /session/logoutends the session. -
Stay under the limit
100 requests per minute, counted per token (per IP for unauthenticated calls). Going over returns
429 Too Many Requestsuntil the window refills.