Hypixel · Schema

HousingHouse

Information about a player's house.

Games And ComicsGamingMinecraftPlayer StatsLeaderboardsSkyBlockPublic APIs

Properties

Name Type Description
uuid string The UUID of this house.
owner string The UUID of the owner of this house.
name string The name of this house, may contain Minecraft color symbols.
createdAt number The time this house was created.
players number The number of players in this house.
cookies object
View JSON Schema on GitHub

JSON Schema

hypixel-public-api-housing-house-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hypixel/refs/heads/main/json-schema/hypixel-public-api-housing-house-schema.json",
  "title": "HousingHouse",
  "description": "Information about a player's house.",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string",
      "format": "uuid",
      "description": "The UUID of this house.",
      "example": "ad8fefaa8351454bb739a4eaa872173f"
    },
    "owner": {
      "type": "string",
      "format": "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": "number",
      "format": "int64",
      "description": "The time this house was created.",
      "example": 1.0
    },
    "players": {
      "type": "number",
      "format": "int32",
      "description": "The number of players in this house.",
      "example": 1.0
    },
    "cookies": {
      "type": "object",
      "properties": {
        "current": {
          "type": "number",
          "format": "int32",
          "description": "The current amount of cookies that this house has for the current week.",
          "example": 1.0
        }
      }
    }
  },
  "required": [
    "uuid",
    "owner",
    "name",
    "createdAt",
    "players",
    "cookies"
  ]
}