JSON Field Explorer FreePrivate (in‑browser)No signup
Open the app

JSON Path Extractor – Online JSONPath Finder & Field Picker

Paste JSON → choose the items array → enter dot/JSONPath‑like paths (e.g., displayName.text) → preview values → export CSV.

How it works

  1. Paste JSON or drop a .json file.
  2. Pick the array you want to iterate (the “rows”).
  3. Add paths like displayName or displayName.text. Nested arrays are flattened.
  4. Copy CSV or export a file.

Example JSON

{
  "places": [
    {"displayName": {"text": "SF Dry Dock"}, "rating": 4},
    {"displayName": {"text": "Impark Lot 85"}, "rating": 5}
  ]
}

Try paths: displayName, displayName.text, rating. Items array: places.

Open this JSON in the app

Fetch a public API with cURL

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

FAQ

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