https://github.com/haxzie-xx/instagram-downloader
Node.js/Express app to retrive instagram video/image download urls
https://github.com/haxzie-xx/instagram-downloader
crawler downloader express instagram instagram-scraper nodejs
Last synced: 3 months ago
JSON representation
Node.js/Express app to retrive instagram video/image download urls
- Host: GitHub
- URL: https://github.com/haxzie-xx/instagram-downloader
- Owner: haxzie-xx
- License: apache-2.0
- Created: 2017-12-07T09:06:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-10T04:06:28.000Z (over 7 years ago)
- Last Synced: 2025-03-16T20:51:18.850Z (3 months ago)
- Topics: crawler, downloader, express, instagram, instagram-scraper, nodejs
- Language: JavaScript
- Homepage:
- Size: 23.4 KB
- Stars: 34
- Watchers: 2
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Instagram-Downloader
Crawler to fetch download links for instagram videos and images.
## How to use?
* Clone the repository to your system
* make sure you have node.js installed
* cd into the project folder and run `npm install`## API Endpoints
`/instagram/image`Type : GET
Param : url
`/instagram/video`
Type : GET
Param : url
ex: `localhost:8080/instagram/video?url=https://www.instagram.com/p/BcZD7fbDV_R/`
resposnse:
```json
{
"title": "Instagram post by p l s u r • Dec 7, 2017 at 6:53am UTC",
"url": "https://www.instagram.com/p/BcZD7fbDV_R/",
"file": "video",
"video_link": "https://instagram.fcok1-1.fna.fbcdn.net/vp/53043bd2781/5A2FB313/t50.2886-16/2500153488_n.mp4"
}
```