Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

ichsnn/slideshare-scrapping-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Slideshare Scrapping API

Usage

Base URL : https://slideshare-image-api.herokuapp.com/

Get Slides Image Source

GET https://slideshare-image-api.herokuapp.com/api/slides/img?url=SLIDESHARE_URL

Output example

{
    results: [
        {
            "slide": 1,
            "image": [
                {
                    "resolution": "320w",
                    "src": "image_url"
                },
                {
                    "resolution": "638w",
                    "src": "image_url"
                },
                {
                    "resolution": "1024w",
                    "src": "image_url"
                }
            ],
        }
    ],
    status: true
}

Download Slides PDF

GET https://slideshare-image-api.herokuapp.com/api/slides/download?url=SLIDESHARE_URL

Built With

  • Typescript
  • Nodejs
  • Expressjs
  • Cheerio
  • Axios
  • Puppeteer