VOOZH about

URL: https://apify.com/web.harvester/json-csv-converter

⇱ JSON to CSV & CSV to JSON Converter Β· Apify


Pricing

$3.00/month + usage

Go to Apify Store

JSON ↔ CSV Converter

Convert between JSON and CSV bidirectionally. Flatten nested objects to dot notation. Handle arrays with stringify, join, or first element. Custom delimiters (comma, semicolon, tab, pipe). Parse types automatically. Upload files, provide URLs, or load from Apify Datasets.

Pricing

$3.00/month + usage

Rating

0.0

(0)

Developer

πŸ‘ Web Harvester

Web Harvester

Maintained by Community

Actor stats

0

Bookmarked

6

Total users

0

Monthly active users

5 months ago

Last modified

Share

πŸ”„ Bidirectional conversion between JSON and CSV formats. Flatten nested objects, handle arrays, customize delimiters.

πŸ‘ Apify Actor
πŸ‘ License: MIT

🎯 What This Actor Does

Convert between JSON and CSV in either direction:

  • JSON β†’ CSV - Flatten nested objects, handle arrays
  • CSV β†’ JSON - Parse types, preserve structure
  • Flexible Input - Upload files, URLs, or Apify Datasets
  • Custom Delimiters - Comma, semicolon, tab, pipe
  • Smart Handling - Numbers, booleans, nested data

πŸš€ Use Cases

Use CaseDescription
Data ExportConvert scraped JSON to CSV for Excel
Data ImportConvert CSV uploads to JSON for APIs
IntegrationBridge different system formats
ReportingPrepare data for business tools
MigrationMove data between platforms

πŸ“₯ Input Examples

JSON to CSV

{
"mode":"json-to-csv",
"datasetId":"abc123",
"flatten":true,
"delimiter":","
}

CSV to JSON

{
"mode":"csv-to-json",
"fileUrl":"https://example.com/data.csv",
"parseNumbers":true,
"parseBooleans":true
}

βš™οΈ Configuration

ParameterTypeDefaultDescription
modestringjson-to-csvConversion direction
filestring-Upload a file
fileUrlstring-URL to file
datasetIdstring-Load from Apify Dataset
flattenbooleantrueFlatten nested objects to dot notation
arrayHandlingstringstringifyHow to handle arrays: stringify, first, join
delimiterstring,CSV column separator
includeHeadersbooleantrueInclude headers in CSV
parseNumbersbooleantrueParse numeric strings
parseBooleansbooleantrueParse true/false strings

πŸ“€ Output

Conversion Result

{
"status":"success",
"inputFormat":"JSON",
"outputFormat":"CSV",
"rowCount":1500,
"columnCount":12,
"downloadUrl":"https://api.apify.com/v2/..."
}

Nested Object Flattening

Input JSON:

{
"name":"John",
"address":{
"city":"NYC",
"zip":"10001"
}
}

Output CSV:

name,address.city,address.zip
John,NYC,10001

πŸ’° Cost Estimation

RowsApprox. TimeCompute Units
1,000~5 seconds~0.005
10,000~15 seconds~0.02
100,000~1 minute~0.1

πŸ”§ Technical Details

  • Language: TypeScript / Node.js 22
  • Memory: 256MB-512MB
  • Speed: 50K+ rows/second

πŸ“„ License

MIT License - see LICENSE for details.

You might also like

JSON to CSV Converter

eloquent_mountain/json-to-csv-converter

JSON to CSV Converter. Effortlessly transform JSON data into CSV with our Apify actor. Handle nested structures, expand lists into rows, and customize separators and delimiters. Input via URL or paste JSON text. Ideal for data analysis and reporting!

JSON Diff Tool

automation-lab/json-diff-tool

Semantically compare two JSON objects or files. Outputs a structured diff with dot-notation paths for every added, removed, changed, and type-changed field. Supports nested objects, arrays, URL fetching, and ignore lists.

πŸ‘ User avatar

Stas Persiianenko

4

Data Converter β€” JSON, CSV & XML

accurate_pouch/data-converter

Convert between JSON, CSV, and XML formats in bulk. JSON to CSV, CSV to JSON, JSON to XML, XML to JSON. Handles quoted fields, nested objects. $0.003/conversion.

πŸ‘ User avatar

Manchitt Sanan

2

Data Format Converter - CSV, JSON, XML Transformation

ntriqpro/data-format-converter

Convert data between common formats: CSV, JSON, and XML. Bulk transform files without manual work.

Business Intelligence Data Converter

m3web/business-intelligence-data-converter

Business Intelligence Data Converter transforms any Apify dataset into BI‑ready tables. Flatten nested fields, normalize rows, and export clean CSV/XLSX for Excel, Power BI, or Tableau β€” a universal converter tool, no coding required.

File Converter All-in-one

tufantoksoz/file-converter

Convert files between popular formats at scale on Apify. Transform documents, spreadsheets, and images with professional-grade quality and performance. Convert word to pdf, jpeg to png and more

πŸ‘ User avatar

Tufan ToksΓΆz

12

XML to JSON Converter

eloquent_mountain/xml-to-json-converter

XML to JSON Converter Convert any XML file to JSON effortlessly with this Apify actor. Handle complex XML structures and transform them into structured JSON data. Supports input via URL or direct text paste, making it easy to integrate into your data processing workflows.

SQL on Files (JSON, CSV and more)

web.harvester/sql-on-files-json-csv-and-more

Run SQL queries on CSV, JSON, and Parquet files using DuckDB. No database setup required. Upload files, provide URLs, or query Apify Datasets directly. Full SQL support: JOINs, aggregations, window functions. Export as JSON, CSV, or Parquet. Lightning-fast analytical queries.

2

Related articles

How to parse JSON in JavaScript
Read more
How to parse JSON with Python
Read more