🎼 CONDUCTOR API
12 AI models.
One API.
Drop-in OpenAI replacement. Smart routing picks the best model for each request — automatically.
# Change one line. Get 12 models.
base_url = "https://prefy.com/api/v1"
base_url = "https://prefy.com/api/v1"
Try without risk
Startup
$99/mo
$0.008 / 1K tokens over
✅ OpenAI-compatible endpoint
✅ Smart model routing
✅ Usage dashboard
✅ 500K tokens/month
✅ 1 API key
⭐ Most Popular
For production products
Business
$499/mo
$0.005 / 1K tokens over
✅ Everything in Startup
✅ All 12 models incl. Claude Sonnet, GPT-4o
✅ BYOK — use your own provider keys
✅ 5M tokens/month
✅ Webhook alerts (Slack/Telegram)
✅ Full analytics dashboard
✅ Up to 5 API keys
Bank-grade compliance
Enterprise
Custom
Custom pricing
✅ Everything in Business
✅ Private Mesh — your GPU nodes
✅ GDPR / SOC2 compliance
✅ EU data residency option
✅ Custom model fine-tuning
✅ Dedicated support + SLA
✅ White-label option
Available Models
Conductor auto-selects the best one. Or specify directly.
| MODEL | PROVIDER | COST | SPEED | AVAILABLE ON |
|---|---|---|---|---|
| Gemini 2.5 Flash | $0.15/M | ⚡⚡⚡ | All plans | |
| Gemini 2.5 Pro | $2.50/M | ⚡⚡ | Business+ | |
| GPT-4o Mini | OpenAI | $0.15/M | ⚡⚡⚡ | All plans |
| GPT-4o | OpenAI | $2.50/M | ⚡⚡ | Business+ |
| Claude Sonnet 4 | Anthropic | $3.00/M | ⚡⚡ | Business+ |
| DeepSeek V3 | DeepSeek | $0.27/M | ⚡⚡ | All plans |
| Llama 3.3 70B | Meta | $0.88/M | ⚡⚡ | All plans |
| Qwen 2.5 7B | Alibaba | $0.18/M | ⚡⚡⚡ | All plans |
Start in 30 seconds
One API key. Change your base_url. Done.
from openai import OpenAI
client = OpenAI(
api_key="pc_your_key",
base_url="https://prefy.com/api/v1"
)
response = client.chat.completions.create(
model="conductor", # auto-picks best model
messages=[...]
)
client = OpenAI(
api_key="pc_your_key",
base_url="https://prefy.com/api/v1"
)
response = client.chat.completions.create(
model="conductor", # auto-picks best model
messages=[...]
)