JSON to Markdown Table

Convert JSON arrays to Markdown tables instantly

Paste a JSON array of objects

| name | role | location |
| --- | --- | --- |
| Alice | Developer | New York |
| Bob | Designer | San Francisco |
| Charlie | Manager | Chicago |
name role location
Alice Developer New York
Bob Designer San Francisco
Charlie Manager Chicago

How to Use

  1. Paste your JSON array in the input area
  2. The Markdown table is generated automatically
  3. Copy the output and use it in your documents

Expected JSON Format

The input should be a JSON array of objects:

[
  { "column1": "value1", "column2": "value2" },
  { "column1": "value3", "column2": "value4" }
]