Skip to main content
The server has an embedded HTTP API for fetching status and sending commands remotely. This describes that API. By default, this HTTP API listens on the same port number as the game UDP port, but this can be changed with the relevant status.* CVars.
This article uses comments in JSON to make stuff easier to describe. This is not standard JSON and just for example here. Don’t put comments in JSON for real data.
Content can add more APIs to this.

Public API (no authorization needed)

GET /status

Gets basic status info about the server as JSON, used to display the status in the SS14 launcher. The engine automatically supplies the following info:
Content can edit this info at will.

GET /info

More detailed JSON server information that is mostly necessary when connecting to the server (to download resources and some other stuff).
For details about build information, see Advanced Server Build Configuration. Content can also edit this at will.

Watchdog API

Requires authorization by specifying the WatchdogToken HTTP header to match the watchdog.token CVar (automatically set when using the watchdog).

POST /shutdown

Instructs the server to gracefully shut down immediately.

POST /update

Instructs the server that an update is available and that it should automatically shut down as soon as possible to allow for the update to be applied. For SS14, this means the server will restart when the current round ends. These are the valid icons for the links in the info API:
  • discord
  • forum
  • github
  • web: Generic website icon
  • wiki

Standard tags

These are standard understood tags for the tags field in status data. The launcher supports filtering and other behaviors based on these tags.

18+

Your server contains 18+ content.

lang:

Specifies Describes the language used on your server with an IETF Language Tag. Examples: lang:en for English, lang:ru for Russian, etc… You can have multiple of this tag to specify multiple languages, if for some reason you want a multilingual server? You can specify a more detailed IETF language tag like en-US, but the launcher will currently only look at the primary tag (e.g. en).

rp:none, rp:low, rp:med, rp:high

Specifies level of RP (roleplay) expected on your server. This is very subjective.

region:

Specifies a rough region code to aid players in selecting servers close to them. Following codes are understood: See this map for rough guidance what goes where: region_map_ss14.png If your region doesn’t have a good fit, let us know!

no_tag_infer

Stops automatic tag inference, see below.

Tag inference

Some hub tags are automatically inferred by the launcher based on server name. This is mostly intended to provide some filters before all servers fill them in manually, so if you’re reading this as a server host, just fill in your tags manually and you can ignore this. Rules are as follows:
  • If you specify no_tag_infer, no tag inference is done at all.
  • [18+] or [+18] automatically adds the 18+ tag.
  • [NRP/LRP/MRP/HRP] automatically add the relevant roleplay level as a tag, if you have no explicit role-play tag at all.
  • [EN] and [RU] add English and Russian as a tag respectively, if you have no explicit language tag at all.
We will not be adding extra rules (e.g. detecting more languages) to this. Tag your server manually.
Last modified on June 20, 2026