Background Settings
Customize your interface background
Leave empty for default gradient background
Discord Webhook Server
A beautiful web server that sends Discord DMs and rich embeds to any user with liquid glass aesthetics
How it works
Any request to /api/webhook/[userid] triggers a Discord DM to that user
Supports all HTTP methods, plain messages, and rich Discord embeds
Send messages to any Discord user by including their User ID in the URL
Test the webhook
Right-click a user in Discord and select "Copy User ID" (Developer Mode must be enabled). For multiple users, separate IDs with commas.
Example URLs
GET /api/webhook/123456789012345678?message=Hello%20WorldSend "Hello World" to user ID 123456789012345678 via query parameter
POST /api/webhook/123456789012345678,987654321098765432Send message/embed to multiple users with JSON body: {"message": "Hello Everyone"}
POST /api/webhook/987654321098765432Send rich embed with JSON body: {"message": "Hello!", "embed": {"title": "My Title", "description": "My Description"}}
Note: Single URL structure supports both messages and embeds. Use query parameters for GET requests or JSON body for POST requests.