API Documentation

The public Venus API is unauthenticated and rate-limited per IP. All responses are JSON. The base URL is https://getvenus.kdns.fr

On this page

GET /API/endpoint.json

Returns the current status, version, and configuration of Venus.

GET https://getvenus.kdns.fr/API/endpoint.json

Example Request

const res = await fetch("https://getvenus.kdns.fr/API/endpoint.json", {
  headers: { Accept: "application/json" },
});
const data = await res.json();
console.log(data);

Response

{
  "Venus": {
    "Status": "In Dev",
    "Version": "0.0.0",
    "type": "external",
    "UNC": 99,
    "sUNC": 100,
    "Raknet": true,
    "Multi_Instance": true,
    "Decompiler": true,
    "loaderVersion": "v0.0.0",
    "clientVersion": "v0.0.0-ptb",
    "Discord_Invite": "https://discord.gg/beM4pRtBdG",
    "Changelogs": [
      "Nothing"
    ],
    "supportedRobloxBuild": {
      "hash": "ddf602d9cfe44005",
      "version": "version-ddf602d9cfe44005",
      "channel": "LIVE"
    },
    "Download_Options": {
      "Download_1": {
        "Title": "Work.ink",
        "Download_Link": "https://work.ink/None"
      }
    }
  }
}

Response Fields

Field Type Description
Status string Current operational status (In Dev, Operational, Down, Maintenance, Testing, Updating)
Version string Semantic version, e.g. 0.0.0
UNC integer UNC compatibility score (0-100)
sUNC integer sUNC compatibility score (0-100)
Raknet boolean Whether RakNet support is enabled
Multi_Instance boolean Whether multi-instance is supported
Decompiler boolean Whether decompiler is enabled
loaderVersion string Current loader version
clientVersion string Current client version
Discord_Invite string Discord server invite link
Changelogs array Array of recent changelog entries
supportedRobloxBuild object Supported Roblox build information
Download_Options object Available download mirrors and links

Status Values

Status Description
Operational All systems functioning normally
In Dev Currently in development, may be unstable
Maintenance Undergoing scheduled maintenance
Testing Currently being tested
Updating Receiving updates
Down Service is currently unavailable

Need Help?

Need an endpoint that is not listed here? Open an issue on Discord.

Join our Discord