Movie information
The OMDb API is a RESTful web service to obtain movie information, with user-contributed content.
import requests
api_key = 'YOUR_API_KEY'
title = 'Inception'
url = f'https://www.omdbapi.com/?t={title}&apikey={api_key}'
response = requests.get(url)
data = response.json()
print(data)Last 50 checks (10 min intervals)