Design
The Dribbble API v2 provides programmatic access to design content, including shots, projects, and user data, requiring OAuth authentication for all requests.
import requests
url = "https://api.dribbble.com/v2/user"
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
response = requests.get(url, headers=headers)
print(response.json())Last 50 checks (10 min intervals)