I was building AMAZON CLONE. I had no source to collect JSON data for categories, product details, etc. Collecting(copying) the data from AMAZON, and writing it in JSON format for every product was a tedious task of the project.
"Get JSON" is a simple web-scraping tool which provides JSON data from web-pages, required for your project. Thereby saving tons of copy-pasting time.
Step-1: The URLs from which the similar(same props) data to be fetched are specified in URLs Section.
Step-2: The Classes(whole string) of required data's HTML element are specified in classes section, with other optional settings.
- Key-name : Unique name given to a value in an object.
- Data-type [String, Number, Boolean] : Data-type of a value.
- Search-type [Single Value, Multiple Values]: Search Until a value is found (or) Search whole page and find all values.
- Value-Type [inner text, href, src, custom]: Type of value to be extracted from selected HTML element (Attribute/Inner-Text).
Step-3:(Optional) Adjust the Global Settings. (Whether to include the fields in JSON on not)
Step-4: Hit the "Get JSON" Button.
Step-5: ...few moments later... Shazam⚡!!. You have your JSON data from a webpage.
(And ofcourse the same keys can be fetched for multiple URLs)
You can save the inputs(urls, classes, etc) to import and access in future.
Watch the DEMO VIDEO if still not clear.
Any developer who are building a Clone Application (or) who has requirement of JSON data from webpages for personal projects.