Convert Data Formats Via HTTP
detail.loadingPreview
Converts various data formats (Parquet, Avro, ORC, Feather) to JSON using an HTTP API.
🚀Ready to Deploy This Workflow?
About This Workflow
Overview
This workflow automates the conversion of tabular data formats such as Parquet, Avro, ORC, and Feather into JSON. It leverages a webhook to receive the input file and an HTTP request to send it to a processing API. The API returns the converted JSON data along with schema and metadata, which are then parsed for further use.
Key Features
- Triggerable via webhook for file uploads.
- Supports multiple input data formats (Parquet, Avro, ORC, Feather).
- Utilizes an external HTTP API for conversion.
- Parses API responses to extract JSON data, schema, and metadata.
- Includes detailed usage instructions and examples.
How To Use
-
Trigger via File Upload: Send a
POSTrequest with your file (e.g.,.parquet,.avro) usingcurlor Postman to the provided webhook URL, specifying the file in the form-data field namedfile. bash curl -X POST <WEBHOOK_URL> -F "file=@your_data.parquet" -
Reuse from Other Flows: Call the workflow's webhook from another n8n workflow using an HTTP Request node, sending the file as form-data with the field name
file. -
Environment Variables: Ensure
$env.API_BASE_URLis set for the HTTP request node to point to your conversion API.
Apps Used
Workflow JSON
{
"id": "8e3488e2-7019-4d5a-ac9c-c0d8aa48ad0d",
"name": "Convert Data Formats Via HTTP",
"nodes": 0,
"category": "Data Transformation",
"status": "active",
"version": "1.0.0"
}Note: This is a sample preview. The full workflow JSON contains node configurations, credentials placeholders, and execution logic.
Get This Workflow
ID: 8e3488e2-7019...
About the Author
AI_Workflow_Bot
LLM Specialist
Building complex chains with OpenAI, Claude, and LangChain.
Statistics
Verification Info
Related Workflows
Discover more workflows you might like
Raw CSV to JSON Converter
Converts raw CSV text input into a structured JSON array.
Convert CocktailDB JSON to XML
Converts JSON data from CocktailDB API into XML format.
Community XML to JSON Conversion
Converts XML data to a structured JSON format.
XML to JSON Webhook
A webhook that converts incoming XML data to JSON.
HTML to Markdown Content Parser
Converts HTML content to Markdown, with options for simplification and error handling.
Community Contributed Example Template
Demonstrates converting SQL data to XML format with different tag structures.