Skip to content

JSON

JavaScript Object Notation

Easy — everyone uses thisBackend

ELI5 — The Vibe Check

JSON is the universal language the internet uses to pass data around. It looks like a JavaScript object — curly braces, key-value pairs. Your app sends JSON, gets back JSON. It's readable by humans AND computers, which is why everyone uses it.

Real Talk

JSON is a lightweight, text-based data interchange format derived from JavaScript object syntax. It supports strings, numbers, booleans, nulls, arrays, and nested objects. It's the de facto standard for REST API request and response bodies.

Show Me The Code

{
  "id": 1,
  "name": "Alice",
  "roles": ["admin", "editor"],
  "active": true
}

When You'll Hear This

"Return that as JSON." / "Parse the JSON response to get the user object."

Made with passive-aggressive love by manoga.digital. Powered by Claude.