action dodo_get_nh_events { label: "All New Horizons events" description: "Get a list of events and dates in *Animal Crossing: New Horizons*, filterable to specific years, months, or days. Data is available for the current and next year." provider: dodo method: GET path: "/nh/events" encoding: json input: { type: "object" properties: { "Accept-Version": { type: "string" } "X-API-KEY": { type: "string" format: "uuid" } date: { type: "string" } day: { type: "integer" } month: { type: "string" } year: { type: "string" } } required: ["Accept-Version", "X-API-KEY"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { date: { type: "string" description: "The date of the event in YYYY-MM-DD format." } event: { type: "string" description: "The description of the event." } type: { type: "string" description: "The type of event. \"Event\" is a festivity the player can take part in. \"Nook Shopping\" refers to the [seasonal events](https://nookipedia.com/wiki/Nook_Shopping_seasonal_event) in which exclusive item(s) are available via []Nook Shopping](https://nookipedia.com/wiki/Nook_Shopping). \"Recipes\" refers to the start or end of certain recipes being available. \"Birthday\" refers to the birthday of a villager or special character." enum: ["Event", "Nook Shopping", "Recipes", "Birthday"] } url: { type: "string" description: "Link to the respective Nookipedia article for the event." } } } } }