Paste CSV data (with header row) to instantly convert it to a JSON array. Supports comma, semicolon, and tab delimiters.
This free online CSV to JSON converter parses CSV (Comma-Separated Values) data and converts it into a structured JSON array. The first row of your CSV is used as the property names (headers) for each JSON object.
Your CSV should include a header row followed by data rows. Example:
id,name,email,active 1,Alice,alice@example.com,true 2,Bob,bob@example.com,false
Each CSV row becomes a JSON object with the header names as keys:
[
{ "id": "1", "name": "Alice", "email": "alice@example.com", "active": "true" },
{ "id": "2", "name": "Bob", "email": "bob@example.com", "active": "false" }
]