ItemsAPI
🟡 Updated this year🖼️ Gallery (4 images)
🔍 Analysis
- 🏆 #1180 of 1224 bukkit mods in this game by downloads
📋 About This Mod
# ItemsAPI (1.16.5-1.21.8) A plugin for Minecraft servers that provides an API for managing custom items and storing them in the configuration. ## 📦 Features - Save, load, and give items via commands - Simple API interface for integration with plugins - Items are stored in a configuration file ## 🔧 Commands | Command | Description | Permission | |---------|----------|------------| | `/items give <player> <item>` | Give a saved item to the specified player | `ItemsAPI.use` | | `/items add` | Save all items from your inventory | `ItemsAPI.use` | ## 💻 API for Developers ```java // Getting an instance of the API: @Override public void onEnable() { itemsAPI = ItemsAPIProvider.getAPI(); } // Getting and giving an ItemStack: ItemStack needItem = itemsAPI.getItem("CRUSHER_TALISMAN"); // Get all saved items Map<String, ItemStack> allItems = api.getAllItems(); ``` ## ⭐ Example Usage in a Menu ```java public class MenuPlugin extends JavaPlugin implements CommandExecutor { private ItemsAPIInterface itemsAPI; private final MiniMessage mm = MiniMessage.miniMessage(); @Override public void onEnable() { itemsAPI = ItemsAPIProvider.getAPI(); getServer().getPluginManager().registerEvents(this, this); getCommand("menu").setExecutor(this); } @Override public boolean onCommand(CommandSender sender, Command command, String label, String args) { if (!(sender instanceof Player player)) { return true; } Inventory inv = Bukkit.createInventory(player, 3*9, mm.deserialize("<blue>API Example</blue>")); inv.setItem(13, itemsAPI.getItem("CRUSHER_TALISMAN")); player.openInventory(inv); return true; } } ``` - Don't forget to add depend: to your plugin's plugin.yml - And also to your build.gradle: compileOnly files('libs/ItemsAPI-1.0.jar')
# ItemsAPI (1. 16. 5-1. 21. 8)
A plugin for Minecraft servers that provides an API for managing custom items and storing them in the configuration.
## 📦 Features
- Save, load, and give items via commands
- Simple API interface for integration with plugins
- Items are stored in a configuration file
## 🔧 Commands
| Command | Description | Permission |
|---------|----------|------------|
| `/items give
## 💻 API for Developers ```java // Getting an instance of the API: @Override public void onEnable() { itemsAPI = ItemsAPIProvider.getAPI(); }
// Getting and giving an ItemStack: ItemStack needItem = itemsAPI.getItem("CRUSHER_TALISMAN");
// Get all saved items
Map
## ⭐ Example Usage in a Menu ```java public class MenuPlugin extends JavaPlugin implements CommandExecutor { private ItemsAPIInterface itemsAPI; private final MiniMessage mm = MiniMessage.miniMessage();
@Override public void onEnable() { itemsAPI = ItemsAPIProvider.getAPI(); getServer().getPluginManager().registerEvents(this, this); getCommand("menu").setExecutor(this); }
@Override public boolean onCommand(CommandSender sender, Command command, String label, String[] args) { if (!(sender instanceof Player player)) { return true; }
Inventory inv = Bukkit.createInventory(player, 3*9, mm.deserialize("
📊 Mod Details
- Game
- Minecraft Plugins
- Author
- Map4yk
- Version
- 1.0
- Downloads
- 81
- Endorsements
- 0
- Category
- bukkit
- Created
- 2/11/2026
- Updated
- 2/9/2026
- Game Versions
- 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
- Tags
- equipment, game-mechanics, library
🔧 How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Plugins →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Plugins versions does ItemsAPI support?
The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.
What is the latest version of ItemsAPI?
Version 1.0, published 2026-02-09 with 81 downloads recorded at the source.
Keep browsing — more Minecraft Plugins mods await



