e‑KYC Balaji Mariline Pvt Ltd OpenAPI 3

Start here

  1. Get a session token

    POST /session/login with your username and password. The response carries a session whose token field is what you send next. If two-factor is enabled the response is { "twoFactorRequired": true } instead — post the emailed OTP to /session/login/verify-otp to receive the session.

  2. Send it on every call

    Pass the token as the X-AUTH-TOKEN header. Each operation below exposes that header as a parameter, so paste the token into the field before you press Execute. GET /session/logout ends the session.

  3. Stay under the limit

    100 requests per minute, counted per token (per IP for unauthenticated calls). Going over returns 429 Too Many Requests until the window refills.