Make intake feel like a controlled system, not an apology loop.
Intake Platform turns unruly spreadsheets into governed submissions. Define the contract once, accept files through any channel, and either return precise corrections or ship normalized payloads downstream automatically.
Author the contract
Build strict schemas, infer field shapes from messy files, and publish templates people can actually follow.
Schema Studio02Review only the edge cases
Keep drift, rejections, and vendor scorecards visible without forcing ops to babysit every upload.
Ops Queue03Ship intake anywhere
Embed the uploader in your product or portal and keep the same validation and normalization backbone.
Embeddable UploaderA product surface for a very operational problem.
The interface is designed around the actual object that matters here: a file entering a governed system. Every part of the workflow follows that same mental model.
Create the schema your downstream systems expect.
Accept files through whichever channel partners already use.
Catch malformed rows, drift, and enum mismatches before import.
Return correction workbooks or deliver clean records downstream.
curl -X POST https://api.viminlabs.com/v1/jobs \
-H "Authorization: Bearer ik_..." \
-H "Content-Type: multipart/form-data" \
-F "file=@catalog.xlsx" \
-F "schema_id=vendor_sku_list"
# → 200 OK
{
"job_id": "9f3a…",
"status": "NORMALIZED",
"record_count": 847,
"issues": []
}Explicit contracts, not spreadsheet folklore.
Your schema is the source of truth. Bad submissions are surfaced immediately instead of turning into downstream cleanup work.
Useful rejection feedback.
Correction reports identify exact fields and rows so submitters can fix the file instead of escalating to your team.
Priced like infrastructure.
Usage-based plans align with throughput, not headcount, so the product scales with actual intake volume.
Simple job-based plans.
Start free, then scale by processed volume instead of seats.
- 100 jobs / month
- Upload, API, email, and SFTP
- Schema Studio and Ops Queue
- Validation reports
- 5,000 jobs / month
- Destination sync and reprocessing
- Change detection
- Priority support
- Unlimited jobs
- Custom integrations
- SLA and dedicated support
- On-prem deployment