Furniture

Get furniture data in JSON format.

Get all furniture

Query params

nameSearch furniture that contains a term in its name.
setThe furniture set

Get furniture by id

Path params

idThe id of the furniture.

Get all furniture

GET https://api.dinkumapi.com/v0/furniture

      
        [
  {
    "id": 1,
    "name": "Dainty Bed",
    "description": "A bed.",
    "sell_price": 1088,
    "set": "Dainty"
  },
  {
    "id": 2,
    "name": "Dainty Bedside Table",
    "description": "A bedside table.",
    "sell_price": 600,
    "set": "Dainty"
  },
  {
    "id": 3,
    "name": "Dainty Chair",
    "description": "A chair.",
    "sell_price": 610,
    "set": "Dainty"
  },
  {},
  {}
]
      
    

Get furniture by id

GET https://api.dinkumapi.com/v0/furniture/{id}

      
        {
  "id": 7,
  "name": "Dainty Lamp",
  "description": "Lights up house.",
  "sell_price": 380,
  "set": "Dainty"
}