Now in beta — free tier available

One API for
Every AI Model

Route requests to OpenAI, Anthropic, and Google through a single endpoint. Bring your own keys, use pooled access, or prepay credits — your choice.

app.ts
import DicklessSDK from "@dickless/sdk";
const dk = new DicklessSDK({
apiKey: "dkls_live_..."
});
const response = await dk.chat({
model: "gpt-4o", // or claude-sonnet-4-5, gemini-2.0-flash
messages: [{ role: "user", content: "Hello!" }],
});

Works with every major AI provider

OpenAI
Anthropic
Google AI
+ More coming soon

Three ways to connect. You pick.

The AI Gateway adapts to how you want to manage keys and billing.

BYOK

Bring Your Own Key. Use your own API keys from OpenAI, Anthropic, or Google. Zero markup. Full control.

Pay providers directly at their rates

Pooled

No keys to manage. No provider accounts needed. Just send requests and it works, powered by our pooled infrastructure.

Included with Pro plans and above

Dedicated Credits

Prepaid balance with at-cost pricing. Buy credit packs from $5 to $500 and use them across all providers and models.

Buy credits from $5 -- $500, use across all providers

Everything you need. Nothing you don't.

Eighteen API modules, one dashboard, one API key. Each module is independent — use one or all of them.

Content Moderation

Detect toxicity, hate speech, and NSFW content in text and images. Powered by Llama Guard 3.

PII Redaction

Strip personal data from text before it hits your database. Emails, phones, SSNs, credit cards, and names.

Prompt Sanitizer

Detect and neutralize prompt injection attacks before they reach your LLM. Keep your AI safe.

URL Shortener

Branded short links with QR codes and click analytics. Memorable URLs at dickless.io/s/.

Webhooks

Real-time event notifications with HMAC-signed payloads. Know the moment something happens.

Usage Dashboard

Per-module analytics, team management, and API key controls. See everything at a glance.

Input Validation

Validate emails, phones, URLs, and domains. Regex format checks plus deep MX lookup and disposable email detection.

OCR / Text Extraction

Extract text from images and PDFs using AI vision models. Pairs perfectly with PII redaction for document processing.

Translation

AI-powered translation across 50+ languages. Auto-detect source language, powered by state-of-the-art models.

Screenshot

Capture any URL as PNG or PDF. Custom viewport sizes, full-page rendering, and configurable wait times.

Sentiment Analysis

Detect sentiment and emotion in text. Document or sentence-level analysis with confidence scores.

Summarization

Summarize long text or web pages into concise paragraphs or bullet points. Control length and format.

PDF Generation

Generate PDFs from HTML or URLs. Perfect for invoices, reports, and document automation.

Email Verification

MX lookup, SMTP check, and disposable detection. Verify email deliverability before you send.

DNS / WHOIS Lookup

Query DNS records and WHOIS registrar data. A, AAAA, MX, TXT, CNAME, and more.

IP Geolocation & Threat Intel

IP to location, ISP/ASN lookup, and VPN/proxy/Tor detection. Know who's connecting.

Webhook Delivery

Managed webhook delivery with automatic retries and HMAC signing. Reliable event distribution.

HTML/Markdown Sanitizer

XSS prevention with tag and attribute allow/deny lists. Clean user-generated content safely.

Simple, transparent pricing

Start free. Scale when you're ready. No surprises.

Free

Kick the tires

$0 forever
  • 1,000 requests/month
  • 10 req/min rate limit
  • 12 core modules
  • 2 API keys
  • Community support
Get Started

Starter

For side projects & MVPs

$9 /month
  • 10,000 requests/month
  • 30 req/min rate limit
  • 12 core modules
  • 5 API keys
  • Email support
Get Started
Most Popular

Pro

For production apps

$49 /month
  • 100,000 requests/month
  • 200 req/min rate limit
  • All 18 modules (incl. AI Gateway, OCR, PDF, Webhooks)
  • 20 API keys
  • Team support (up to 5)
  • Priority support
Get Started

Enterprise

For scale

$199 /month
  • 1,000,000 requests/month
  • 1,000 req/min rate limit
  • All 18 modules
  • 100 API keys
  • Team support (up to 50)
  • Dedicated support + SLA
  • Bring your own AI keys
Get Started or talk to sales
dickless.io credits available from $5 to $500 — use across all modules & providers

Five lines of code. Any model.

The dickless SDK handles authentication, routing, and retries. Switch providers by changing one string.

gateway-modes.ts
// BYOK — bring your own key
const res1 = await dk.chat({
model: "gpt-4o",
gateway_mode: "byok",
messages: [{ role: "user", content: "Hi" }]
});
// Pooled — we handle the keys
const res2 = await dk.chat({
model: "claude-sonnet-4-5",
gateway_mode: "pooled",
messages: [{ role: "user", content: "Hi" }]
});
// Credits — prepaid balance
const res3 = await dk.chat({
model: "gemini-2.0-flash",
gateway_mode: "credits",
messages: [{ role: "user", content: "Hi" }]
});