API Documentation
Access comprehensive Minecraft data through our RESTful API. Get detailed information on items, mobs, and crafting recipes.
Quick Start
Get started with the Minecraft Data API in minutes
Base URL
https://api.mc.4mbl.netAuthentication
Include your API key in the request header:
x-api-key: YOUR_API_KEYRate Limits
1000 requests/hour per API keyAPI Endpoints
Get Item Details
Retrieve detailed information about a specific Minecraft item
GET
/v1/item/minecraft:diamond_swordParameters
identifier- Item identifier (e.g., 'minecraft:diamond_sword' or 'diamond_sword')
Example Request
GET /v1/item/minecraft:diamond_swordExample Response
{
"identifier": "minecraft:diamond_sword",
"name": "Diamond Sword",
"snapshot": "1.21.4",
"stable_release": "1.21",
"is_tool": true,
"is_weapon": true,
"automation_level": "manual",
"light_level_emitted": 0
}Search Items
Search for items by name or identifier
GET
/v1/items/searchQuery Parameters
q- Search query (required)limit- Maximum results (optional, max 100, default 50)
Example Request
GET /v1/items/search?q=diamond&limit=10API Status
Check API health and available endpoints
GET
/v1/statusExample Request
GET /v1/statusError Codes
Common HTTP status codes and their meanings
200Success400Bad Request - Invalid parameters401Unauthorized - Invalid API key404Not Found - Item not found429Too Many Requests - Rate limit exceeded500Internal Server ErrorNeed Help?
Get support and stay updated with the latest API changes