Documentation

Get started with Reduxy.ai

Everything you need to integrate privacy-first AI into your applications. From quick API calls to advanced enterprise features.

5 min
API Quick Start
Get started with the Reduxy API in minutes using cURL, JavaScript, or Python requests
10 min
Python SDK
Use our Python SDK for seamless integration with your existing OpenAI code
15 min
Security Guide
Learn about PII detection, masking strategies, and compliance features
20 min
Advanced Features
Explore routing, policies, audit trails, and enterprise features

API Quick Start

Replace your OpenAI API calls with Reduxy to get instant PII protection. Choose your preferred method:

from reduxy import Client

# Initialize client (connects to https://api.reduxy.ai by default)
client = Client(api_key="your_reduxy_api_key")

# Make a chat completion request with automatic PII detection
response = client.chat.completions.create(
    messages=[
        {"role": "user", "content": "Hello! How are you today?"}
    ],
    model="gpt-4o"
)

print(response)

That's it! Your requests now have automatic PII detection and masking.

Get Your API Key

Python SDK

Our Python SDK provides a drop-in replacement for the OpenAI client with automatic PII protection.

Installation
Install the Reduxy Python SDK
pip install reduxy-ai

* SDK is currently in development. Contact us for early access.

Basic Usage
Replace your OpenAI client with Reduxy
# Instead of OpenAI client
from openai import OpenAI
client = OpenAI(api_key="your-openai-key")

# Use Reduxy client
from reduxy import Client
client = Client(api_key="your-reduxy-key")

# Same API, automatic PII protection
response = client.chat.completions.create(
    messages=[{"role": "user", "content": "Hello!"}],
    model="gpt-4o"
)
PII Detection
Automatic detection and masking
# This request contains PII
response = client.chat.completions.create(
    messages=[{
        "role": "user", 
        "content": "My email is john@company.com"
    }],
    model="gpt-4o"
)

# Reduxy automatically masks PII before sending to OpenAI:
# "My email is [EMAIL_1]"

Ready to dive deeper?

Explore advanced features, security options, and enterprise capabilities.