That export is full of real customer data. Convert it here: it never leaves the tab.
100% OFFLINE. Your data is parsed by JavaScript in this tab. Nothing is sent anywhere — check DevTools → Network.
Converting an export from one shape to another is a five-minute job — and yet the top results all want you to paste your data into their server. That data is usually a real export: customer emails, order lines, internal IDs. This data converter does the whole job in your browser, so nothing is uploaded, nothing is logged, and no account is asked for. Paste JSON, CSV, TSV or YAML — it detects the format automatically — and take out any of the others.
Most quick converters split CSV on commas and break the moment a field contains "Smith, John" or a quoted line break. This one implements RFC 4180 properly: quoted fields, escaped double quotes, commas and newlines inside values, and semicolon or tab delimiters. Nested JSON is flattened with dotted paths (user.address.city) so it can become a flat table at all, and it tells you when it does.
Pick SQL and you get more than escaped values: the tool scans every row and infers the narrowest column type that fits — INTEGER, REAL, BOOLEAN, DATE or VARCHAR(n) sized to the longest value — then emits a CREATE TABLE plus batched INSERT statements with quotes escaped and empty values as NULL. Reserved-word-safe identifiers, ready to paste into a client.
Related: JWT Decoder · RegEx Tester · All free tools