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

# Access & environments

> How to reach Clausum in sandbox, who provisions API access, and which URLs to use in your integration.

Clausum separates **where you work** (the web application) from **where your servers call the API** (your assigned API base URL). Public documentation does not list production API hostnames for security reasons.

## Web application (dashboard)

Use the Clausum web app to configure your organization, invite teammates, run simulations, and manage keys:

```
https://sandbox.clausum.ai
```

<CardGroup cols={2}>
  <Card title="Sign in" icon="right-to-bracket" href="https://sandbox.clausum.ai/auth/login">
    Existing users
  </Card>

  <Card title="Accept an invitation" icon="envelope" href="/guides/team-and-access">
    First-time access via email invite
  </Card>
</CardGroup>

<Tip>
  Bookmark `https://sandbox.clausum.ai`. If your organization uses a dedicated hostname in production, your welcome email or account team will specify it.
</Tip>

## Partner API base URL

Server-to-server calls (`/api/v1/assess`, `/api/v1/report-fraud`, blocklists, cases, ingest) use a **base URL assigned to your organization**.

<Warning>
  **Do not guess the API hostname.** Clausum support (or your account administrator) delivers:

  * The exact **API base URL** (may match sandbox for trials, or a dedicated host in production)
  * Confirmation that your **API keys** are active for that environment

  Store the value in an environment variable, for example:

  ```bash theme={null}
  # Provided by Clausum support when your workspace is provisioned
  CLAUSUM_API_BASE=https://sandbox.clausum.ai
  ```

  For sandbox evaluations, support often assigns `https://sandbox.clausum.ai`. Production integrations may receive a different host — use only the URL you were given.
</Warning>

All code examples in this documentation use `$CLAUSUM_API_BASE` or `process.env.CLAUSUM_API_BASE` so you can swap environments without changing application logic.

## What you can do without opening a support ticket

| Task                                       | Where                                                |
| ------------------------------------------ | ---------------------------------------------------- |
| Complete onboarding after invite           | Dashboard → guided setup                             |
| Create API keys (checkout, server, ingest) | **Conexiones → Claves API** / **Entrada (webhooks)** |
| Run payment simulations                    | **Simulación**                                       |
| Review live assessments                    | **Panel** and **Protección**                         |
| Monitor transactions                       | **Monitor de transacciones**                         |
| Invite colleagues                          | **Equipo** (role-dependent)                          |
| Manage blocklists and rules                | **Protección**                                       |
| Open regulatory cases                      | **Expedientes**                                      |

## When to contact support

Reach **[api@clausum.ai](mailto:api@clausum.ai)** or your account contact when you need:

* Initial **API base URL** and workspace provisioning
* Production cutover or a **dedicated API hostname**
* SSO, enterprise contracts, or fraud-network participation
* Platform-wide administration (financial institutions with managed onboarding)

<Note>
  Clausum is designed so merchants and operators can complete day-to-day configuration in the dashboard. Support is required for **environment credentials and contractual provisioning**, not for every integration step.
</Note>

## Related guides

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    First API call with your assigned base URL.
  </Card>

  <Card title="Dashboard overview" icon="chart-line" href="/guides/dashboard-overview">
    Panel, metrics, and charts.
  </Card>
</CardGroup>
