https://github.com/sewnie/rbxweb
A Go package that provides access to hand-picked Roblox web-based APIs.
https://github.com/sewnie/rbxweb
go golang roblox roblox-api roblox-api-wrapper robloxapi
Last synced: 5 months ago
JSON representation
A Go package that provides access to hand-picked Roblox web-based APIs.
- Host: GitHub
- URL: https://github.com/sewnie/rbxweb
- Owner: sewnie
- License: gpl-3.0
- Created: 2024-02-10T08:08:31.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-09-23T15:41:57.000Z (9 months ago)
- Last Synced: 2026-01-14T23:47:35.112Z (5 months ago)
- Topics: go, golang, roblox, roblox-api, roblox-api-wrapper, robloxapi
- Language: Go
- Homepage:
- Size: 139 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rbxweb
[pkg.go.dev]: https://pkg.go.dev/github.com/sewnie/rbxweb
[pkg.go.dev_img]: https://img.shields.io/badge/%E2%80%8B-reference-007d9c?logo=go&logoColor=white&style=flat-square
[![Godoc Reference][pkg.go.dev_img]][pkg.go.dev]
Go package that provides access to hand-picked Roblox web-based APIs.
The currently implemented APIs are considered legacy and are based on cookies;
they are suffixed with their version numbers to standout from rbxweb source code.
No tests are performed, and stability is not guranteed; this API is susceptible to breaking changes from both Roblox and code changes.
#### Example
```
client := rbxweb.NewClient()
cv, err := client.ClientSettingsV2.GetClientVersion(rbxweb.BinaryTypeWindowsPlayer, "")
```