FileFeed: Stop Writing CSV Parsers for Every New Client
FileFeed: Stop Writing CSV Parsers for Every New Client If you're building B2B SaaS, you know the pain. Every enterprise client sends data in their own format. One sends Worker_ID, Name. Another se...

Source: DEV Community
FileFeed: Stop Writing CSV Parsers for Every New Client If you're building B2B SaaS, you know the pain. Every enterprise client sends data in their own format. One sends Worker_ID, Name. Another sends EmpID, FullName. A third sends Mitarb_Nr, Naam. You end up writing custom parsing code for each one. It works until you have 20 clients and 20 brittle scripts. We built FileFeed to fix this. What is FileFeed? FileFeed is a file processing platform for automated file ingestion. Files come in through SFTP, email, API, or cloud storage. FileFeed validates them, maps the columns to your schema, runs transformations, and delivers clean JSON to your product. One schema. Every client mapped to it. Zero custom parsers. How it works Your client drops a file to SFTP FileFeed detects the pipeline (client + folder match) Schema validation runs Field mappings applied Transformations executed Webhook fires to your system You fetch clean JSON via API Each client gets their own SFTP credentials, isolated