Test a REST API visually
Choose a request, inspect its JSON response, and highlight one business value inside a larger object.
A small educational playground inside the blog
This page extends the article with a concrete demo. Pick an endpoint, read the full JSON, and then point to one value to see exactly where it lives in the overall structure.
Interactive demo
Explore an API response without leaving the site
Click a use case, then click a business value. The full JSON stays visible and the chosen area is highlighted.
Endpoint
GET /customers/42?include=accounts,recentTransfers
Status
200 OK
JSON path
data.customer.fullName
Values to inspect
JSON
/customers/42?include=accounts,recentTransfers
Selected value
JSON path
data.customer.fullName
Value
"Stephane Malho"
A simple value, but placed inside a broader customer object.
Counter analogy
At the counter, this is the name shown on the retrieved record.
In the API, the value lives inside `data.customer`.
What this demo shows
An API can return an object richer than a single database row.
The JSON path helps link one value to its exact location.
The SQL parallel remains useful, but the API adds service and formatting layers.
Last updated on Mar 26, 2026
