bloxy.js
v1.1.8
Published
A simple wrapper for the Roblox API.
Downloads
25
Readme
Bloxy.js
Get users by keyword
const { getUsersFromSearch } = require("bloxy.js")
await getUsersFromSearch(keyword)
Returns an array or null
Get avatar by ID
const { getAvatar } = require("bloxy.js")
await getAvatar(userid)
Returns a string or null
Get users by username
const { getUserFromUsername } = require("bloxy.js")
await getUserFromUsername(username, excludeBannedUsers)
Returns a JSON object or null
Get previous usernames by ID
const { getPreviousUsernames } = require("bloxy.js")
await getPreviousUsernames(userid)
Returns an array or null
Get user by ID
const { getUserFromID } = require("bloxy.js")
await getUserFromID(userid)
Returns a JSON object or null
Get last online by ID
const { getLastOnline } = require("bloxy.js")
await getLastOnline(userid)
Returns a JSON object or null