Skip to content

1.4 author

NotLe0n edited this page May 29, 2023 · 12 revisions

Request

/1.4/author/<steamid: number>
/1.4/author/<steamname: String>

Json response

{
    steam_id: u64,
    steam_name: String,
    mods: [ ModInfo* ],
    total: u32,
    total_downloads: u64,
    total_favorites: u64,
    total_views: u64,
}

* same data as /1.4/mod

Example

{
   "mods":[
      {
         "author":"NotLe0n",
         "author_id":"76561198278789341",
         "children":null,
         "description":null,
         "display_name":"Angler Shop",
         "downloads_total":205255,
         "favorited":4748,
         "followers":0,
         "homepage":"https://github.com/NotLe0n/AnglerShop",
         "internal_name":"NoFishingQuests",
         "mod_id":"2563082541",
         "mod_references":"",
         "modside":"Both",
         "num_comments":69,
         "num_versions":20,
         "playtime":"29713666498",
         "tags":[
            {
               "display_name":"quality of life",
               "tag":"quality of life"
            },
            {
               "display_name":"Gameplay Tweaks",
               "tag":"Gameplay Tweaks"
            },
            {
               "display_name":"Localization Support",
               "tag":"Localization Support"
            },
            {
               "display_name":"Both",
               "tag":"Both"
            }
         ],
         "time_created":1627819550,
         "time_updated":1675440350,
         "versions":[
            {
               "mod_version":"2.3.0.1",
               "tmodloader_version":"2022.9"
            },
            {
               "mod_version":"2.2.1",
               "tmodloader_version":"2022.6"
            },
            {
               "mod_version":"2.2.1.1",
               "tmodloader_version":"2022.7"
            }
         ],
         "views":102954,
         "vote_data":{
            "score":0.9279279112815857,
            "votes_down":14,
            "votes_up":774
         },
         "workshop_icon_url":"https://steamuserimages-a.akamaihd.net/ugc/1838047467481222661/92D076254B103280737D26C82F6010C560ABA559/"
      },
      {
         "author":"NotLe0n",
         "author_id":"76561198278789341",
         "children":null,
         "description":null,
         "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":"30665953192",
         "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.akamaihd.net/ugc/1897722585639135069/6078C4576A6F16BA3054821F4369C05CEE07235F/"
      },
      ...
   ],
   "steam_id":76561198278789341,
   "steam_name":"NotLe0n",
   "total":11,
   "total_downloads":545031,
   "total_favorites":11227,
   "total_views":354382
}
Clone this wiki locally