Programmatic access to AI news, GitHub trending, topics & your account.
Use an API key created in your Account page.
Authorization: Bearer bsk_xxxxxxxxxxxxxxxxxxxxxxxxxxxx # or via query string (less secure): GET /api/news/list?api_key=bsk_xxxxxxxx...&limit=20
Keys start with bsk_, are shown exactly once on create, and can be revoked at any time.
# Fetch the latest AI news:
curl -H "Authorization: Bearer bsk_xxx" \
https://briefsum.com/api/news/list?limit=10
# Save a news item to your favorites:
curl -X POST -H "Authorization: Bearer bsk_xxx" \
-H "Content-Type: application/json" \
-d '{"collect_type":"news","target_id":42}' \
https://briefsum.com/api/user/favorite
# Check your plan + quota:
curl -H "Authorization: Bearer bsk_xxx" \
https://briefsum.com/api/user/quota
There is no official SDK yet; just use fetch or any HTTP client with the Bearer header above.