Semicolon-separated export with headers
sku;name;price TL-001;Label roll;19,90
[
{ "sku": "TL-001", "name": "Label roll", "price": "19,90" }
]Convert a CSV file or pasted rows into a JSON array.
The result will appear here.
Was this tool useful?
CSV is what spreadsheets, marketplace exports and accounting systems produce. JSON is what APIs and scripts consume. Moving between them is one of the most common small chores in day-to-day integration work.
The details are where CSV files go wrong: which delimiter, whether the first row is data or headers, how quoted fields containing the delimiter are handled. All three are settings here, and the delimiter can be detected automatically when you are not sure.
sku;name;price TL-001;Label roll;19,90
[
{ "sku": "TL-001", "name": "Label roll", "price": "19,90" }
]