惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
The Cloudflare Blog
IT之家
IT之家
V
V2EX
雷峰网
雷峰网
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Stack Overflow Blog
Stack Overflow Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 叶小钗
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
A
About on SuperTechFans
B
Blog
月光博客
月光博客
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Cut My AI API Bill by 40% Without Changing a Single...
plasma · 2026-06-18 · via DEV Community

Last month my AI API bill hit a number that made me close my laptop and go for a walk.

I wasn't doing anything crazy — just running a mid-size AI SaaS product with a few thousand daily requests across GPT and Claude. But between the two providers, my monthly spend had crept up to around $800, and the billing dashboards from each provider told completely different stories.

The thing is: I didn't need to rewrite my application. I didn't need to optimize prompts. I didn't need to switch models. All I did was change the base_url in my OpenAI client, and my bill dropped.

Here's exactly what I did.

The Problem: Two Providers, Two Bills, Zero Visibility

My stack was pretty standard:

  • GPT-5.5 for general reasoning and chat
  • Claude Opus 4.7 for longer-form content and summarization

Each provider had its own API key, its own billing dashboard, its own usage limits, and its own pricing page that seemed to change every other month.

The real pain wasn't the integration code — that's a one-time cost. The pain was the ongoing overhead: logging into two separate dashboards to check spend, guessing which model was cheaper for a given task, not knowing if I was overpaying, and getting surprised by a bill because one provider's usage reporting lagged by 24 hours.

I needed one place to manage everything. But I didn't want to rewrite my application.

The Solution: An OpenAI-Compatible Gateway

The insight is simple: most LLM providers either natively support the OpenAI API format or can be accessed through a gateway that normalizes everything to it. If your application already uses the OpenAI SDK, you can swap the base_url and keep everything else the same.

Before — two different SDKs, two different response formats, two separate bills:

from openai import OpenAI
from anthropic import Anthropic

gpt_client = OpenAI(api_key="sk-...")
gpt_response = gpt_client.chat.completions.create(
    model="gpt-5.5",
    messages=[{"role": "user", "content": "Analyze this customer feedback..."}],
)

claude_client = Anthropic(api_key="sk-ant-...")
claude_response = claude_client.messages.create(
    model="claude-opus-4-7-20250514",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Summarize this document..."}],
)

After — one SDK, one API key, one billing dashboard:

from openai import OpenAI

client = OpenAI(
    base_url="https://api.tokenbay.com/v1",
    api_key="***",
)

gpt_response = client.chat.completions.create(
    model="gpt-5.5",
    messages=[{"role": "user", "content": "Analyze this customer feedback..."}],
)

claude_response = client.chat.completions.create(
    model="claude-opus-4.7",
    messages=[{"role": "user", "content": "Summarize this document..."}],
)

The application code change took about 3 minutes — literally just the base_url and api_key.

Where the Savings Actually Came From

Let me break down what changed after the switch:

Item Before (direct) After (gateway, 15% off)
GPT-5.5 input $5.00/M tokens $4.25/M tokens
GPT-5.5 output $30.00/M tokens $25.50/M tokens
Claude Opus 4.7 input $5.00/M tokens $4.25/M tokens
Claude Opus 4.7 output $25.00/M tokens $21.25/M tokens

That's a flat 15% off across both providers just from using the gateway. But the bigger savings came from visibility.

Once I could see all my usage in one dashboard, I noticed my classification tasks (tagging, sentiment) were hitting GPT-5.5 at $4.25/M input tokens. Switching those to a cheaper model — DeepSeek-V4-Flash at $0.119/M input — dropped that cost by over 35x. Classification accounted for about 30% of my volume, so that one change made a real dent.

The point isn't the specific numbers. It's that I couldn't see the opportunity until all my usage was in one place.

What I Keep in Config Now

In production, I don't hardcode model names. Everything lives in environment variables:

import os
from openai import OpenAI

client = OpenAI(
    base_url=os.getenv("LLM_BASE_URL"),
    api_key=***"LLM_API_KEY"),
)

def classify(text: str) -> str:
    response = client.chat.completions.create(
        model=os.getenv("LLM_CLASSIFICATION_MODEL"),
        messages=[{"role": "user", "content": f"Classify: {text}"}],
    )
    return response.choices[0].message.content

# .env
LLM_BASE_URL=https://api.tokenbay.com/v1
LLM_API_KEY=***
LLM_PRIMARY_MODEL=gpt-5.5
LLM_CLASSIFICATION_MODEL=deepseek-v4-flash
LLM_SUMMARIZATION_MODEL=claude-opus-4.7

This has a nice side effect: if I want to test whether Claude is better than GPT for classification, I change one line in .env instead of rewriting integration code.

The Tradeoffs (Because Nothing Is Free)

Added latency. Your request now goes through one extra hop, adding ~50-150ms on average. For most applications that's invisible to users. For latency-critical stuff (real-time voice, gaming), direct provider integration might still be better.

Provider-specific features. If you rely on beta features that only exist on one provider's native API, a gateway won't expose those. For me, the only provider-specific feature I used was Claude's extended thinking, and the gateway supports it fine. Your mileage may vary.

Another dependency. You're adding a layer to your stack. Check the gateway's status page and uptime history before committing.

Trust. You're routing prompts through a third party. Read their privacy policy. Understand what data they log. If you handle sensitive data (healthcare, finance, legal), this deserves extra scrutiny.

Is This Right for You?

This approach makes sense if:

  • You're already using 2+ LLM providers
  • You want one billing dashboard instead of three
  • Your application already uses the OpenAI SDK
  • You want flexibility to swap models without code changes
  • You're spending enough that 15%+ savings is meaningful

It's probably not worth it if:

  • You're on one provider and happy with it
  • You need every millisecond of latency you can get
  • You rely heavily on provider-specific beta features
  • You have strict data residency requirements

How I'd Test This

  1. Create a free account on a gateway with trial credits — TokenBay has free credits to get started and 15% off most models like GPT-5.5 and Claude Opus 4.7
  2. Change the base_url in your dev environment
  3. Run your test suite
  4. Check the usage dashboard after a day
  5. Compare the cost to your current provider bills

No rewriting, no refactoring, no commitment. If it doesn't save you money, switch back and you're out 3 minutes.