Discover/servers-frontend.fivem.net API
live

servers-frontend.fivem.net APIservers-frontend.fivem.net

Retrieve live FiveM server data by CFX join code: status, player list, loaded resources, config vars, owner info, and more via a single API endpoint.

Endpoints
1
Updated
14d ago
Try it
The server identifier found in CFX.RE/JOIN/{server_id} URLs (e.g. '3a4ooy').
api.parse.bot/scraper/d35b0455-060f-48e0-9145-e60790e961df/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d35b0455-060f-48e0-9145-e60790e961df/get_server_details?server_id=abc123' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalclick to expand

Retrieve detailed information about a FiveM server by its server ID. Returns server status, player list, resources, configuration variables, owner information, and connection endpoints. Returns input_not_found for unknown server IDs.

Input
ParamTypeDescription
server_idrequiredstringThe server identifier found in CFX.RE/JOIN/{server_id} URLs (e.g. '3a4ooy').
Response
{
  "type": "object",
  "fields": {
    "vars": "object - Server variables (tags, Discord, banners, locale, game build, etc.)",
    "owner": "object - Owner information with id, name, profile_url, and avatar_url fields",
    "status": "string - Server status: 'online', 'offline', 'empty', 'full', 'private', or 'suspended'",
    "players": "array of objects - Connected players with id, name, and ping fields",
    "hostname": "string - Raw hostname with color codes",
    "last_seen": "string - Last seen timestamp in ISO 8601 format",
    "resources": "array of strings - Server resources/scripts loaded",
    "server_id": "string - The server endpoint identifier",
    "is_private": "boolean - Whether server is private",
    "burst_power": "integer - Server burst power",
    "is_fallback": "boolean - Whether this is a fallback server",
    "max_players": "integer - Maximum player capacity",
    "server_name": "string - Clean server name (color codes removed)",
    "icon_version": "integer - Icon version for icon API",
    "player_count": "integer - Current number of connected players",
    "upvote_power": "integer - Server upvote power",
    "server_version": "string - FXServer version information",
    "support_status": "string - Support status",
    "connect_endpoints": "array of strings - Server connection endpoints (URLs or IPs)",
    "enhanced_host_support": "boolean - Whether enhanced host support is enabled",
    "steam_ticket_required": "boolean - Whether Steam ticket is required to connect"
  },
  "sample": {
    "data": {
      "vars": {
        "tags": "mythicalbro, busted, pursuits, unique, pvp",
        "Discord": "https://discord.busted.community",
        "sv_projectName": "BUSTED: NA"
      },
      "owner": {
        "id": 19368,
        "name": "MythicalBro",
        "avatar_url": "https://forum.cfx.re/user_avatar/forum.cfx.re/mythicalbro/128/9107_2.png",
        "profile_url": "https://forum.cfx.re/u/MythicalBro"
      },
      "status": "offline",
      "players": [],
      "hostname": "BUSTED | NA | PvP | Cops vs Robber",
      "last_seen": "2026-05-03T05:15:14.945604483Z",
      "resources": [
        "hardcap",
        "console_log",
        "bob74_ipl",
        "core",
        "data"
      ],
      "server_id": "3a4ooy",
      "is_private": false,
      "burst_power": 0,
      "is_fallback": false,
      "max_players": 64,
      "server_name": "BUSTED: NA",
      "icon_version": -2112999989,
      "player_count": 0,
      "upvote_power": 3,
      "server_version": "FXServer-master SERVER v1.0.0.28954 win32",
      "support_status": "supported",
      "connect_endpoints": [
        "https://na.server.busted.community/"
      ],
      "enhanced_host_support": true,
      "steam_ticket_required": true
    },
    "status": "success"
  }
}

About the servers-frontend.fivem.net API

The FiveM Server Details API exposes 10+ structured fields for any FiveM server via the get_server_details endpoint, accepting a CFX.RE join code (e.g. 3a4ooy) and returning real-time server status, connected player list with ping values, loaded resources, configuration variables, owner profile, and connection identifiers. It covers the full server profile surfaced on the CFX server browser in a single call.

What the API Returns

The get_server_details endpoint accepts a single required parameter — server_id — which is the short alphanumeric code found in CFX.RE/JOIN/{server_id} links. The response includes a status field that distinguishes between six states: online, offline, empty, full, private, and suspended. Alongside status, the response provides hostname (the raw server name including color codes), last_seen as an ISO 8601 timestamp, and is_private to flag servers that are not publicly joinable.

Player and Resource Data

The players array lists every connected player at query time, with each entry containing an id, name, and ping value. This makes it straightforward to track concurrency, identify active sessions, or monitor latency per player. The resources array enumerates every script and resource loaded on the server — useful for detecting which frameworks (e.g. ESX, QBCore) or specific mods are active.

Configuration and Owner Fields

The vars object contains server-defined configuration variables, which typically include tags, Discord invite links, banner image URLs, locale, and game build version — the same metadata shown in the CFX server browser. The owner object provides the server owner's id, name, profile_url, and avatar_url from their CFX account. An unknown or invalid server_id returns an input_not_found response rather than an empty result, allowing callers to distinguish a missing server from an offline one.

Common use cases
  • Monitor a FiveM community server's live player count and status for an uptime dashboard.
  • Detect which server framework (ESX, QBCore, etc.) a server runs by inspecting the resources array.
  • Build a CFX server browser alternative by aggregating hostname, vars, and status across multiple server IDs.
  • Alert a Discord community when a tracked server's status changes from online to offline using last_seen.
  • Audit server configuration by reading vars fields like game build, locale, and banner settings.
  • Look up server ownership and link to the CFX profile using the owner.profile_url field.
  • Track per-player ping over time using the ping field in the players array for performance monitoring.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does FiveM have an official developer API for server data?+
CFX.re exposes some public endpoints for server listing data, documented informally in the FiveM community forums and GitHub repositories (github.com/citizenfx). However, there is no formally supported, versioned developer API with guaranteed uptime or structured documentation for server detail lookups.
What does the `status` field distinguish, and how is an empty server represented?+
The status field returns one of six string values: online, offline, empty, full, private, or suspended. An empty status means the server is reachable but has zero connected players, which is distinct from offline (unreachable) or suspended (administratively disabled). The is_private boolean provides an additional signal independent of the private status value.
Does the API return historical player counts or server uptime history?+
No historical data is returned. The API provides a real-time snapshot: current players, current status, and a last_seen timestamp. It does not expose uptime percentages, player count time series, or session history. You can fork this API on Parse and revise it to store responses over time and add a history endpoint.
Can I query multiple servers in a single request or search servers by name?+
The current endpoint accepts one server_id per call and does not support batch lookups or name-based search. You can fork this API on Parse and revise it to add a batch endpoint that accepts a list of server IDs or a search-by-name capability.
What happens if I pass an invalid or unknown server ID?+
The endpoint returns an input_not_found response for unrecognized server IDs, rather than an empty object or HTTP 404. This allows callers to clearly distinguish between a server that exists but is offline versus one that does not exist in the CFX registry at all.
Page content last updated . Spec covers 1 endpoint from servers-frontend.fivem.net.
Related APIs in Developer ToolsSee all →
arxiv.org API
Search and discover academic research papers on arXiv using keywords, authors, titles, categories, and dates, then access detailed metadata for any paper. Browse the complete arXiv category taxonomy to explore research across different scientific disciplines.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
allaboutcircuits.com API
Access educational electronics content from All About Circuits, including technical articles, circuit diagrams, textbook volumes, and forum discussions organized by category. Search and browse the latest resources, view detailed articles, explore engineering tools, and find answers across their community forums.
bazaardb.gg API
Search and retrieve comprehensive data about The Bazaar game cards, including items, skills, merchants, trainers, monsters, and events with full details like tiers, attributes, enchantments, and tooltips. Quickly find the specific card information you need to optimize your gameplay strategy and deck building.
icons8.com API
Search for millions of icons across different visual styles like colorful, pattern-based, and minimalist designs to find the perfect icon for your project. Discover and retrieve icons in your preferred style to enhance your designs and applications.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.
cursor.directory API
Search and discover AI cursor rules, MCP servers, and job listings organized by category to enhance your development workflow. Browse detailed information about each rule and server to find the tools and configurations that best fit your needs.
smstome.com API
Browse temporary phone numbers from countries around the world and read incoming SMS messages in real time. List available numbers by country, retrieve messages sorted newest to oldest, and search message history by sender or content.