Skip to main content

Python SDK for the Authenta API to detect deepfakes and manipulated media

Project description

Authenta 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.

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 authenta

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 credentials.

from authenta import AuthentaClient

client = AuthentaClient(
    base_url="https://platform.authenta.ai",
    client_id="YOUR_CLIENT_ID",
    client_secret="YOUR_CLIENT_SECRET",
)

2. Models & Capabilities

Authenta provides specialized models for different media types. You select the model using the model_type parameter in SDK methods.

Model Type Modality Capability
AC-1 Image AI-Generated Image Detection: Identifies images created by Generative AI (e.g., Midjourney, Stable Diffusion) or manipulated via editing tools.
DF-1 Video Deepfake Video Detection: Detects face swaps, reenactments, and other facial manipulations in video content.

3. Workflows

Quick Detection (Synchronous)

Use the .process() method to handle uploading and waiting for results in a single blocking call. This is ideal for scripts or simple integrations.

# Example: Detect AI-generated image

media = client.process(
    "samples/nano_img.png",
    model_type="AC-1",
)

print(f"Media ID: {media['mid']}")
print(f"Status: {media['status']}")
print(f"Is Fake?: {media.get('fake')}")

Async Upload & Polling (sync client)

For non-blocking workflows in your own code (e.g., background jobs, web servers), you can decouple upload and polling using the Media ID (mid).

# 1. Initiate upload
upload_meta = client.upload_file(
    "samples/video.mp4",
    model_type="DF-1",
)
mid = upload_meta["mid"]
print(f"Upload started. Media ID: {mid}")

# ... perform other tasks ...

# 2. Check status later
final_media = client.wait_for_media(mid)
if final_media["status"] == "PROCESSED":
    print("Result:", final_media.get("fake"))

3.1 Async Usage (AsyncIO)

For fully asynchronous applications (async workers), use the async client.

import asyncio
from authenta.async_authenta_client import AsyncAuthentaClient

async def main():
    client = AsyncAuthentaClient(
        base_url="https://platform.authenta.ai",
        client_id="YOUR_CLIENT_ID",
        client_secret="YOUR_CLIENT_SECRET",
    )

    async with client:
        media = await client.process(
            "samples/nano_img.png",
            model_type="AC-1",
        )
        print("Status:", media["status"])
        print("Is Fake?:", media.get("fake"))

asyncio.run(main())

The async client mirrors the sync API:

await client.process(...)
await client.upload_file(...)
await client.wait_for_media(...)
await client.list_media(...)
await client.delete_media(...)

and raises the same exception types as the sync client.

3.2 Visualizing Results

The SDK includes a visualization module to generate visual overlays (heatmaps and bounding boxes) to help you interpret detection results.

3.2.1 Heatmaps (Images – AC‑1)

Generate a visual heatmap indicating manipulated regions for an image.

from authenta.visualization import save_heatmap

media = client.process(
    "data_samples/nano_img2.png",
    model_type="AC-1",
)

# For AC-1, pass an output image path.
save_heatmap(
    media=media,
    out_path="results/image_heatmap.jpg",
    model_type="AC-1",
)

This downloads the heatmapURL from the API response and saves an RGB overlay image.

3.2.2 Heatmaps (Deepfake Video – DF‑1, multi‑face)

For DF‑1, the API can return multiple participants (faces) in a single video. Each participant may have a separate heatmap video.

from authenta.visualization import save_heatmap

media = client.process(
    "data_samples/test_00000121.mp4",
    model_type="DF-1",
)

# For DF-1, pass a folder path.
# One video per participant is saved as:
#   ./results/heatmap_p0.mp4
#   ./results/heatmap_p1.mp4
#   ...
save_heatmap(
    media=media,
    out_path="./results",    # folder path
    model_type="DF-1",
)

Under the hood, this:

  • Inspects all media["participants"].
  • Downloads each available heatmap URL to <out_dir>/heatmap_p{idx}.mp4.
  • Skips participants whose heatmap URLs are missing or return 403/404 (with a warning), instead of failing the entire call.

3.2.3 Bounding Box Video (DF‑1 only)

Draw detection boxes around faces in a deepfake video and save an annotated copy.

from authenta.visualization import save_bounding_box_video

media = client.process(
    "data_samples/test_00000121.mp4",
    model_type="DF-1",
)

save_bounding_box_video(
    media,
    src_video_path="data_samples/test_00000121.mp4",
    out_video_path="results/analyzed_video.mp4",
)

This fetches bounding box data from resultURL, converts it into a frame‑wise sequence, and renders labels and confidences onto each frame using OpenCV.

4. Error Handling

The SDK normalizes Authenta API error responses into Python exceptions defined in authenta_exceptions.py. This makes it easier to build robust applications that react to specific failure modes.

Common exceptions:

  • AuthenticationError (IAM001) – Invalid credentials or unauthenticated.
  • AuthorizationError (IAM002) – API key does not have required permissions.
  • QuotaExceededError (AA001) – API limit reached for your plan.
  • InsufficientCreditsError (U007) – Not enough credits to start processing.
  • ValidationError – Client-side issues (bad requests, unexpected non‑JSON payloads).
  • ServerError – Server-side issues (5xx).
  • AuthentaError – Base class for all SDK errors.

Example: catching and handling errors

from authenta import AuthentaClient
from authenta import (
    AuthentaError,
    AuthenticationError,
    AuthorizationError,
    QuotaExceededError,
    InsufficientCreditsError,
    ValidationError,
    ServerError,
)

The same exception classes are raised from the async client (AsyncAuthentaClient), so you can reuse this pattern in async code.

5. API Reference

Class: AuthentaClient

__init__(base_url, client_id, client_secret)

Initializes the client session.

process(path: str, model_type: str, interval: float = 5.0, timeout: float = 600.0) -> Dict

A high-level wrapper that combines upload and polling.

  • Returns: A dictionary containing the final processed media state.
  • Raises: TimeoutError if processing exceeds timeout, plus the error classes above for API failures.

upload_file(path: str, model_type: str) -> Dict

Uploads a file to the Authenta platform.

  • path: Local path to the image or video file.
  • model_type: AC-1 (Image) or DF-1 (Video).
  • Returns: Dictionary with initial metadata (including mid).

wait_for_media(mid: str, interval: float = 5.0, timeout: float = 600.0) -> Dict

Blocks execution until the media status becomes PROCESSED, FAILED, or ERROR, or until timeout is reached.

  • mid: The Media ID returned from upload_file.

get_media(mid: str) -> Dict

Retrieves the current status and details of a specific media record.

list_media(**params) -> Dict

Lists historical media records.

  • params: Query parameters like page, pageSize.

delete_media(mid: str) -> None

Permanently removes a media record and its associated data from the platform.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

authenta-0.2.2.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

authenta-0.2.2-py3-none-any.whl (15.9 kB view details)

Uploaded Python 3

File details

Details for the file authenta-0.2.2.tar.gz.

File metadata

  • Download URL: authenta-0.2.2.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for authenta-0.2.2.tar.gz
Algorithm Hash digest
SHA256 0867ef3444a50ea59f48ba52895ade3de104435cb3b0b367c2787bb2720314ce
MD5 80391bf8bc4597f7f498d740d5481f38
BLAKE2b-256 533e87e6bd5e0688b4ca394cc33cb0ac03c4f039fc9be5a4ea58a557327e9c4c

See more details on using hashes here.

File details

Details for the file authenta-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: authenta-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for authenta-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4896f9d5029edece395ae6dd568799248813d268e108c1e752dc77fe06a83ba0
MD5 65dedd06dded42326263d049e143c7a0
BLAKE2b-256 ea1f4f645b9b6a4026b78b810b6ea9e3cc50d108d5b560ea4948fb9fac7f684f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page