Skip to main content

Single Server Lite

Request overview

Endpoint

https://minecraft-server-status1.p.rapidapi.com/servers/single/lite

host

Type: string

The host of the server. Optionally you can include the port here aswell indicated by a colon.

Example:

{
"host": "mc.hypixel.net"
}

or

{
"host": "mc.hypixel.net:25565"
}

You can also provide the port separate.

port (optional)

Type: number

The port of the server. This field is optional. If no port is provided the default for the chosen version is selected. (25565 for Java, 19132 for Bedrock)

Example:

{
"port": 25565
}

type (optional)

Type: String

The type of server. This can be "java" or "bedrock". This field is optional. If no type is provided "java" is selected.

Example:

{
"type": "bedrock"
}

legacy (optional)

Type: boolean

Indicate if the server is legacy or not. A legacy server is a server that has a version lower than 1.7.2. This field is optional. If legacy is not provided false is selected.

Example:

{
"legacy": false
}

Request examples

The request must be made in JSON.

Java

{
"host": "mc.hypixel.net",
"port": 25565,
"type": "java",
"legacy": false
}

Bedrock

{
"host": "play.brlns.net",
"port": 2000,
"type": "bedrock",
"legacy": false
}

Legacy

{
"host": "bteam.auroracraft.info",
"port": 25565,
"type": "java",
"legacy": true
}

Response Examples

The response is in JSON.

Java

{
"host": "mc.hypixel.net",
"port": 25565,
"type": "java",
"legacy": false,
"online": true,
"players": {
"online": 65503,
"max": 200000,
"sample": []
},
"version": {
"name": "Requires MC 1.8 / 1.18",
"protocol": 47
},
"request": {
"host": "mc.hypixel.net",
"port": 25565,
"type": "java",
"legacy": false
}
}

Bedrock

{
"host": "play.brlns.net",
"port": 2000,
"type": "bedrock",
"legacy": false,
"online": true,
"players": {
"online": 1002,
"max": 2434,
"sample": []
},
"version": {
"name": "1.18",
"protocol": 476
},
"request": {
"host": "play.brlns.net",
"port": 2000,
"type": "bedrock",
"legacy": false
}
}

Legacy

{
"host": "bteam.auroracraft.info",
"port": 25565,
"type": "java",
"legacy": true,
"online": true,
"players": {
"online": 3,
"max": 200,
"sample": []
},
"version": {
"name": "1.6.4",
"protocol": 78
},
"request": {
"host": "bteam.auroracraft.info",
"port": 25565,
"type": "java",
"legacy": true
}
}

Favicon

The lite endpoint does not include a favicon. If this is something you want then you need to use the full endpoint.