Hypixel · JSON Structure

Hypixel Public Api Housing House Structure

Information about a player's house.

Type: object Properties: 6 Required: 6
Games And ComicsGamingMinecraftPlayer StatsLeaderboardsSkyBlockPublic APIs

HousingHouse is a JSON Structure definition published by Hypixel, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

uuid owner name createdAt players cookies

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hypixel/refs/heads/main/json-structure/hypixel-public-api-housing-house-structure.json",
  "name": "HousingHouse",
  "description": "Information about a player's house.",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "uuid",
      "description": "The UUID of this house.",
      "example": "ad8fefaa8351454bb739a4eaa872173f"
    },
    "owner": {
      "type": "uuid",
      "description": "The UUID of the owner of this house.",
      "example": "ad8fefaa8351454bb739a4eaa872173f"
    },
    "name": {
      "type": "string",
      "nullable": true,
      "description": "The name of this house, may contain Minecraft color symbols.",
      "example": "ExamplePlayer"
    },
    "createdAt": {
      "type": "double",
      "description": "The time this house was created.",
      "example": 1.0
    },
    "players": {
      "type": "double",
      "description": "The number of players in this house.",
      "example": 1.0
    },
    "cookies": {
      "type": "object",
      "properties": {
        "current": {
          "type": "double",
          "description": "The current amount of cookies that this house has for the current week.",
          "example": 1.0
        }
      }
    }
  },
  "required": [
    "uuid",
    "owner",
    "name",
    "createdAt",
    "players",
    "cookies"
  ]
}