CSV profiler
Scan a CSV and get per-column type, missing values, unique counts and top values.
CSV profiler
Paste CSV data and this tool scans it column by column, reporting what's actually in your data before you build a pipeline, write a schema or trust an import. For every column it estimates a type — integer, decimal, date, boolean or text — and shows the share of values that don't match it, so a column that looks numeric but hides a stray "N/A" or a typo stands out immediately.
Each column report also covers missing cells and their share of the total, how many unique values are present, and a suggestion for whether the column is safe to use as a key: it only qualifies when every row has a value and no two rows share one. Numeric columns get a minimum, maximum and average; text columns get the shortest and longest value length. The most frequent values are listed with their counts, so you can spot a column that's really a category in disguise, or one dominated by a single repeated value.
The delimiter is auto-detected from the data, or you can force comma, semicolon, tab or pipe. Turn off "First row is header" for data that starts straight away, and switch the output between a readable overview and a tab-separated table you can paste into a spreadsheet. Ragged CSV is tolerated: a short row leaves its missing columns marked, and a long row's extra fields are simply ignored rather than breaking the whole scan.
Everything runs locally in your browser — nothing you paste is uploaded anywhere, which matters for CSV exports that often carry real customer or business data. Copy the report, download it as a .txt file, or send it straight into another tool's input to keep working.