action dodo_get_nh_fossils_individuals { label: "All New Horizons fossils" description: "Get a list of all the individual fossils in *Animal Crossing: New Horizons*." provider: dodo method: GET path: "/nh/fossils/individuals" encoding: json input: { type: "object" properties: { "Accept-Version": { type: "string" } "X-API-KEY": { type: "string" format: "uuid" } thumbsize: { type: "integer" } } required: ["Accept-Version", "X-API-KEY"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { colors: { type: "array" items: { type: "string" enum: ["Aqua", "Beige", "Black", "Blue", "Brown", "Colorful", "Gray", "Green", "Orange", "Pink", "Purple", "Red", "White", "Yellow"] } } fossil_group: { type: "string" description: "The name of the group that the fossil belongs to." } 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 fossil's icon. dodo.ac is Nookipedia's CDN server." } interactable: { type: "boolean" description: "Whether or not the item can be interacted with." } length: { type: "integer" description: "The length of the fossil." } name: { type: "string" description: "The name of the fossil." } sell: { type: "integer" description: "The number of bells the item can be sold to Nook's store for." } url: { type: "string" description: "Link to the respective Nookipedia article." } width: { type: "integer" description: "The width of the fossil." } } } } }