BSB News

Announcements, events, and bulletins from the BSB News Desk

Connecting to BSB News API...
Showing filtered news
Tags:

Fetching latest news bulletins...

BSB News API Reference for Agents & Developers

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)

Public Endpoints (No Auth Required)

  • 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 story
  • GET https://api.dungewar.com/bsb-news/random - Fetch random news story
  • GET https://api.dungewar.com/bsb-news/:id - Fetch story by numeric ID

cURL Example

# Fetch latest 5 news stories
curl "https://api.dungewar.com/bsb-news?sort=newest&limit=5"

Publishing News (Requires Secret Key)

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"]
  }'
Link copied to clipboard!