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

# Environments

> Sigma provides access to its API and management dashboard in two environments.

### Sandbox

The Sandbox environment is for testing and development. You can make unlimited requests at no cost. Successful requests return static responses so you can validate your integration without triggering live checks or consuming wallet balance.

Use the sandbox to:

* Test your API integration before going live
* Verify request and response handling in your code
* Develop and debug without affecting production data

### Production

The Production environment is the live environment. All requests made here perform real checks, consume wallet balance, and produce real compliance data.

Only switch to production once your integration has been tested and verified in the sandbox.

### Base URLs

<table className="min-w-full divide-y divide-gray-200 dark:divide-gray-700 overflow-x-auto">
  <thead className="bg-gray-50 dark:bg-gray-800">
    <tr>
      <th scope="col" className="px-3 py-2 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
        Product
      </th>

      <th scope="col" className="px-3 py-2 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
        Sandbox Base URL
      </th>

      <th scope="col" className="px-3 py-2 text-left text-xs font-medium text-gray-500 dark:text-gray-400 uppercase tracking-wider">
        Production Base URL
      </th>
    </tr>
  </thead>

  <tbody className="bg-white dark:bg-gray-900 divide-y divide-gray-200 dark:divide-gray-700">
    <tr className="hover:bg-gray-50 dark:hover:bg-gray-800/60">
      <td className="px-3 py-2 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white">
        AML (PEP, Sanctions, Adverse Media)
      </td>

      <td className="px-3 py-2 text-sm text-gray-500 dark:text-gray-400">
        [https://sigmastaging.sabipay.com](https://sigmastaging.sabipay.com)
      </td>

      <td className="px-3 py-2 text-sm text-gray-500 dark:text-gray-400">
        [https://sigmaaml.sabipay.com](https://sigmaaml.sabipay.com)
      </td>
    </tr>

    <tr className="hover:bg-gray-50 dark:hover:bg-gray-800/60">
      <td className="px-3 py-2 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white">
        Transaction Monitoring
      </td>

      <td className="px-3 py-2 text-sm text-gray-500 dark:text-gray-400">
        [https://sigmastaging.sabipay.com](https://sigmastaging.sabipay.com)
      </td>

      <td className="px-3 py-2 text-sm text-gray-500 dark:text-gray-400">
        [https://sigmaprod.sabipay.com](https://sigmaprod.sabipay.com)
      </td>
    </tr>

    <tr className="hover:bg-gray-50 dark:hover:bg-gray-800/60">
      <td className="px-3 py-2 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white">
        Customer Due Diligence
      </td>

      <td className="px-3 py-2 text-sm text-gray-500 dark:text-gray-400">
        [https://sigmastaging.sabipay.com](https://sigmastaging.sabipay.com)
      </td>

      <td className="px-3 py-2 text-sm text-gray-500 dark:text-gray-400">
        [https://sigmacdd.sabipay.com](https://sigmacdd.sabipay.com)
      </td>
    </tr>

    <tr className="hover:bg-gray-50 dark:hover:bg-gray-800/60">
      <td className="px-3 py-2 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white">
        KYC (BVN, NIN, CAC)
      </td>

      <td className="px-3 py-2 text-sm text-gray-500 dark:text-gray-400">
        [https://sigmastaging.sabipay.com](https://sigmastaging.sabipay.com)
      </td>

      <td className="px-3 py-2 text-sm text-gray-500 dark:text-gray-400">
        [https://sigmacdd.sabipay.com](https://sigmacdd.sabipay.com)
      </td>
    </tr>

    <tr className="hover:bg-gray-50 dark:hover:bg-gray-800/60">
      <td className="px-3 py-2 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-white">
        Case Management
      </td>

      <td className="px-3 py-2 text-sm text-gray-500 dark:text-gray-400">
        [https://sigmastaging.sabipay.com](https://sigmastaging.sabipay.com)
      </td>

      <td className="px-3 py-2 text-sm text-gray-500 dark:text-gray-400">
        [https://sigmaprod.sabipay.com](https://sigmaprod.sabipay.com)
      </td>
    </tr>
  </tbody>
</table>

<Note>
  All API paths are appended to the base URL. For example, to submit a transaction in production: `https://sigmaprod.sabipay.com/api/v1/transaction-monitoring/submit`
</Note>
