免费公开接口,无需注册,返回标准 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 event in data["data"]: print(event["title"], event["date"])
/api/v1/events
/api/health