Free public endpoint. No registration required. Returns standard JSON.
curl -s https://catalyst.infodream.asia/api/v1/events | python3 -m json.tool
curl -s https://catalyst.infodream.asia/api/v1/events -o catalyst.json
curl -s https://catalyst.infodream.asia/api/health
import requests resp = requests.get("https://catalyst.infodream.asia/api/v1/events") data = resp.json() print(data["stats"]) for e in data["data"]: print(e["title"], e["date"])
/api/v1/events
/api/health