action dodo_get_nh_items_item { label: "Single New Horizons miscellaneous item" description: "Retrieve information about a miscellaneous item (such as materials, star fragments, fruits, fences, and plants) in *Animal Crossing: New Horizons*." provider: dodo method: GET path: "/nh/items/{item}" encoding: json input: { type: "object" properties: { "Accept-Version": { type: "string" } "X-API-KEY": { type: "string" format: "uuid" } item: { type: "string" } thumbsize: { type: "integer" } } required: ["Accept-Version", "X-API-KEY", "item"] additionalProperties: false } output: { type: "object" properties: { availability: { type: "array" description: "Where the clothing may be obtained from (could be multiple sources). `from` is a brief description of the source; `note`, when provided, provides additional details." items: { type: "object" properties: { from: { type: "string" } note: { type: "string" } } } } buy: { type: "array" description: "An array of prices, for when the interior may be purchased with Bells, Nook Miles, etc.." items: { type: "object" properties: { currency: { type: "string" } price: { type: "integer" } } } } edible: { type: "boolean" description: "Whether the item is edible or not." } hha_base: { type: "integer" description: "The base value that the item provides to a player's Happy Home Academy score when placed in their home." } image_url: { type: "string" description: "Image of the interior. dodo.ac is Nookipedia's CDN server." } is_fence: { type: "boolean" description: "Whether or not the item is a fence or not." } material_name_sort: { type: "integer" description: "(WIP)" } material_seasonality: { type: "string" description: "(WIP)" } material_seasonality_sort: { type: "integer" description: "(WIP)" } material_sort: { type: "integer" description: "(WIP)" } material_type: { type: "string" description: "(WIP)" enum: ["", "Bamboo", "Mushroom", "Trash", "Wood", "Ore", "Snowflake", "Tree", "Ornament", "Fruit", "Underwater", "Other", "Leaf", "Shell", "Flower", "Star Fragment", "Feather", "Egg", "Plant"] } name: { type: "string" description: "The name of the item." } notes: { type: "string" description: "Any additional miscellaneous information about the item, such as a name change from a past update." } plant_type: { type: "string" description: "(WIP)" enum: ["", "Pumpkin", "Flower", "Bush", "Tree"] } sell: { type: "integer" description: "The number of bells the item can be sold to Nook's store for." } stack: { type: "integer" description: "How much the item can stack up to in a single inventory slot." } unlocked: { type: "boolean" description: "Whether the item is available through legitimate gameplay. Some items are added to the game files in an update, but aren't actually made available until a subsequent update unlocks them." } url: { type: "string" description: "Link to the respective Nookipedia article." } version_added: { type: "string" description: "The version of *New Horizons* that the item was added. Items that were included at the game's launch have version \"1.0.0\"." } } } }