Paste a CSV or drop a .csv file and Plotiq outputs clean JSON live — array-of-objects or object-of-arrays shapes, pretty-print on or off, leading-zero IDs preserved.
Perfect for seeding a database, mocking an API, or feeding an LLM.
Drop a .csv file or paste CSV text. Plotiq auto-detects the separator and parses live.
Array-of-objects is the default. Object-of-arrays gives you column-oriented JSON for pandas or Arrow.
Copy to clipboard for a quick paste, or download a .json file for a downstream pipeline.
Array-of-objects is the default — every row becomes one JSON object keyed by the header. Object-of-arrays is column-oriented and helpful when feeding pandas, Arrow, or column stores.
Yes. Numeric-looking strings that start with a zero stay strings in the JSON output, so IDs, phone numbers, and ZIP codes never silently become integers.
The parser is RFC 4180 compliant — "Smith, John" keeps the comma, "He said ""hi""" unescapes correctly, embedded newlines survive the round-trip.
Yes — toggle Pretty in the options row. Off produces minimal single-line JSON; on formats with 2-space indentation for human readability.