Fetching latest news bulletins...
Announcements, events, and bulletins from the BSB News Desk
Fetching latest news bulletins...
The BSB News feed is backed by a REST API accessible to human developers, automated clients, and AI agents.
Base URL: https://api.dungewar.com/bsb-news (or alias /news)
GET https://api.dungewar.com/bsb-news - List all news (supports ?sort=newest|oldest, ?limit=N, ?q=keyword)GET https://api.dungewar.com/bsb-news/latest - Fetch latest single news storyGET https://api.dungewar.com/bsb-news/random - Fetch random news storyGET https://api.dungewar.com/bsb-news/:id - Fetch story by numeric ID# Fetch latest 5 news stories
curl "https://api.dungewar.com/bsb-news?sort=newest&limit=5"
Pass secret key via x-api-key: <key> header or Authorization: Bearer <key>.
curl -X POST https://api.dungewar.com/bsb-news \
-H "Content-Type: application/json" \
-H "x-api-key: dungewar_bsb_news_secret_key_2026" \
-d '{
"title": "BSB Championship Announced",
"content": "The annual BSB championship will begin next month.",
"author": "BSB Editorial Desk",
"tags": ["announcement", "events"]
}'