API Reference
Documentation for the Habbo Market History and Furniture Image APIs.
Made by QDave
Market History API
Retrieve furniture items of market history data with up to 2 years of sales and metadata
Search for furniture items and retrieve their market history, including price trends, volume data, and metadata.
Query Parameters
                                Search by furniture classname. Supports wildcards: * for multiple characters, _ for single character.
                            
Search by furniture name (partial match, case-insensitive).
Search by furniture description (partial match, case-insensitive).
                                Hotel domain code. Valid values: com, de, es, fi, fr, it, nl, br, tr. Default: com
                            
                                Limit history to specified number of days. Use all for complete history. Default: all
                            
Note
At least one of classname, name, or description is required.
Example Requests
Response Format
[
  {
    "ClassName": "throne",
    "FurniName": "Throne",
    "FurniDescription": "Important Habbos only",
    "Line": "rare",
    "Category": "chair",
    "Revision": 45512,
    "FurniType": "roomItem",
    "marketData": {
      "history": [
        [avgPrice, soldItems, creditSum, openOffers, timestamp],
        ...
      ],
      "averagePrice": 1338,
      "lastUpdated": "2025-05-26 at 15:02"
    },
    "hotel_domain": "com"
  }
]
                History Array Format
Each history entry contains: [avgPrice, soldItems, creditSum, openOffers, timestamp]
Rate Limiting
Default: 30 requests per minute. For unlimited access, include header: X-Auth-Key: your-api-key
Furniture Image API
Retrieve furniture images with customizable parameters
Get a PNG image of the specified furniture item. Images are generated on-demand and cached for fast retrieval.
Path Parameters
                                Furniture classname. For colored items, include the color: rare_dragonlamp*4
                            
Example Requests
Response
Returns a PNG image with Content-Type: image/png
Image Generation
If an image hasn't been generated yet, the API will return a 202 status with a message to retry. Images are queued for generation automatically.