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

# Python

> Call the Dojah REST API from Python 3.6+ with the official Dojah client, using your secret key server-side.

Call the Dojah REST API from Python (3.6+) with the Dojah client.

<Warning>
  This is a **server-side** client using your **secret** key (passed as `Authorization`) — never ship it in client code. For verification UI in an app, use a [Widget SDK](/api-reference/widget-sdks/choosing-an-sdk).
</Warning>

## Install

```bash Terminal theme={null}
pip install dojah-python-sdk
```

## Make a request

```python verify.py theme={null}
import os
from dojah_client import Dojah

dojah = Dojah(
    authorization=os.environ["DOJAH_SECRET_KEY"],
    app_id=os.environ["DOJAH_APP_ID"],
)

result = dojah.aml.get_screening_info(profile_id="WC7117469")
```

Every endpoint in the [API reference](/api-reference/get-started/introduction) is exposed on the client, grouped by API.
