Docs FiveM Integration Live Player Data

Live Player Data

3 min read

Your website can display real-time information about players on your server.


Data available

Depending on your framework, the following data is available:

Data pointNo frameworkQBCoreESX
Player count
Player names (Steam)
Character names
Current job
Job grade
Gang/faction
Discord avatar

Update frequency

Player data updates every 30 seconds by default. Change this in config.lua:

Config.UpdateInterval = 30  -- minimum: 10, recommended: 30-60
WARNING
Setting a very low interval (under 10 seconds) may increase server CPU usage. We recommend 30 seconds for most servers.

Where it appears on your site

Live player data feeds these modules:

  • Server Status — player count and online indicator
  • Player List (advanced) — full list of online players
  • Leaderboards — rankings based on player data
  • Live Stats Ticker — scrolling stat strip

Player list privacy

By default, character names are shown. To show Steam names instead:

Config.ShowCharNames = false

To hide the player list entirely:

Config.ShowPlayerList = false