{"id":19330348,"url":"https://github.com/larttyler/mhwdb-api","last_synced_at":"2026-03-13T13:32:14.647Z","repository":{"id":40587120,"uuid":"122261238","full_name":"LartTyler/MHWDB-API","owner":"LartTyler","description":"Source code for the Monster Hunter World API project","archived":false,"fork":false,"pushed_at":"2024-02-12T15:51:24.000Z","size":4690,"stargazers_count":78,"open_issues_count":25,"forks_count":12,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-10-25T22:41:31.531Z","etag":null,"topics":["api","mhw-db","monster-hunter","monster-hunter-world"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LartTyler.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","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,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-02-20T21:54:22.000Z","updated_at":"2025-09-09T15:56:43.000Z","dependencies_parsed_at":"2025-04-22T23:31:55.300Z","dependency_job_id":"59945f5f-02b2-48e5-bfdb-329531b23f6a","html_url":"https://github.com/LartTyler/MHWDB-API","commit_stats":null,"previous_names":[],"tags_count":52,"template":false,"template_full_name":null,"purl":"pkg:github/LartTyler/MHWDB-API","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LartTyler%2FMHWDB-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LartTyler%2FMHWDB-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LartTyler%2FMHWDB-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LartTyler%2FMHWDB-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LartTyler","download_url":"https://codeload.github.com/LartTyler/MHWDB-API/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LartTyler%2FMHWDB-API/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30467802,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T11:00:43.441Z","status":"ssl_error","status_checked_at":"2026-03-13T11:00:23.173Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","mhw-db","monster-hunter","monster-hunter-world"],"created_at":"2024-11-10T02:36:01.809Z","updated_at":"2026-03-13T13:32:14.637Z","avatar_url":"https://github.com/LartTyler.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e **Please note:** This is the source code for the _Monster Hunter World_ API. If you're interested in using the API itself, please [check out the docs](https://docs.mhw-db.com/).\n\n# Getting Started\nCheck out the  [contributing guide](.github/CONTRIBUTING.md) for information on contributing to the project. Feel free\nto drop into the project's [Gitter](https://gitter.im/mhw-db/general) chat and leave some suggestions!\n\n```sh\n$ git clone https://github.com/LartTyler/MHWDB-API.git\n```\n\n## Using Vagrant\nYou can use the included Vagrant configuration to run your own development environment. If you're not familiar with\nVagrant, check out their [getting started](https://www.vagrantup.com/intro/index.html) guide.\n\nIn the project root, run:\n\n```sh\n$ vagrant up\n```\n\nOnce the box is done provisioning, use `vagrant ssh` to access the box and run:\n\n```sh\n$ cd /vagrant\n$ composer install\n$ ./db-reset.sh latest\n$ ./server-start.sh\n```\n\nThe commands, in order, will perform the following tasks:\n- 1 and 2: Navigate to the project root and install dependencies\n- 3: Sync the boxes database with the most recent SQL file in the `snapshots/` directory\n- 4: Start the webserver, which will make the API available on `127.0.0.1:8000`\n\n## Manual Setup\nSupport is not provided for any development environments that are set up manually. If you open an issue, I'll try to\nhelp out as much as possible, but I can't promise anything. If you'd like your devleopment environment to be supported,\nplease use the [Vagrant configuration](#using-vagrant).\n\nThe project requires the following software in order to run:\n\n- PHP 7.1 or higher\n- Composer\n- Memcached\n- MySQL 5.7 or higher OR MariaDB 10.2 or higher\n\nAfter ensuring that the above packages are available, copy the `.env.dist` file to `.env` and modify it to match your\nmachine's configuration. Once you've done that, run the following commands to install the project requirements and start\nthe web server.\n\n```sh\n$ ./db-reset.sh latest \u003cdbname\u003e\n$ composer install\n$ php bin/console server:start\n```\n\nReplace `\u003cdbname\u003e`  with the name of the database you'll be using for the project.\n\n# Feature Tracking\nI'm currently using a Trello board to track features and changes, which can be found [here](https://trello.com/b/KRXsLUCs/mhw-api).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flarttyler%2Fmhwdb-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flarttyler%2Fmhwdb-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flarttyler%2Fmhwdb-api/lists"}