> ## Documentation Index
> Fetch the complete documentation index at: https://docs.terang.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick Start

> Get started integrating with Terang AI in 3 steps

## Get Started

<Steps>
  <Step title="Contact us">
    Reach out at [founders@terang.ai](mailto:founders@terang.ai) with:

    * Your **domain** (used as the JWT `iss` claim, e.g. `iai.or.id`)
    * Your **server IP address(es)** that will send requests to `api.terang.ai`

    Not sure what your server IP is? See the [IP whitelisting guide](/integration/sso-jwt#finding-your-server-ip).
  </Step>

  <Step title="Share your public key">
    Generate an RS256 key pair. Share the public key (PEM format) or your JWKS endpoint URL with our team.
  </Step>

  <Step title="Sign a JWT and redirect">
    When a member clicks "Open LMS", sign a JWT with their email and membership ID, then redirect to:

    ```
    https://api.terang.ai/sso/verify?token=<JWT_TOKEN>
    ```

    We verify the token and log them in automatically.
  </Step>
</Steps>

## What's next?

<Columns cols={2}>
  <Card title="SSO Integration Guide" icon="key" href="/integration/sso-jwt">
    Full JWT spec, architecture diagrams, and code examples for PHP and Node.js.
  </Card>

  <Card title="API Docs" icon="code" href="/api-reference/introduction">
    Integrate SSO, manage enrollments, and users via `api.terang.ai`.
  </Card>
</Columns>
