Inventory Web Viewer (API) icon

Inventory Web Viewer (API) -----

API to view online and offline player inventories from your website.



Demo image:

API Documentation

✅ Endpoint: Get player inventory
URL:
GET http://localhost:8080/inventory?player=ans
Query Parameter:
  • player (required): The Minecraft username (case-insensitive).
Sample JSON Response:
json
{
"inventory": [
{
"slot": 0,
"type": "minecraft:diamond_sword",
"amount": 1,
"meta": {
"displayName": "§bSharp Blade",
"lore": ["§7An enchanted weapon"],
"enchants": {
"sharpness": 5,
"unbreaking": 3
}
}
},
{
"slot": 1,
"type": "minecraft:golden_apple",
"amount": 5
}
],
"armor": [
{
"slot": "head",
"type": "minecraft:diamond_helmet",
"amount": 1,
"meta": {
"enchants": {
"protection": 4
}
}
}
],
"offhand": {
"type": "minecraft:shield",
"amount": 1
},
"enderChest": [
{
"slot": 0,
"type": "minecraft:ender_pearl",
"amount": 16
}
]
}

⚙️ Configuration (config.yml)
yaml
host: "localhost"
port: 8080

You can change the host and port to fit your deployment environment.

How to Use
  1. Place the plugin .jar in your Minecraft server's plugins/ folder.

  2. Start the server to auto-generate the configuration file.

  3. Send HTTP requests from any frontend or backend to fetch player inventories.
Resource Information
Author:
----------
Total Downloads: 26
First Release: Jul 30, 2025
Last Update: Jul 30, 2025
Category: ---------------
All-Time Rating:
0 ratings
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings