Promptles
GTM & Business Tools

JSON (JavaScript Object Notation)

beginner

Definition

The standard data format for APIs. JSON uses curly braces for objects, square brackets for arrays, and key-value pairs to structure data. Almost every modern API sends and receives JSON. Unlike CSVs, JSON can represent nested data, an object inside an object, which makes it flexible but slightly harder to read at first glance.

In the wild

When you call Stripe's API to create a customer, you send a JSON body like {"name": "Acme Corp", "email": "billing@acme.com"} and receive a JSON response with the new customer's ID, creation timestamp, and other metadata.

More from GTM & Business Tools