Block 1 - Send to Parquet API
- Type / Role
- n8n-nodes-base.httpRequest - httpRequest
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Convert Parquet, Feather, ORC & Avro Files with ParquetReader This workflow allows you to upload and inspect Parquet, Feather, ORC, or Avro files via the [ParquetReader API](https://parquetreade...
n8n-nodes-base.httprequest, n8n-nodes-base.webhook, n8n-nodes-base.stickynote, n8n-nodes-base.code
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by ParquetReader.
Original n8n.io sourceThis workflow allows you to upload and inspect Parquet, Feather, ORC, or Avro files via the ParquetReader API. It instantly returns a structured JSON preview of your data β including rows, schema, and metadata β without needing to write any custom code.
You can trigger this flow by sending a POST request with a file using curl, Postman, or from another n8n flow.
curl):curl -X POST http://localhost:5678/webhook-test/convert \
-F "[email protected]"
> Replace converted.parquet with your local file path. You can also send Avro, ORC or Feather files.
You can reuse this flow by calling the webhook from another n8n workflow using an HTTP Request node.
Make sure to send the file as form-data with the field name file.
file)https://api.parquetreader.com/parquet as multipart/form-data (field name: file){
"data": [
{
"full_name": "Pamela Cabrera",
"email": "[email protected]",
"age": "24",
"active": "True",
"latitude": "-36.1577385",
"longitude": "63.014954",
"company": "Carter, Shaw and Parks",
"country": "Honduras"
}
],
"meta_data": {
"created_by": "pyarrow",
"num_columns": 21,
"num_rows": 10,
"serialized_size": 7598,
"format_version": "0.12"
},
"schema": [
{ "column_name": "full_name", "column_type": "string" },
{ "column_name": "email", "column_type": "string" },
{ "column_name": "age", "column_type": "int64" },
{ "column_name": "active", "column_type": "bool" },
{ "column_name": "latitude", "column_type": "double" },
{ "column_name": "longitude", "column_type": "double" },
{ "column_name": "company", "column_type": "string" },
{ "column_name": "country", "column_type": "string" }
]
}
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Convert parquet, feather, ORC & Avro files with ParquetReader |
|---|---|
| Complexity | beginner |
| Nodes | 4 |
| Categories | Engineering |
| Author | ParquetReader |
| Published | 30 Mar 2025 |
Use the JSON export at /data/workflows/3365/3365.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Convert Parquet, Feather, ORC & Avro Files with ParquetReader This workflow allows you to upload and inspect Parquet, Feather, ORC, or Avro files via the [ParquetReader API](https://parquetreade...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Engineering use case.