Skip to content

1.4 mod

Leon Gies edited this page Nov 4, 2023 · 8 revisions

Request

/1.4/mod/<modid: number>
/1.4/mod/<modname: String>

Note

/1.4/mod/<modname: String> uses the internal name of the mod. It might not always match with the display name.

Json response

{
    display_name: String,
    internal_name: String,
    mod_id: String,
    author: String,
    author_id: String,
    modside: String,
    homepage: String,
    versions: [{ mod_version: String, tmodloader_version: String }],
    tmodloader_version: String,
    version: String,
    mod_references: String,
    num_versions: u32,
    tags: [{ tag: String, display_name: String }] | null,
    time_created: u64,
    time_updated: u64,
    workshop_icon_url: String,
    children: [{ sortorder: u32, file_type: u32, publishedfileid: String }] | null,
    downloads_total: u32,
    favorited: u32,
    followers: u32,
    views: u64,
    vote_data: { score: f64, votes_up: u32, votes_down: u32} | null,
    playtime: String,
    num_comments: u32,
    description: String | null,
    socials: { youtube: String, twitter: String, facebook: String, reddit: String} | null,
}

Example

{
   "author":"NotLe0n",
   "author_id":"76561198278789341",
   "children":null,
   "description":"[h1]Better Zoom[/h1]\r\n<...>",
   "display_name":"Better Zoom",
   "downloads_total":226153,
   "favorited":4377,
   "followers":0,
   "homepage":"https://github.com/NotLe0n/BetterZoom",
   "internal_name":"BetterZoom",
   "mod_id":"2562953970",
   "mod_references":"",
   "modside":"Client",
   "num_comments":110,
   "num_versions":23,
   "playtime":"30665715248",
   "tags":[
      {
         "display_name":"Utilities",
         "tag":"Utilities"
      },
      {
         "display_name":"quality of life",
         "tag":"quality of life"
      },
      {
         "display_name":"Visual Tweaks",
         "tag":"Visual Tweaks"
      },
      {
         "display_name":"Client",
         "tag":"Client"
      },
      {
         "display_name":"Developer's Choice",
         "tag":"Developer's Choice"
      }
   ],
   "time_created":1627807870,
   "time_updated":1675438721,
   "versions":[
      {
         "mod_version":"4.3.1",
         "tmodloader_version":"2022.9"
      },
      {
         "mod_version":"4.0.0.1",
         "tmodloader_version":"2022.6"
      },
      {
         "mod_version":"4.1",
         "tmodloader_version":"2022.7"
      }
   ],
   "views":147504,
   "vote_data":{
      "score":0.9299719929695129,
      "votes_down":25,
      "votes_up":946
   },
   "workshop_icon_url":"https://steamuserimages-a.akam<...>",
   "socials": null,
}
Clone this wiki locally