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

推荐订阅源

F
Fortinet All Blogs
爱范儿
爱范儿
P
Proofpoint News Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
Jina AI
Jina AI
B
Blog
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
aimingoo的专栏
aimingoo的专栏
腾讯CDC
C
Check Point Blog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
罗磊的独立博客
B
Blog RSS Feed
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 叶小钗
M
MIT News - Artificial intelligence
GbyAI
GbyAI

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 to Minify JSON and Shrink Your API Payloads in Seconds
Tahmid · 2026-04-28 · via DEV Community

You're debugging a slow API and you open the response in your browser's network tab. The payload is 620 KB. You paste it into a text editor and immediately spot the problem: every key is quoted, every value is neatly indented, and there are blank lines between sections. Your beautiful, readable JSON is costing you hundreds of milliseconds per request.

Whitespace is free when you're reading JSON. It's not free when you're sending it across a network a thousand times a day.

What minification actually does

JSON minification strips out every character that doesn't change what the data means: spaces, newline characters, and indentation. The JSON spec doesn't require any of it — a parser doesn't care whether your keys are separated by \n or nothing at all.

Here's the same config object, formatted vs. minified:

Before (formatted):

{
  "user": {
    "id": 1042,
    "name": "Priya Kapoor",
    "role": "admin",
    "preferences": {
      "theme": "dark",
      "notifications": true,
      "language": "en-US"
    }
  },
  "session": {
    "token": "eyJhbGciOiJIUzI1NiJ9",
    "expires_at": "2026-05-01T00:00:00Z"
  }
}

Enter fullscreen mode Exit fullscreen mode

After (minified):

{"user":{"id":1042,"name":"Priya Kapoor","role":"admin","preferences":{"theme":"dark","notifications":true,"language":"en-US"}},"session":{"token":"eyJhbGciOiJIUzI1NiJ9","expires_at":"2026-05-01T00:00:00Z"}}

Enter fullscreen mode Exit fullscreen mode

Same data. 43% fewer characters. For a small config object the difference is trivial — but when you're serialising paginated API responses, search results, or analytics events, it adds up fast.

Three ways to minify JSON

In the browser (zero setup)

If you're working with a one-off payload — say, you grabbed a response from Postman and need to paste it into a config file — the fastest path is JSON Minifier on jsonindenter.com. Paste, click, copy. Everything runs client-side so nothing leaves your browser, which matters when the JSON contains credentials or PII.

In Python

Python's json module handles this with a single argument:

import json

# Load from a file or string
with open("response.json") as f:
    data = json.load(f)

# Minify by setting separators and no indentation
minified = json.dumps(data, separators=(",", ":"))
print(minified)

Enter fullscreen mode Exit fullscreen mode

separators=(",", ":") tells the encoder to drop the space after each comma and colon. That's the entire trick. For bulk processing, wrap this in a script that walks a directory of JSON files and overwrites each one with its minified version.

In Node.js / JavaScript

const fs = require("fs");

const raw = fs.readFileSync("data.json", "utf8");
const minified = JSON.stringify(JSON.parse(raw));

fs.writeFileSync("data.min.json", minified);
console.log(`Original: ${raw.length} chars → Minified: ${minified.length} chars`);

Enter fullscreen mode Exit fullscreen mode

JSON.stringify without a space argument produces minified output by default. If your current code passes JSON.stringify(data, null, 2) for pretty-printing, removing that third argument is all you need to do in production.

When minification matters most

Minification pays off most in these situations:

  • Static JSON files served from a CDN — config files, feature-flag payloads, i18n translation bundles. These are downloaded on every cold start; every kilobyte counts.
  • High-frequency API endpoints — if an endpoint is hit thousands of times per minute, even a 10 KB saving compounds quickly into meaningful bandwidth cost reduction.
  • Mobile clients on flaky connections — smaller payloads parse faster and fail less often on spotty networks.
  • Logging pipelines — if you're shipping structured JSON logs to a log aggregator, minifying before transmission can cut your ingestion bill noticeably.

Where it doesn't matter: internal service-to-service calls on a fast private network, or any place where debugging the raw wire format outweighs the bandwidth saving.

Minify in production, read in development

The natural workflow is to keep formatted JSON in your version control and your editor (it's much easier to review diffs and catch mistakes), and minify only at build time or at the serialisation layer in production.

If you ever need to go the other direction — you've received a minified blob and need to read it — JSON Indenter formats it back into something human-readable instantly. Paste the minified string and it comes out with proper indentation and syntax highlighting. Useful when you're hunting a bug in a production response.

For tips on validating JSON before you minify it (invalid JSON will cause JSON.parse to throw at runtime), see Why Your JSON Keeps Breaking (And How to Fix It Fast) — it covers the most common syntax mistakes that slip through code review.


What's your preferred approach — minifying at the application layer, at the CDN edge, or somewhere else? And have you ever hit a production bug that traced back to a minification step mangling something unexpectedly?


Free tools used in this post:

  • JSON Minifier — strips whitespace from any JSON payload instantly, runs entirely in your browser
  • JSON Indenter — formats minified JSON back into readable, indented output
  • All tools — client-side, no sign-up, nothing leaves your browser