ChatHub
Public API
Access ChatHub community data via REST API
Public endpoints — no auth required
JSON responses
Base URL
https://chathubapp.base44.appForum
Forum EndpointsGET
/api/ForumCategory/listPublic
List all forum categories
GET
/api/ForumPost/listPublic
List all forum posts
GET
/api/ForumPost/filter?category_id=IDPublic
Get posts in a category
GET
/api/ForumReply/filter?post_id=IDPublic
Get replies for a post
Chess
Chess EndpointsGET
/api/ChessGame/listPublic
List all chess games
GET
/api/ChessGame/filter?status=activePublic
Get active games
Wordle
Wordle EndpointsGET
/api/WordleAttempt/listPublic
List all wordle attempts
GET
/api/WordleGame/filter?is_active=truePublic
Get today's active wordle
Community
Community EndpointsGET
/api/Announcement/listPublic
List all announcements
GET
/api/Tournament/listPublic
List all tournaments
GET
/api/Team/listPublic
List all teams
GET
/api/Video/listPublic
List shared videos
Example Usage
Fetch forum categories with JavaScript:
fetch('https://chathubapp.base44.app/api/ForumCategory/list')
.then(r => r.json())
.then(data => console.log(data));All data is read-only via public endpoints. For write access, authentication is required.