Paste JSON → choose the items array → enter dot/JSONPath‑like paths (e.g., displayName.text) → preview values → export CSV.
.json file.displayName or displayName.text. Nested arrays are flattened.{
"places": [
{"displayName": {"text": "SF Dry Dock"}, "rating": 4},
{"displayName": {"text": "Impark Lot 85"}, "rating": 5}
]
}
Try paths: displayName, displayName.text, rating. Items array: places.
curl -s https://jsonplaceholder.typicode.com/users \ -o users.json # Then drop users.json into the app
Paths to try on users: name, email, address.city
Is this the same as the JMeter JSON Path Extractor? No—this is a browser tool for exploring/extracting fields and exporting CSV.
Does my data upload? No. Everything runs locally for privacy.
Related: Extract fields from JSON online