├── .gitattributes ├── LICENSE ├── README.md └── docs ├── data └── v1 │ ├── bug.json │ ├── deepSeaCreatures.json │ └── fish.json ├── index.html └── schema └── v1 ├── bug.json ├── deepSeaCreatures.json └── fish.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhsun/acnh-api/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhsun/acnh-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhsun/acnh-api/HEAD/README.md -------------------------------------------------------------------------------- /docs/data/v1/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhsun/acnh-api/HEAD/docs/data/v1/bug.json -------------------------------------------------------------------------------- /docs/data/v1/deepSeaCreatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhsun/acnh-api/HEAD/docs/data/v1/deepSeaCreatures.json -------------------------------------------------------------------------------- /docs/data/v1/fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhsun/acnh-api/HEAD/docs/data/v1/fish.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhsun/acnh-api/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/schema/v1/bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhsun/acnh-api/HEAD/docs/schema/v1/bug.json -------------------------------------------------------------------------------- /docs/schema/v1/deepSeaCreatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhsun/acnh-api/HEAD/docs/schema/v1/deepSeaCreatures.json -------------------------------------------------------------------------------- /docs/schema/v1/fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhsun/acnh-api/HEAD/docs/schema/v1/fish.json --------------------------------------------------------------------------------