mostly completed docs
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m38s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m38s
This commit is contained in:
45
documentation/server/blocked.md
Normal file
45
documentation/server/blocked.md
Normal file
@ -0,0 +1,45 @@
|
||||
---
|
||||
title: Server - Blocked Status
|
||||
summary: Get the Mojang blocked status of a Minecraft server.
|
||||
---
|
||||
|
||||
# Server - Blocked Status
|
||||
|
||||
The server blocked status endpoint allows you to get the Mojang blocked status of a Minecraft server.
|
||||
|
||||
## Endpoint
|
||||
|
||||
```
|
||||
GET /server/blocked/:query
|
||||
```
|
||||
|
||||
## Platforms
|
||||
|
||||
This endpoint is only available for Java servers.
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Description | Required |
|
||||
|-----------|---------------------------------------------------------------|----------|
|
||||
| query | The IP address or hostname of the server you want to look up. | Yes |
|
||||
|
||||
## Example
|
||||
|
||||
```bash
|
||||
curl -X GET "https://api.mcutils.xyz/server/blocked/play.hypixel.net"
|
||||
```
|
||||
|
||||
## Response
|
||||
|
||||
```json
|
||||
{
|
||||
"blocked": false
|
||||
}
|
||||
```
|
||||
|
||||
## Errors
|
||||
|
||||
| Status Code | Description |
|
||||
|-------------|-----------------------------------------------|
|
||||
| 400 | The server was not found. |
|
||||
| 429 | The Mojang API rate limit has been exhausted. |
|
41
documentation/server/favicon.md
Normal file
41
documentation/server/favicon.md
Normal file
@ -0,0 +1,41 @@
|
||||
---
|
||||
title: Server - Favicon
|
||||
summary: Get the favicon of a Minecraft server.
|
||||
---
|
||||
|
||||
# Server - Favicon
|
||||
|
||||
The server favicon endpoint allows you to get the favicon of a Minecraft server.
|
||||
|
||||
## Endpoint
|
||||
|
||||
```
|
||||
GET /server/:query
|
||||
```
|
||||
|
||||
## Platforms
|
||||
|
||||
This endpoint is only available for Java servers.
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Description | Required |
|
||||
|-----------|---------------------------------------------------------------------------|----------|
|
||||
| query | The IP address or hostname of the server you want to get the favicon for. | Yes |
|
||||
|
||||
## Example
|
||||
|
||||
```bash
|
||||
curl -X GET "https://api.mcutils.xyz/server/icon/hypixel.net" -H "accept: image/png"
|
||||
```
|
||||
|
||||
## Response
|
||||
|
||||

|
||||
|
||||
## Errors
|
||||
|
||||
| Status Code | Description |
|
||||
|-------------|-----------------------------------------------|
|
||||
| 400 | The server was not found. |
|
||||
| 429 | The Mojang API rate limit has been exhausted. |
|
45
documentation/server/preview.md
Normal file
45
documentation/server/preview.md
Normal file
@ -0,0 +1,45 @@
|
||||
---
|
||||
title: Server - Preview
|
||||
summary: Get the server list preview of a Minecraft server.
|
||||
---
|
||||
|
||||
# Server - Preview
|
||||
|
||||
The server preview endpoint allows you to get the server list preview of a Minecraft server.
|
||||
|
||||
## Endpoint
|
||||
|
||||
```
|
||||
GET /server/:platform/preview/:query
|
||||
```
|
||||
|
||||
## Platforms
|
||||
|
||||
| Platform | Description |
|
||||
|----------|-----------------|
|
||||
| bedrock | Bedrock Edition |
|
||||
| java | Java Edition |
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Description | Required |
|
||||
|-----------|---------------------------------------------------------------------------|----------|
|
||||
| platform | The platform of the server you want to get the preview for. | Yes |
|
||||
| query | The IP address or hostname of the server you want to get the preview for. | Yes |
|
||||
|
||||
## Example
|
||||
|
||||
```bash
|
||||
curl -X GET "https://api.mcutils.xyz/server/java/preview/hypixel.net" -H "accept: image/png"
|
||||
```
|
||||
|
||||
## Response
|
||||
|
||||

|
||||
|
||||
## Errors
|
||||
|
||||
| Status Code | Description |
|
||||
|-------------|-----------------------------------------------|
|
||||
| 400 | The server was not found. |
|
||||
| 429 | The Mojang API rate limit has been exhausted. |
|
94
documentation/server/server-lookup.md
Normal file
94
documentation/server/server-lookup.md
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user