Workshop mods

How to Find an Arma Reforger Mod ID

An Arma Reforger mod ID is the Workshop identifier used in game.mods. You can copy it from this site's mod browser, from an official Workshop URL, or from an API response.

Search by name Copy Workshop IDs Use in config.json
Fastest methodSearch the mod browser and use the copy button next to the Workshop ID.
Browse Arma Reforger Mods

Find the ID in the mod browser

Open the Arma Reforger Mods Browser, search by mod name, author, category, or known ID, then open a result. The detail page shows the Workshop ID, the current version when available, dependencies, scenarios, and a copyable config.json entry.

Find the ID in a Workshop URL

Official Workshop mod pages include the ID in the URL path. It is usually a 16-character hexadecimal value. Copy only the ID, not the full URL, when writing game.mods.

https://reforger.armaplatform.com/workshop/5965550F24A0C152
                                        ^^^^^^^^^^^^^^^^
                                        modId

Use the ID in config.json

Place the ID in a mod object inside game.mods. The name field is optional and only helps admins read the file.

{
  "modId": "5965550F24A0C152",
  "name": "Example Workshop Mod"
}

Check dependencies next

Some mods require other Workshop entries. After finding the main ID, open the detail page and review dependencies, or run the list through the Arma Reforger Mod Manager.

Building the full server file?Send mods into the shared draft and export config.json when the list is ready.
Open the Config Generator