
API for your minecraft server
Requests is a PaperMC plugin that provides a RESTful API for Minecraft servers. With Requests, server admins can easily query and interact with their servers using simple REST semantics.
Requests exposes a RESTful API that can be accessed using HTTP requests. The base URL for the API is http://localhost:5000 and can be configured in config.toml.
[plugin]
salt = "change this"
prefix = "<light_purple>[requests]<reset> "
[database]
tokens = "tokens.db"
players = "players.db"
[api]
port = 5000
vault = false
luckperms = false
Requests uses API keys to authenticate requests. To generate an master API key, use the following command in the server console:
/api generate-key <name>
The <name> parameter is optional and can be used to give the key a custom name. The generated API key will be displayed in the console.
To generate an player API key, use the following command in game:
/api token new
To authenticate a request, include the API key in the Authorization header of the HTTP request:
Authorization: Bearer <api_key>
Requests provides the following API endpoints:
/serverReturns the status of the Minecraft server.
/playersReturns a list of online players on the Minecraft server.
/player/<uniqueId>Returns the information of a player.
/commandSends a command to the Minecraft server. This route can be used by admin token only, and is disabled by default.
GET /server HTTP/.1
Authorization: Bearer <api_key>
User-Agent: Example Agent/0.0.1
GET /player/<uniqueId> HTTP/1.1
Authorization: Bearer <api_key>
User-Agent: Example Agent/0.0.1
POST /command HTTP/1.1
Authorization: Bearer <api_key>
Content-Type: application/json; charset=utf-8
User-Agent: Example Agent/0.0.1
Content-Length: 31
{"command":"say Hello, World!"}
To build Requests from source, follow these steps:
git clone https://github.com/theMackabu/requests.gitcd requests./gradlew shadowJarbuild/libs/requests-<version>-all.jar.Requests is licensed under the GPL-3 License.