Get Hive Maps

GET /minecraft/hive/maps/:map

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

  • map string Required

    The game to get the maps for

Responses

  • 200 application/json

    The list of maps for the given game

    Hide response attributes Show response attributes object

    The Map Data for the Hive Minecraft Server

    • name string Required

      The name of the map

    • season string Required

      The season of the map

    • variant string Required

      The variant of the map

    • image string Required

      The image of the map

  • 400 application/json

    Missing game information

    Hide response attributes Show response attributes object

    The error data that is returned when an error occurs

    All Error Codes are located in /functions/errorResponse.js GitHub

    • code integer Required

      The error code

      Minimum value is 0, maximum value is 30.

    • message string Required

      The error message

  • 401 application/json

    Invalid/Missing API Token

    Hide response attributes Show response attributes object

    The error data that is returned when an error occurs

    All Error Codes are located in /functions/errorResponse.js GitHub

    • code integer Required

      The error code

      Minimum value is 0, maximum value is 30.

    • message string Required

      The error message

  • 403 application/json

    Missing Permissions

    Hide response attributes Show response attributes object

    The error data that is returned when an error occurs

    All Error Codes are located in /functions/errorResponse.js GitHub

    • code integer Required

      The error code

      Minimum value is 0, maximum value is 30.

    • message string Required

      The error message

  • 404 application/json

    Error with the given game

    Hide response attributes Show response attributes object

    The error data that is returned when an error occurs

    All Error Codes are located in /functions/errorResponse.js GitHub

    • code integer Required

      The error code

      Minimum value is 0, maximum value is 30.

    • message string Required

      The error message

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)
{
  "code": 8,
  "message": "Missing Header Parameter(s)"
}
{
  "code": 9,
  "message": "Invalid Header Parameter(s)"
}
Response examples (401)
{
  "code": 3,
  "message": "No API key provided"
}
{
  "code": 4,
  "message": "Invalid API key provided"
}
Response examples (403)
{
  "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"
}