The public Venus API is unauthenticated and rate-limited per IP. All responses are JSON. The base URL is https://getvenus.kdns.fr
Returns the current status, version, and configuration of Venus.
const res = await fetch("https://getvenus.kdns.fr/API/endpoint.json", {
headers: { Accept: "application/json" },
});
const data = await res.json();
console.log(data);
{
"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"
}
}
}
}
| 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 | 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 |