© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Adam Bene
Founder & CTO @ Bene Studio | Join us!
or using the fetch api and Babel you can:
fetch
res = await fetch('/posts') posts = await res.json()
where posts is an object parsed from the response json
posts
see also: developer.mozilla.org/en-US/docs/Web/API/Fetch_AP…
James
I find this pretty helpful: JSON Formatter
It's a web-based tool to view, edit, format, and validate JSON with various mode available such as a tree editor, a code editor, and a plain text editor.