Renjin Logo

Renjin Public API Directory

← Back to renjin.io

These APIs are public and free to use. However, attribution is required in any UI or product that makes use of them. Please include a visible reference such as Powered by Renjin, or Powered by renjin.tech.

rbx.renjin.tech provides a user-friendly interface for browsing the entire Roblox client and studio deployment history.
For developers, it also exposes a versioned JSON API.

GET /v1/history/{platform}

Platforms: Windows, macOS, macOS-arm64

Returns: Entire version and Luau deployment history, in chronological order.

Note: Windows history spans over a decade.

Sample Response:

[{
  "version": "version-24b06fe4fe1c4c9d",
  "binary": "client",
  "timestamp": 1692736857,
  "luau": ["0","591","0","5910633"]
}, {
  "version": "version-86d99445650045aa",
  "binary": "studio",
  "timestamp": 1692736961,
  "luau": ["0","591","0","5910633"]
},{
  "version": "version-1cc6c9b33b104540",
  "revert": true,
  "binary": "rccservice",
  "timestamp": 1266879233,
  "luau": []
}]

Timestamps are in Unix time in seconds (UTC).

rbxcdn.renjin.tech

A CDN of Roblox client and studio builds, including private PRC / China distributions.

GET /{platform}/{version}/{binary}[/china]

  • Platforms: Windows, macOS, macOS-arm64
  • Version: Roblox hash string (exclude the version- prefix)
  • Binary: client, studio
  • /china: Optional suffix, typically for PRC studio builds

Response: Returns a ZIP file or a JSON error object.