action dodo_get_nh_art_artwork { label: "Single New Horizons artwork" description: "Retrieve information about a specific artwork in *Animal Crossing: New Horizons*." provider: dodo method: GET path: "/nh/art/{artwork}" encoding: json input: { type: "object" properties: { "Accept-Version": { type: "string" } "X-API-KEY": { type: "string" format: "uuid" } artwork: { type: "string" } thumbsize: { type: "integer" } } required: ["Accept-Version", "X-API-KEY", "artwork"] additionalProperties: false } output: { type: "object" properties: { art_name: { type: "string" description: "The name of the real-life analog to the artwork." } art_style: { type: "string" description: "The art style of the artwork." } authenticity: { type: "string" description: "The description of the difference between real and fake, if there is one" } author: { type: "string" description: "The author of the real-life analog to the artwork." } availability: { type: "string" description: "The availability of the artwork." } buy: { type: "integer" description: "The number of Bells the artwork may be purchased for." } description: { type: "string" description: "The description of the artwork." } fake_image_url: { type: "string" description: "Image of the fake artwork, if it exists." } has_fake: { type: "boolean" description: "Whether the artwork has a fake or not." } image_url: { type: "string" description: "Image of the real artwork. dodo.ac is Nookipedia's CDN server." } length: { type: "number" format: "float" description: "The length of the artwork." } name: { type: "string" description: "Name of the artwork." } sell: { type: "integer" description: "The number of Bells the artwork can be sold to Nook's store for, when it is genuine." } url: { type: "string" description: "Link to the respective Nookipedia article." } width: { type: "number" format: "float" description: "The width of the artwork." } year: { type: "string" description: "The year that the real-life analog was made." } } } }