Browser-based utilities for the Bot Designer for Discord community: no installs, no accounts required for most tools.
bdtools.netlify.app · Report a Bug · Request a Feature
| Tool | Description |
|---|---|
| Embed Builder | Visually build Discord embeds with buttons, select menus, and modals. Outputs ready-to-use embed code. |
| Send Embed Builder | Build $sendEmbedMessage[] blocks with a live preview. |
| CompV2 Builder | Build Discord Component V2 layouts visually and generate your BDFD code. |
| Code Highlighter | Custom syntax highlighting for BDFD scripts. Supports 300+ functions with per-function color and style controls. |
| Code Indenter | Auto-format and indent messy BDFD scripts for readability. |
| Character Escaper | Escape BDFD special characters: $, ;, \, ]. |
| Permission Calculator | Calculate Discord permission bitfields for bot invites. |
| Bot Guild List | API-authenticated dashboard to browse your bot's servers with member counts, icons, and invite links. |
| Bot Guild List | already there ✓ |
BDTools exposes a serverless API for bot integrations and BDFD tooling.
Base URL: https://api-bdtools.netlify.app/
| Endpoint | Method | Description |
|---|---|---|
/submit-server |
POST |
Submit your bot's server list for enrichment. Rate limited to once per 5 hours. |
/get-servers |
GET |
Retrieve your enriched guild list. Cached per user, invalidated on new submission. |
| Endpoint | Method | Description |
|---|---|---|
/node-status |
GET |
Full BDFD infrastructure snapshot, all nodes, bot counts, ping, status |
/node-status/nodes |
GET |
All standard nodes only |
/node-status/node/:id |
GET |
Single standard node by ID |
/node-status/high-performance |
GET |
All high-performance nodes |
/node-status/history |
GET |
Time-series snapshots for the last 7 days (5-min intervals) |
| Endpoint | Method | Description |
|---|---|---|
/bdfd-functions |
GET |
Proxy for the BDFD public function list. Cached for 1 hour. |
/random-word |
GET |
Random 5-letter word for Wordle-style games. Rate limited: 30 req/10s. |
/validate-word |
GET |
Validate a 5-letter word against wordlist + dictionary. Rate limited: 60 req/10s. |
Authentication uses JWT-based API keys generated via Discord OAuth. Guild list endpoints require auth. Node status, BDFD, and game endpoints are public.
Full API documentation at bdtools.netlify.app/docs.
# Example — fetch node status
curl https://api-bdtools.netlify.app/node-status
# Example — fetch BDFD function list
curl https://api-bdtools.netlify.app/bdfd-functions- Frontend — Vanilla JS, Tailwind CSS, Geist font
- Backend — Netlify Functions (Node.js), MongoDB
- Auth — Discord OAuth2, JWT
- Deployment — Netlify (continuous deployment from GitHub)
- Cron — cron-job.org (triggers node status scraper every 5 minutes)
- Cache — Upstash Redis (rate limiting + guild list caching)
All rights reserved. This repository is public for reference only, you may not copy, modify, or redistribute any part of this codebase without explicit permission.
Built and maintained by Zubariel.
Thanks to Catearo (BDFD examples), Luka (testing and bug reports), and skraba (testing and feedback for the CompV2 Builder).
Not officially affiliated with Bot Designer for Discord.