What is a CSV?
CSV (comma-separated values) is a plain-text file format for tabular data where each line is a row and each value within a row is separated by a comma, making it one of the most widely supported data interchange formats across software.
Because a CSV file is just plain text — no proprietary binary format, no required software to open it — it has become the lowest-common-denominator way to move tabular data between systems that otherwise share no common API. Nearly every spreadsheet tool, database, and business application can export to and import from CSV, which makes it the default fallback whenever two systems need to exchange data but don't have a direct integration.
The format's simplicity is also its main limitation: CSV has no native way to represent data types (everything is text until something parses it), no nested or hierarchical structure, and inconsistent handling of edge cases like a comma inside a quoted field or different character encodings, which is a common source of subtle import bugs. Values containing the separator character are typically wrapped in quotes, but not every tool implements this identically, which is why CSV parsing bugs are so common in practice.
Despite these limitations, CSV remains foundational to business data workflows precisely because of its universality — it's often the fastest way to get data out of a legacy system or into one that has no modern API.
In practice with Neotask
Neotask agents frequently work with CSV as the interchange format for bulk operations — exporting a filtered contact list to CSV for a marketing tool that has no direct integration, or importing a vendor's CSV price list and mapping its columns onto internal fields automatically.
Related terms
- csv-import-automation
- custom-integration
- crm-data-hygiene
- conditional-logic-automation
Plans
Free
$0/mo
Download without a card and start for free.
Individual
$50/mo
The full personal agent platform for one person.
Business
$100/mo
One company workspace with room to add your team.
Enterprise
$200/mo
Multiple workspaces and capacity for larger teams.
Continue