Developer Portal
Experimental The bot & app platform is in active development and currently works only on cloud-hosted GameVox servers. Self-hosted servers are not supported yet.

Build for GameVox using your existing Discord code.

Your existing discord.js, discord.py, JDA, or Eris bot runs on GameVox by changing one line of config. No SDK swap. No protocol tweaks. Point gateway and REST at us, ship.

discord.js

const client = new Client({
  intents: [/* ... */],
  rest: { api: 'https://bot-api.gamevox.com/api' },
  ws:   { gatewayURL: 'wss://gateway.gamevox.com' },
});
client.login(YOUR_BOT_TOKEN);

discord.py

import discord
discord.http.Route.BASE = 'https://bot-api.gamevox.com/api/v10'
discord.gateway.DiscordWebSocket.DEFAULT_GATEWAY = (
    'wss://gateway.gamevox.com/?v=10&encoding=json'
)
client = discord.Client(intents=discord.Intents.default())
client.run(YOUR_BOT_TOKEN)

Your applications

Loading…

Create application

Save your bot token

This is the only time we'll show your token. Anyone with this token has full control of your bot. You can regenerate it later if needed.

  

Verify your email

Bots are tied to a real human contact for abuse handling and account recovery. Add an email so we can confirm it before you create your first bot.