RevoltSharp
  • 🏠Info
  • GitHub
  • 📋Changelog
  • Commands
    • 💻Command Handler
      • 📋Changelog
      • Guide
  • Guides
    • 📘Guides
      • Create Client
      • User Account
      • Self-hosted Revolt
      • Uploading Files
      • Sending Embeds
      • Async Events
      • Custom Requests
      • Cloudflare Under Attack Mode
  • Client Structure
    • ⚙️RevoltClient
    • 🌐Rest Client
    • 🔌Websocket Client
    • 🛡️Instance Admin Client
    • ⚡Events
    • ⛓️Extensions
  • Class Structure
    • 🎭Users & Members
    • 🏨Servers
    • #️⃣Channels
    • 🛡️Permissions
    • 💬Messages
    • 🗯️Message Properties
    • 🙂Emojis
    • 🎲Misc
Powered by GitBook
On this page
  1. Guides
  2. Guides

Self-hosted Revolt

Use RevoltSharp with your own self-hosted Revolt instance

PreviousUser AccountNextUploading Files

Last updated 2 months ago

If you have a self-hosted Revolt instance you can connect to it with this lib by setting the ApiUrl to your hosted server.

RevoltClient Client = new RevoltClient(Token, ClientMode.WebSocket, new ClientConfig
{
    ApiUrl = "https://api.myrevolt.com"
});

You can also use the Instance Admin Client to manage your Revolt Instance with the current user/bot account.

📘
🛡️Instance Admin Client