Get Popular Tags
Retrieve trending tags
Last updated
Was this helpful?
Was this helpful?
{
"status": 400,
"error": "Bad Request",
"message": "Invalid parameters"
}import requests
response = requests.get(
"https://event-service.outpoll.com/api/tags/popular",
params={"limit": 10},
timeout=10,
)
response.raise_for_status()
for tag in response.json():
print(f"#{tag['r']} {tag['n']}")