Skip to content

v1.3.0 - NH recipes and artworks, restructured NH critters, and villager name badge colors

Latest
Compare
Choose a tag to compare
@KevinPayravi KevinPayravi released this 22 Feb 03:55
· 211 commits to master since this release
962666a

v1.3.0 is made possible by code contributions from Micalobia, o-k-a-y, and vmar97!

Quick overview:

  • New ACNH recipes endpoints
  • New ACNH artworks endpoints
  • Restructuring of NH critter endpoints
  • Villager name badge colors

A thank you to Micalobia for our two new ACNH endpoints, as well as pagination so that we can fetch more data from the wiki.

  • /nh/recipe will return details for all recipes. You can filter by a list of materials to only get recipes that require those materials (e.g. /nh/recipe?material=acorn&material=pine cone). You may also get the recipe for a specific item via /nh/recipe/{item}.
  • /nh/art will return details for all artworks. You can filter to only get artworks that do or don't have fakes via hasfake=true or false. You may also request a single artwork via /nh/art/{artwork name}.

A thank you to o-k-a-y for updating our NH critter endpoints to compartmentalize north and south critter data. The critter endpoints now contain north and south objects with fields inside, like so:

"north": {
    "availability_array": [
        ...
    ],
    "times_by_month": {
        ...
    },
    "months": "Jun – Sep",
    "months_array": [
        ...
    ]
}

And finally, a thank you to vmar97 for adding villager name badge background+text colors to all New Horizons villagers in the villagers endpoint. These colors may be helpful for styling your Discord embeds, villager listings on your site/app, etc.