JSON para tabela HTML
Renderiza dados JSON como tabela HTML
Entrada JSON
Saída HTML
Render JSON arrays as ready-to-paste HTML tables
Sometimes the right way to share JSON data is a table on a web page or in a doc — not a CSV download or a JSON snippet. Converting an array of objects into HTML produces semantic markup with thead and tbody so you can drop it into a blog post, internal wiki, email, or admin panel without hand-writing rows.
Use the converter when you need to
Embed data in a blog post or wiki
Take a sample API response or query result and turn it into a formatted table in a CMS or doc.
Build an admin or report page
Drop the markup into an internal tool to display a list of records without a frontend framework.
Send data in an HTML email
Render the table as inline-styleable markup that survives email clients better than a JSON snippet.
How to render JSON as a table
- 1
Paste a JSON array of objects into the editor.
- 2
Click Convert to generate semantic table markup with headers from the keys.
- 3
Copy the HTML and paste it into your page, doc, or email.
Keep going
Export as CSV instead
Pick CSV when the consumer is a spreadsheet rather than a web page.
Explore the source data
Inspect the JSON in tree view first to confirm the array shape is consistent.
Format the source
Clean up the input payload so the generated columns are predictable.
Convert to XML
Use XML for legacy systems that don't render HTML.
Common HTML table workflows
Generate the table once and paste it into your API docs or changelog post.
Email a table of records instead of attaching a CSV that no one wants to download.
Drop the generated markup into a static page to validate the data layout before building UI.
Ferramentas relacionadas
Perguntas frequentes
Cole um array JSON de objetos e clique em Convert. As chaves dos objetos viram os cabeçalhos das colunas e cada objeto vira uma linha. O HTML gerado inclui as tags <table>, <thead> e <tbody> corretamente.
Sim. O HTML gerado usa elementos padrão de tabela e não inclui estilos inline, então você pode aplicar qualquer framework CSS ou estilos próprios. Basta copiar o HTML e adicionar suas classes do Tailwind, Bootstrap ou CSS customizado.
Um array “flat” de objetos com chaves consistentes gera as tabelas mais limpas. Exemplo: [{"name":"Alice","role":"Dev"},{"name":"Bob","role":"QA"}]. Objetos aninhados aparecem como JSON serializado (string) dentro das células.
Sim. A ferramenta mostra o código HTML bruto e uma prévia renderizada da tabela lado a lado, para você conferir se o resultado está correto antes de copiar.