TOON to CSV converter
When TOON holds a flat table — a uniform array of objects — it maps 1:1 onto CSV, and this tool exports exactly that: a header row plus one line per record, ready for Excel, Sheets or pandas.
If your TOON has nested structure, CSV cannot represent it; the converter says so explicitly instead of flattening your data lossily. Use TOON to JSON for nested documents.
TOON CSV
CSV out
Convert something to print your token receipt.
Questions
- Why does TOON to CSV sometimes refuse to convert?
- CSV can only represent a flat table — a uniform array of objects. If your TOON is nested or isn't an array, it cannot be expressed as CSV, so the tool tells you instead of dropping data. Use TOON to JSON for nested documents.
- How are types handled in the CSV output?
- CSV is inherently untyped, so values are written as plain text. The header row comes from the TOON field list and one line is emitted per record.