$.store.book[0].authorNigel Rees
Free JSONPath tester and evaluator for API JSON. Extract matching nodes in real time, inspect paths, and copy JSON results while parsing stays local in your browser.
{ "store": { "book": [ { "category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95 }, { "category": "fiction", "author": "Evelyn Waugh", "title": "Sword of Honour", "price": 12.99 }, { "category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": 8.99 } ], "bicycle": { "color": "red", "price": 19.95 } }, "expensive": 10 }
3 node(s) matched in 0 ms
$.store.book[0].authorNigel Rees
$.store.book[1].authorEvelyn Waugh
$.store.book[2].authorHerman Melville
Click any expression to apply it to the input.
$.store.book[*].author or $..author.The 2026 FIRE Calculator (Inflation Adjusted). Simulate real purchasing power, analyze retirement savings gaps, and generate a visual wealth roadmap. One-click CSV export for your Excel or Notion finance dashboard. 100% Private, client-side calculation.
Calculate trade position size from account balance, risk %, entry, and stop loss. Runs locally in your browser with no uploads, so you can compare risk scenarios before you trade.
Calculate compound interest from principal, recurring contributions, APY, and time. Visualize principal, interest, and final balance with a local interactive chart.
Use this Loan Calculator / Mortgage Calculator to estimate monthly payment, total interest, and an amortization schedule locally. Enter amount, rate, and term to calculate now with instant charts.
Use this Investment Calculator / ROI Calculator to estimate starting capital, monthly contributions, annual return, and inflation-adjusted results locally. Calculate projected returns with an instant compound interest chart, ROI, and yearly schedule.
Use this APR to APY Calculator to convert between APR and APY locally. Enter a rate, choose compounding frequency, and see the effective interest rate, spread, and frequency comparison instantly.
Use this Profit Margin Calculator to calculate gross profit, Markup, Margin, and selling price locally. Enter cost and price, or cost and target margin, then calculate your margins instantly.
Use this CPM Calculator and CPC Calculator to estimate ad spend, impressions, clicks, CPM, CPC, and CTR locally. Enter budget and target costs to plan campaign scenarios instantly.
This tool uses local JavaScript JSONPath evaluation in the browser: it parses text with JSON.parse, then walks object and array tokens for properties, indexes, wildcards, recursive descent, slices, and common filter comparisons. The whole process stays in the current page memory and does not require a server, which makes it suitable for API payloads containing keys, user records, or internal configuration.
To avoid overstating compatibility, the implementation focuses on common JSONPath patterns such as $.store.book[0].title, $..author, $.store.book[*], and $.store.book[?(@.price < 10)]. JSONPath dialects vary across ecosystems, so highly custom script expressions should still be checked against your target runtime.
[?(@.price < 10)] and [?(@.category == "fiction")].