TokenLanding

Batch API Pricing: Cut LLM Costs 50% on Async Tasks

Batch APIs from OpenAI and Anthropic offer 50% off all models. Perfect for content generation, data processing, and bulk analysis. Get same results, just wait hours.

batch-apicost-optimizationllm-pricingUpdated: 2026-04-13

TL;DR

Batch APIs trade speed for 50% savings on all major LLM models. Results take 1-24 hours instead of seconds, making them perfect for non-urgent workloads like content generation and data processing.

Batch APIs give you the exact same model quality at half the price. You just wait hours instead of seconds for results.

The 50% Discount Reality Check

Both OpenAI and Anthropic offer their batch APIs at exactly 50% off standard pricing. No exceptions, no tiers - just a flat half-price deal on every model.

ModelStandard (Input/Output per 1M tokens)Batch PricingMonthly Savings on $5K Spend
GPT-5.4$2.50 / $10.00$1.25 / $5.00$2,500
GPT-5 Nano$0.15 / $0.60$0.075 / $0.30$2,500
Claude Sonnet 3.5$3.00 / $15.00$1.50 / $7.50$2,500
Claude Haiku 4.5$0.80 / $4.00$0.40 / $2.00$2,500

Pricing as of April 2026. The 50% savings scale linearly regardless of your spending level.

Here's the catch: your requests sit in a queue for 1-24 hours. Most complete within 6 hours during normal periods, but can stretch longer during high-demand times like weekends when everyone's running their weekly batch jobs.

What Actually Works Well with Batch Processing

I've seen teams successfully move these workloads to batch APIs without any user-facing impact:

  • Content pipelines: Product descriptions, SEO content, email campaigns. One e-commerce client processes 50,000 product descriptions weekly via batch, saving $8,000/month.
  • Data enrichment: Customer categorization, lead scoring, sentiment analysis. Perfect for overnight processing of daily transaction logs.
  • Evaluation workflows: Testing prompt variations, model comparisons, quality assessments. Research teams love this for running comprehensive test suites.
  • Training data generation: Creating synthetic datasets, data augmentation, labeling automation. ML teams often need thousands of examples - batch is perfect.
  • Document processing: Contract analysis, research paper summarization, compliance checks. Legal teams process document batches during off-hours.

When Batch APIs Don't Make Sense

Skip batch processing for:

  • User-facing features that need immediate responses
  • Interactive applications like chatbots or writing assistants
  • Workflows where downstream processes depend on immediate results
  • Small volumes (under 100 requests) - the setup overhead isn't worth it

Implementation: Easier Than You'd Think

Both providers use nearly identical patterns. Here's the basic flow:

# 1. Prepare your requests as JSONL
{
  "custom_id": "request-1",
  "method": "POST",
  "url": "/v1/chat/completions",
  "body": {
    "model": "gpt-4o",
    "messages": [{"role": "user", "content": "Summarize this document..."}]
  }
}

# 2. Upload and create batch
curl -X POST https://api.openai.com/v1/batches \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d {
    "input_file_id": "file-abc123",
    "endpoint": "/v1/chat/completions",
    "completion_window": "24h"
  }

# 3. Poll for completion
# Status will be: validating -> in_progress -> completed

# 4. Download results
# Same JSONL format with responses added

The biggest architectural consideration is separating time-sensitive from batch-eligible work. Most teams I work with find that 30-50% of their LLM usage can shift to batch with some pipeline restructuring.

Batch Size Sweet Spot

Optimal batch sizes range from 1,000-10,000 requests. Smaller batches add unnecessary overhead. Larger batches risk longer processing times and make error handling more complex.

Real Cost Impact: The Numbers

Let me show you what this looks like for a team spending $15,000/month on LLM APIs:

Scenario 1: Batch Only
Move 40% of traffic to batch processing:
Monthly savings: $3,000 (20% total reduction)

Scenario 2: Batch + Hybrid Routing
Move 40% to batch (saves $3,000)
Route remaining 60% through Token Landing's hybrid system (saves $3,600-6,300 additional)
Total monthly savings: $6,600-9,300 (44-62% reduction)

I've watched teams implement this exact strategy. The batch portion is straightforward - you're literally using the same models at half price. The hybrid routing on your remaining real-time traffic adds another layer of optimization without touching your batch workflows.

Getting Started This Week

Start small. Pick one non-urgent workflow that processes data in bulk. Content generation and data analysis are usually the easiest wins.

Upload 100-500 test requests to get familiar with the JSONL format and polling mechanism. Once you're comfortable, identify which of your current API calls could run overnight or during low-traffic periods.

Most teams see their first batch jobs complete within 2-6 hours. The savings appear immediately on your next bill.

FAQ

+How long do batch API requests actually take to complete?
Most batches complete within 6 hours during normal periods. OpenAI and Anthropic guarantee completion within 24 hours, but I rarely see jobs take longer than 12 hours. Weekend and holiday periods can add 2-4 extra hours due to higher batch volumes from teams running weekly processing jobs.
+Can I cancel or modify a batch job after submitting it?
You can cancel batches that haven't started processing yet, but once they begin, you're committed. Neither OpenAI nor Anthropic allows modifications to running batches. Plan your requests carefully and test with smaller batches first before scaling up to thousands of requests.
+Are there any model limitations or quality differences with batch APIs?
No quality differences whatsoever. Batch APIs use identical models with the same parameters and capabilities. The only limitations are longer processing times and the need to format requests as JSONL files. You get the exact same outputs you'd receive from real-time API calls.
+What happens if some requests in my batch fail?
Failed requests are clearly marked in the output JSONL with error details, while successful requests return normal responses. You only pay for completed requests. Common failures include malformed prompts or context length exceeded. Both providers include detailed error messages to help you fix and resubmit failed requests.
+Is there a minimum batch size to get the 50% discount?
No minimum batch size exists - even single requests get 50% off. However, the setup overhead makes small batches inefficient. I recommend minimum batches of 100-500 requests to justify the JSONL formatting and polling workflow. The sweet spot for most teams is 1,000-5,000 requests per batch.

Ready to cut your token bill?

Token Landing — hybrid AI tokens, Claude-class UX, saner spend

Related reading

All guides