Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Authenta Python SDK Documentation

Welcome to the official documentation for the Authenta Python SDK. This library allows you to integrate state-of-the-art deepfake and manipulated media detection into your Python applications.

GitHub Repository: https://github.com/phospheneai/authenta-python-sdk

1. Getting Started

Installation

You can install the SDK via pip for production use or install from source for local development.

Option A: Install from PyPI (Recommended)
pip install authentasdk

Option B: Local Development If you want to modify the SDK source code:

git clone https://github.com/phospheneai/authenta-python-sdk.git
cd authenta-python-sdk
pip install -e .

Authentication & Initialization

To use the SDK, you must initialize the AuthentaClient with your API key:

from authenta import AuthentaClient
 
client = AuthentaClient(
    base_url="https://platform.authenta.ai",
    api_key="api__xxxxxxxx...",
)

Your API key can be created and managed in Settings → API Keys.

More: For detailed models, workflows, examples, and the full API reference, see the SDK README on GitHub: Python SDK (Github)