Get Hive Maps
Gets the list of maps for the given game. Returns the list of maps if the game exists, otherwise returns an error.
Permissions Required: Minecraft::Hive.Map
Path parameters
-
The game to get the maps for
GET
/minecraft/hive/maps/:map
curl \
-X GET https://thefemdevs.com/api/minecraft/hive/maps/:map
Response examples (200)
[
{
"name": "Chroma",
"image": "https://cdn.playhive.com/maps/mm_chroma.jpg",
"season": "NO_SEASON",
"variant": "REGULAR"
},
{
"name": "Eso Hotel",
"image": "https://cdn.playhive.com/maps/mm_esohotel.jpg",
"season": "NO_SEASON",
"variant": "REGULAR"
},
{
"name": "Manor",
"image": "https://cdn.playhive.com/maps/mm_manor.jpg",
"season": "NO_SEASON",
"variant": "REGULAR"
},
{
"name": "Museum",
"image": "https://cdn.playhive.com/maps/mm_museum.jpg",
"season": "NO_SEASON",
"variant": "REGULAR"
},
{
"name": "Office Party",
"image": "https://cdn.playhive.com/maps/mm_office.winterfest.jpg",
"season": "WINTERFEST",
"variant": "REGULAR"
},
{
"name": "Office",
"image": "https://cdn.playhive.com/maps/mm_office.jpg",
"season": "NO_SEASON",
"variant": "REGULAR"
},
{
"name": "Pigment",
"image": "https://cdn.playhive.com/maps/mm_pigment.jpg",
"season": "NO_SEASON",
"variant": "REGULAR"
},
{
"name": "Remnants",
"image": "https://cdn.playhive.com/maps/mm_remnants.jpg",
"season": "NO_SEASON",
"variant": "REGULAR"
},
{
"name": "Spaceship",
"image": "https://cdn.playhive.com/maps/mm_spaceship.jpg",
"season": "NO_SEASON",
"variant": "REGULAR"
},
{
"name": "Ghost House",
"image": "https://cdn.playhive.com/maps/mm_toyhouse.halloween.jpg",
"season": "HALLOWEEN",
"variant": "REGULAR"
},
{
"name": "Toy House",
"image": "https://cdn.playhive.com/maps/mm_toyhouse.jpg",
"season": "NO_SEASON",
"variant": "REGULAR"
},
{
"name": "Village",
"image": "https://cdn.playhive.com/maps/mm_village.winterfest.jpg",
"season": "WINTERFEST",
"variant": "REGULAR"
},
{
"name": "Warehouse",
"image": "https://cdn.playhive.com/maps/mm_warehouse.jpg",
"season": "NO_SEASON",
"variant": "REGULAR"
},
{
"name": "Witch School",
"image": "https://cdn.playhive.com/maps/mm_witchschool.halloween.jpg",
"season": "HALLOWEEN",
"variant": "REGULAR"
}
]
Response examples (400)
Missing game
{
"code": 8,
"message": "Missing Header Parameter(s)"
}
{
"code": 9,
"message": "Invalid Header Parameter(s)"
}
Response examples (401)
Missing API Token
{
"code": 3,
"message": "No API key provided"
}
{
"code": 4,
"message": "Invalid API key provided"
}
Response examples (403)
Missing permissions
{
"code": 1,
"message": "You are not authorized to access this resource"
}
{
"code": 2,
"message": "You are blacklisted from accessing this resource"
}
Response examples (404)
{
"code": 22,
"message": "Unable to retrieve requested information"
}