Homepage of the internet
Reddit is a social platform offering a feed of news, stories, and community content, with official API documentation available.
import requests
url = "https://oauth.reddit.com/api/v1/me"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"User-Agent": "MyRedditApp/1.0 (by /u/YourRedditUsername)"
}
response = requests.get(url, headers=headers)
print(response.json())Last 50 checks (10 min intervals)