Convert JSON to Markdown

Paste JSON below and get well-formatted Markdown back.

FAQ

What kind of JSON turns into a Markdown table?

A flat array of objects — like a list of records from an API — converts to a Markdown table, with each object's keys as columns.

What happens to nested JSON?

JSON that isn't a flat array of objects (nested objects, single objects, or arrays of arrays) is rendered as a pretty-printed, fenced ```json code block instead, so no structure is lost.

Why did I get an error?

The converter only accepts valid JSON. If the text you pasted isn't valid JSON, you'll see a 'Could not convert that JSON' error — check for a missing bracket, quote, or trailing comma.