Skip to content

ReddGet - Download any Reddit Video/Image from Post (Unofficial API)

License

Notifications You must be signed in to change notification settings

Deadpool2000/ReddGet-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

ReddGet - Reddit Downloader (Unofficial API)

The Reddit Media Downloader is an Unoffcial Freemium Reddit API provides a seamless solution for downloading videos and photos directly from Reddit. This API allows users to retrieve media content from Reddit posts, supporting video files in .mp4 format and image files in various formats like .jpg and .png.

Get it on

This API listed on RapidAPI - Check Here

logo-ra

Key Features

  1. Download any Reddit Video/Image from Reddit post link
  2. Multiple download format options
  3. This is Freemium API

Endpoints

  • get_video/: Downloads videos from Reddit posts.
  • get_image/: Downloads images from Reddit posts.

1. Download Video from Reddit

GET /get_video/

Description:
Downloads a video from a given Reddit post URL.

Request Parameters:

Parameter Type Description Required
url string The URL of the Reddit post with video Yes

Example Request:

GET /get_video/?url=https://www.reddit.com/r/subreddit/comments/post_id/

Example Response (JSON)

{
    {
        "download_links": [
        {
            "Height": "392",
            "URL": "{download_url}",
            "Width": "220"
        },
        {
            "Height": "480",
            "URL": "{download_url}",
            "Width": "270"
        },
        {
            "Height": "640",
            "URL": "{download_url}",
            "Width": "360"
        },
        {
            "Height": "854",
            "URL": "{download_url}",
            "Width": "480"
        },
        {
            "Height": "1280",
            "URL": "{download_url}",
            "Width": "720"
        }
  ],
  "thumbnail": "{thumbnail_url}",
  "title": "{post_title}"
    }
}

2. Download Image from Reddit

GET /get_image/

Description:
Downloads an image from a given Reddit post URL.

Request Parameters:

Parameter Type Description Required
url string The URL of the Reddit post with image Yes

Example Request:

GET /get_image/?url=https://www.reddit.com/r/subreddit/comments/post_id/

Example Response (JSON)

{
    {
        "Image URL": "{download_url}",
        "Subreddit Name": "{subreddit_name}",
        "Subreddit URL": "{subreddit_url}",
        "Title": "{post_title}"
    }
}