Skip to main content

HTTP API

Goxy exposes a public HTTP API at api.goxy.pl for external integrations. Use it from any backend, bot, dashboard or script that needs to read or control network data - without running a Minecraft plugin.

โ†”๏ธLooking for the in-game Java SDK?

This page covers the HTTP API. If you are writing a Bukkit/Spigot/Paper/Velocity plugin that runs inside a Minecraft server, use the Plugin API (Java SDK) instead - it gives you direct access without going through HTTP.

What is availableโ€‹

StyleEndpointBest for
RESThttps://api.goxy.pl/Simple request/response, one-off reads, command-style writes
GraphQLhttps://api.goxy.pl/graphqlFetching exactly the fields you need, fewer round-trips, typed schema

Both styles expose the same underlying data - pick whichever fits your tooling.

Interactive documentationโ€‹

The full reference is available as live, browsable documentation:

ToolURLNotes
Swagger UIapi.goxy.pl/swagger-ui.htmlClassic try-it-out REST explorer
Redocapi.goxy.pl/docs/redoc.htmlReference-style REST docs, great for reading
Rapidocapi.goxy.pl/docs/rapidoc.htmlCompact alternative REST viewer
GraphiQLapi.goxy.pl/docs/graphiql.htmlInteractive GraphQL playground with schema introspection
๐ŸงชTry before you build

Start in GraphiQL or Swagger UI to explore the schema and craft your first query before wiring it into your code.

When to use whatโ€‹

  • Use the Plugin API (Java SDK) when you are inside a Minecraft server plugin - it's faster (in-process), strongly typed, and gives you access to events.
  • Use the HTTP API for everything that runs outside the game server: Discord bots, custom dashboards, billing/CRM integrations, mobile apps, monitoring scripts, etc.
  • Use the custom webhook if you only need to control where players land on join - that's a lighter alternative to the full HTTP API.
๐ŸŒ Our website is available at goxy.io
๐Ÿ–ฅ๏ธ Goxy dashboard is available here
โณ Suspect a breakdown? Check our status page
๐Ÿ’ฌ Want more about Goxy? Head to Discord
๐Ÿคฉ Look at the awesome curated list
๐Ÿ“˜ Read the API documentation