--- sidebar_position: 5 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Minecraft Mod Update Checker A simple way for a mod to check if it is up to date ## GET /v1/updates/minecraft/mods/ → /v1/updates/minecraft/mods/*package*/*modloader*/*minecraftversion*/*modversion* | Parameter | Type | Description | Example | Required | Default Value (if optional) | | ---------------- | ------------------- | --------------------------------------------------- | ------------------------- | -------- | --------------------------- | | package name | String | Full package name (letter case **RELEVANT**) | "me.jonasjones.mcwebserver" | Yes | - | | modloader | String | modloader id ("fabricquilt" or "forge") | "fabricquilt | Yes | - | | minecraftversion | Version Number | The Minecraft Version | "1.14.4" | Yes | - | | modversion | Version Number | The Mod Version | "0.3.2" | Yes | - | :::tip[**Example** Response] ```json { "promos": { "latest": "0.3.2", "recommended": "0.3.2" }, "upToDate": true, "telemetry_enabled": false } ``` ```json API is down { "status": 503, "statusText": "Service Unavailable" } ``` ::: :::danger[//TODO] - Projects Database only `last_update` is done. others have been copied from kcomebacks as tamplates but didnt replace the shit yet. - Missing Tabs for other error messages in ALL routes like BAD REQUEST and INTERNAL SERVER ERROR - Response variables types tables missing for ALL routes inside the individual resonse code tabs :::