The Fedle API exposes statistics and leaderboard data for third-party consumption (dashboards, bots, widgets). The game itself is played entirely via ActivityPub, not via this API.
No authentication required. Rate limited to 60 requests per minute per IP.
/api/v1/stats
Global statistics: total players, followers, games, current game number.
"players": 142, "followers": 138, "games": 4280, "currentGame": 42
/api/v1/leaderboard
Instance leaderboard ranked by average attempts.
days — Period in days (default: 7)limit — Max results (default: 20, max: 50)[ "instance": "fosstodon.org", "playerCount": 14, "avgAttempts": 3.2, "winRate": 91 ]
/api/v1/history
Past puzzles with basic stats.
page — Page number (default: 1)limit — Results per page (default: 20, max: 50)/api/v1/game/:id
Single puzzle stats: outcome distribution, average attempts, win rate.
/api/v1/instance/:domain
Stats for a specific instance: player count, average attempts, win rate.
days — Period in days (default: 7)