VOOZH about

URL: https://apify.com/ntriqpro/data-format-converter

⇱ Data Format Converter — CSV ⇄ JSON ⇄ XML ⇄ Excel · Apify


👁 Data Format Converter - CSV, JSON, XML Transformation avatar

Data Format Converter - CSV, JSON, XML Transformation

Pricing

$30.00 / 1,000 data converteds

Go to Apify Store

Data Format Converter - CSV, JSON, XML Transformation

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

Pricing

$30.00 / 1,000 data converteds

Rating

0.0

(0)

Developer

👁 daehwan kim

daehwan kim

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

a month ago

Last modified

Share

Data Format Converter

Convert between CSV, JSON, and XML formats instantly. Supports URL input or direct text. Perfect for ETL pipelines and data engineering workflows.

Features

  • Multi-format conversion: CSV ↔ JSON ↔ XML
  • Flexible input: URL or direct text
  • Customizable delimiters: Support any CSV delimiter
  • Pretty printing: Optional formatting for JSON/XML
  • Open source: Built with papaparse and fast-xml-parser
  • Pay-per-use pricing: $0.03 per conversion event

Input Parameters

ParameterTypeRequiredDefaultDescription
inputUrlstringNoURL to the input file (CSV, JSON, or XML)
inputTextstringNoPaste your data directly here if no URL
sourceFormatenumYescsvFormat of input data: csv, json, or xml
targetFormatenumYesjsonFormat to convert to: csv, json, or xml
delimiterstringNo,Delimiter character for CSV (only for CSV input/output)
prettyPrintbooleanNotrueFormat JSON/XML output for readability

Note: Either inputUrl or inputText is required.

Output

The actor returns a dataset with the following fields:

FieldTypeDescription
sourceFormatstringInput format (csv, json, or xml)
targetFormatstringOutput format (csv, json, or xml)
inputRowsintegerNumber of rows/items in input
outputTextstringConverted output data
outputSizeintegerOutput size in bytes
disclaimerstringData accuracy disclaimer

Pricing

$0.03 per conversion event — charged once per successful conversion regardless of data size.

Examples

Example 1: CSV to JSON (Direct Text)

{
"inputText":"name,age,city\nAlice,30,Seoul\nBob,25,Busan",
"sourceFormat":"csv",
"targetFormat":"json",
"prettyPrint":true
}

Output:

[
{
"name":"Alice",
"age":"30",
"city":"Seoul"
},
{
"name":"Bob",
"age":"25",
"city":"Busan"
}
]

Example 2: JSON to CSV (URL Input)

{
"inputUrl":"https://example.com/data.json",
"sourceFormat":"json",
"targetFormat":"csv",
"delimiter":";"
}

Example 3: XML to JSON

{
"inputUrl":"https://example.com/data.xml",
"sourceFormat":"xml",
"targetFormat":"json",
"prettyPrint":true
}

Disclaimer

This tool converts data between common formats using open source libraries. Output accuracy depends on input data structure and encoding. Complex nested structures may not convert perfectly between all formats. Always validate converted data before use in production systems.

Libraries Used

License

Open source. Libraries used under their respective licenses (MIT, Apache 2.0).


🔗 Related Actors by ntriqpro

Build your data pipeline with the ntriqpro Actor suite:

⭐ Love it? Leave a Review

Your rating helps professionals discover this actor. Rate it here.

You might also like

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

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.

JSON To XML Converter

zsoftware/json-to-xml-converter

Easily convert structured JSON data into well-formed XML. This actor accepts raw JSON text or a file and outputs clean, standards-compliant XML—perfect for data transformation pipelines, integrations, or legacy system compatibility.

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

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!

XML to JSON Converter

rainminer/xml-to-json-converter

Parse XML documents to structured JSON. Accepts a URL or raw XML string. Automatically unwraps repeated elements into individual dataset rows. Built for AI agents and data pipelines.

RSS / XML Scraper

jupri/rss-xml-scraper

💫 Scrape RSS / XML / Sitemap or other XML

Image Converter

tufantoksoz/image-converter

Convert images between different formats quickly and easily. Transform PNG to JPG, JPG to WebP, or any supported format with optional resizing and quality control.

👁 User avatar

Tufan Toksöz

5

Related articles

How to parse XML in JavaScript (step-by-step guide)
Read more