
Json To Excel
Pricing
Pay per usage
Go to Store

Json To Excel
Convert your json into a tabular form, such as CSV, Excel or HTML table fast and easy.
0.0 (0)
Pricing
Pay per usage
3
Total users
24
Monthly users
5
Runs succeeded
>99%
Last modified
a year ago
.actor/INPUT_SCHEMA.json
{ "title": "Transform json to different formats.", "type": "object", "schemaVersion": 1, "properties": { "JSON": { "title": "JSON", "type": "string", "description": "Paste your JSON here.", "editor": "textarea", "prefill": "[\n {\n \"title\": \"Apify: Full-stack web scraping and data extraction platform\",\n \"url\": \"https://apify.com/\",\n \"displayedUrl\": \"https://apify.com\",\n \"description\": \"Crawls arbitrary websites using the Chrome browser and extracts data from pages using a provided JavaScript code. The actor supports both recursive crawling and ...\",\n \"emphasizedKeywords\": [],\n \"productInfo\": {},\n \"type\": \"organic\",\n \"position\": 1\n },\n {\n \"title\": \"Apify (@apify) · X\",\n \"url\": \"https://twitter.com/apify?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor\",\n \"displayedUrl\": \"https://twitter.com/apify\",\n \"description\": \"\",\n \"emphasizedKeywords\": [],\n \"siteLinks\": [],\n \"productInfo\": {},\n \"type\": \"organic\",\n \"position\": 2\n },\n {\n \"title\": \"Apify\",\n \"url\": \"https://github.com/apify\",\n \"displayedUrl\": \"https://github.com › apify\",\n \"description\": \"Generic REST API for scraping websites. Drop-in replacement for ScrapingBee, ScrapingAnt, and ScraperAPI services. And it is open-source!\",\n \"emphasizedKeywords\": [],\n \"siteLinks\": [],\n \"productInfo\": {},\n \"type\": \"organic\",\n \"position\": 3\n },\n {\n \"title\": \"Apify Pricing, Alternatives & More 2024\",\n \"url\": \"https://www.capterra.com/p/150854/Apify/\",\n \"displayedUrl\": \"https://www.capterra.com › Data Extraction Software\",\n \"description\": \"Apify is used by large enterprises, SMEs, and independent developers. The Apify platform lets you turn any website into an API and reliably extract data at any ...\",\n \"emphasizedKeywords\": [\n \"Apify\"\n ],\n \"siteLinks\": [],\n \"productInfo\": {\n \"rating\": 4.8,\n \"numberOfReviews\": 150\n },\n \"type\": \"organic\",\n \"position\": 4\n },\n {\n \"title\": \"Apify\",\n \"url\": \"https://cz.linkedin.com/company/apifytech\",\n \"displayedUrl\": \"6.6K+ followers\",\n \"description\": \"Apify is a full-stack web scraping and browser automation platform that lets you extract data from websites and automate workflows on the web.\",\n \"emphasizedKeywords\": [\n \"Apify\"\n ],\n \"siteLinks\": [],\n \"productInfo\": {},\n \"type\": \"organic\",\n \"position\": 5\n },\n {\n \"title\": \"Apify Reviews 2024: Details, Pricing, & Features\",\n \"url\": \"https://www.g2.com/products/apify/reviews\",\n \"displayedUrl\": \"https://www.g2.com › ... › Apify › Apify Reviews\",\n \"description\": \"One of the best features of Apify is their own free scrapers. They provide a variety of ready-made solutions for common web scraping tasks, such as extracting ...\",\n \"emphasizedKeywords\": [\n \"Apify\"\n ],\n \"siteLinks\": [],\n \"productInfo\": {\n \"rating\": 4.8,\n \"numberOfReviews\": 112\n },\n \"type\": \"organic\",\n \"position\": 6\n },\n {\n \"title\": \"Apify Tutorial For Beginners | How To Use Apify\",\n \"url\": \"https://www.youtube.com/watch?v=3rrpfW0bEdc\",\n \"displayedUrl\": \"4.9K+ views · 9 months ago\",\n \"description\": \"Apify review: https://speakaboutdigital.com/apify-review/ Apify Tutorial For Beginners | How To Use Apify This is my video tutorial on Apify ...\",\n \"emphasizedKeywords\": [\n \"Apify\"\n ],\n \"siteLinks\": [],\n \"productInfo\": {},\n \"type\": \"organic\",\n \"position\": 7\n }]" } }, "required": ["JSON"]}
.actor/actor.json
{ "actorSpecification": 1, "name": "json-to-excel", "title": "JSON to EXCEL", "description": "Changes JSON into dataset", "version": "0.0.1", "storages": { "dataset": { "actorSpecification": 1, "title": "Instagram Scraper", "description": "Too see all scraped properties, export the whole dataset or select All fields instead of Overview", "views": {} } }}
.gitignore
# This file tells Git which files shouldn't be added to source control
.ideanode_modules
Dockerfile
# First, specify the base Docker image. You can read more about# the available images at https://sdk.apify.com/docs/guides/docker-images# You can also use any other image from Docker Hub.FROM apify/actor-node:16
# Second, copy just package.json and package-lock.json since it should be# the only file that affects "npm install" in the next step, to speed up the buildCOPY package*.json ./
# Install NPM packages, skip optional and development dependencies to# keep the image small. Avoid logging too much and print the dependency# tree for debuggingRUN npm --quiet set progress=false \ && npm install --only=prod --no-optional \ && echo "Installed NPM packages:" \ && (npm list --all || true) \ && echo "Node.js version:" \ && node --version \ && echo "NPM version:" \ && npm --version
# Next, copy the remaining files and directories with the source code.# Since we do this after NPM install, quick build will be really fast# for most source file changes.COPY . ./
# Optionally, specify how to launch the source code of your actor.# By default, Apify's base Docker images define the CMD instruction# that runs the Node.js source code using the command specified# in the "scripts.start" section of the package.json file.# In short, the instruction looks something like this:## CMD npm start
apify.json
{ "env": { "npm_config_loglevel": "silent" }}
main.js
1// Import Apify SDK. For more information, see https://sdk.apify.com/2const Apify = require('apify');3
4Apify.main(async () => {5 const input = await Apify.getInput();6 const data = JSON.parse(input.JSON);7 console.log(data)8 await Apify.pushData(data);9});
package.json
{ "name": "example-hello-world", "version": "0.0.1", "description": "This is an example of an Apify actor.", "dependencies": { "apify": "^2.0.7" }, "devDependencies": {}, "scripts": { "start": "node main.js", "test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1" }, "author": "It's not you it's me", "license": "ISC"}