DorielRivalet / ezlion

A data retrieval and translation project for Monster Hunter Frontier Z
https://ezlion.vercel.app
MIT License
1 stars 0 forks source link
api-rest asciidoc catppuccin g11n game-data game-datafile gettext i18n l10n marshalling mhf mo-files monster-hunter monster-hunter-frontier openapi po-files portable-object protobuf sveltekit translate-toolkit

EZlion

Data retrieval, made easy.

A data retrieval and translation project for Monster Hunter Frontier Z

API

It is recommended to host the API yourself. You can do so by doing the following:

  1. Fork the repository.
  2. Deploy the project following the instructions here. Select app/ as the root of the project in Vercel Settings.
  3. Confirm if it worked correctly by checking the API Reference at https://yourprojectname.vercel.app/docs.

Usage

The API is static, you can only use the GET HTTP method.

We provide the following data, for example:

curl https://yourprojectname.vercel.app/api/v0/monsters/1
{ "id": 1, "name": "Rathian" }
curl https://yourprojectname.vercel.app/api/v0/monsters
{
  "results": [
    { "id": 0, "name": "None" },
    { "id": 1, "name": "Rathian" },
    { "id": 2, "name": "Rathalos" }
  ],
  "metadata": {
    "readonly": true,
    "repository": "https://github.com/DorielRivalet/ezlion"
  }
}

For more information, consult the documentation here.