Skip to content

1.4 author

Leon Gies edited this page Feb 12, 2026 · 19 revisions

Request

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

Note

The steamname parameter in /1.4/author/<steamname: String> refers to the steam user's vanity profile url.
Some users don't have one, in which case the steamid query is required.

Json response

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

* same data as /1.4/mod

Example

{
  "steam_id": "76561198278789341",
  "steam_name": "NotLe0n",
  "total": 13,
  "total_downloads": 2398869,
  "total_favorites": 62547,
  "total_views": 1451706,
  "mods": [
    {
      "author": "NotLe0n",
      "author_id": "76561198278789341",
      "children": null,
      "description": null,
      "display_name": "Better Zoom",
      "downloads_total": 1084925,
      "favorited": 28144,
      "followers": 0,
      "homepage": "https://github.com/NotLe0n/BetterZoom",
      "internal_name": "BetterZoom",
      "mod_id": 2562953970,
      "mod_references": "",
      "modside": "Client",
      "num_comments": 265,
      "num_versions": 50,
      "playtime": "227471036362",
      "socials": null,
      "tags": [
        {
          "display_name": "Quality Of Life",
          "tag": "quality of life"
        },
        {
          "display_name": "Utilities",
          "tag": "Utilities"
        },
        {
          "display_name": "Visual Tweaks",
          "tag": "Visual Tweaks"
        },
        {
          "display_name": "Client",
          "tag": "Client"
        },
        {
          "display_name": "Developer's Choice",
          "tag": "Developer's Choice"
        },
        {
          "display_name": "1.4.4",
          "tag": "1.4.4"
        },
        {
          "display_name": "1.4.3",
          "tag": "1.4.3"
        },
        {
          "display_name": "English",
          "tag": "English"
        },
        {
          "display_name": "German",
          "tag": "German"
        },
        {
          "display_name": "Russian",
          "tag": "Russian"
        },
        {
          "display_name": "Simplified Chinese",
          "tag": "Chinese"
        }
      ],
      "time_created": 1627807870,
      "time_updated": 1754688103,
      "versions": [
        {
          "mod_version": "2025.6.3.0",
          "tmodloader_version": "5.2.3"
        },
        {
          "mod_version": "2022.9.47.30",
          "tmodloader_version": "4.3.1"
        },
        {
          "mod_version": "2024.5.3.3",
          "tmodloader_version": "4.5.0.3"
        },
        {
          "mod_version": "2025.3.3.1",
          "tmodloader_version": "5.2.1"
        },
        {
          "mod_version": "2025.4.3.0",
          "tmodloader_version": "5.2.2"
        }
      ],
      "views": 609290,
      "vote_data": {
        "score": 0.950520098209381,
        "votes_down": 126,
        "votes_up": 3331
      },
      "workshop_icon_url": "https://images.steamusercontent.com/ugc/17578979743704761662/F7A72DE7DDBC6123436953DFE3106E1FDB8AD590/"
    },
    ...
  ]
}

Clone this wiki locally