Alcohol
An open-source API for accessing LCBO (alcohol) product data, with its documentation hosted on GitHub.
import requests
# The API endpoint is hypothetical as it was not explicitly provided in the source description.
url = "https://api.lcbo.com/products"
headers = {
"Accept": "application/json",
# No authentication details (API Key, OAuth) were provided in the description.
# "Authorization": "Bearer YOUR_API_KEY",
}
response = requests.get(url, headers=headers)
response.raise_for_status() # Raise an exception for HTTP errors
print(response.json())Last 50 checks (10 min intervals)