{"id":30040865,"url":"https://github.com/dorielrivalet/ezlion","last_synced_at":"2025-08-07T02:04:57.259Z","repository":{"id":165567562,"uuid":"640925577","full_name":"DorielRivalet/ezlion","owner":"DorielRivalet","description":"A data retrieval and translation project for Monster Hunter Frontier Z","archived":false,"fork":false,"pushed_at":"2024-08-03T03:58:25.000Z","size":5882,"stargazers_count":2,"open_issues_count":5,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-01T00:58:46.492Z","etag":null,"topics":["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"],"latest_commit_sha":null,"homepage":"https://ezlion.vercel.app","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DorielRivalet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-05-15T12:15:08.000Z","updated_at":"2025-02-19T19:48:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"19b3429f-3b91-49e0-82d2-62484f726a76","html_url":"https://github.com/DorielRivalet/ezlion","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DorielRivalet/ezlion","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DorielRivalet%2Fezlion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DorielRivalet%2Fezlion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DorielRivalet%2Fezlion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DorielRivalet%2Fezlion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DorielRivalet","download_url":"https://codeload.github.com/DorielRivalet/ezlion/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DorielRivalet%2Fezlion/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269185726,"owners_count":24374634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-07T02:00:09.698Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["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"],"created_at":"2025-08-07T02:02:58.288Z","updated_at":"2025-08-07T02:04:57.242Z","avatar_url":"https://github.com/DorielRivalet.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EZlion\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src='./app/src/lib/assets/logo-alt.svg'\u003e\n  \u003cp align=\"center\"\u003e\n      \u003ci\u003eData retrieval, made easy.\u003c/i\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n- NuGet ![NuGet](https://img.shields.io/nuget/dt/EZlion)\n- npm ![npm](https://img.shields.io/npm/dt/ezlion)\n\nA data retrieval and translation project for Monster Hunter Frontier Z\n\n## API\n\nIt is recommended to host the API yourself. You can do so by doing the following:\n\n1. Fork the [repository](https://github.com/DorielRivalet/ezlion/fork).\n2. Deploy the project following the instructions [here](https://vercel.com/docs/deployments/git#deploying-a-git-repository). Select app/ as the root of the project in Vercel Settings.\n3. Confirm if it worked correctly by checking the API Reference at `https://yourprojectname.vercel.app/docs`.\n\n### Usage\n\nThe API is static, you can only use the `GET` HTTP method.\n\nWe provide the following data, for example:\n\n- Request: Get monster by id\n\n```bash\ncurl https://yourprojectname.vercel.app/api/v0/monsters/1\n```\n\n- Response:\n\n```json\n{ \"id\": 1, \"name\": \"Rathian\" }\n```\n\n- Request: Get monsters\n\n```bash\ncurl https://yourprojectname.vercel.app/api/v0/monsters\n```\n\n- Response:\n\n```json\n{\n  \"results\": [\n    { \"id\": 0, \"name\": \"None\" },\n    { \"id\": 1, \"name\": \"Rathian\" },\n    { \"id\": 2, \"name\": \"Rathalos\" }\n  ],\n  \"metadata\": {\n    \"readonly\": true,\n    \"repository\": \"https://github.com/DorielRivalet/ezlion\"\n  }\n}\n```\n\nFor more information, consult the documentation [here](./docs/README.adoc#API).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdorielrivalet%2Fezlion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdorielrivalet%2Fezlion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdorielrivalet%2Fezlion/lists"}