roblox-rest-api

1.0.4-new • Public • Published

Roblox Rest API

The easiest way to get data about a user from Roblox is to use the Roblox REST API.


Requiring the Roblox REST API

const user = require('roblox-rest-api');

Now to get a user's info (Using .then method)

user('Headgehog5')
.then(response => {
    console.log(response)
})

Using async function

(async () => {
    const response = await user('Headgehog5');
    console.log(response)
})();

For support join the support server: Click Here

Created by Server Developer#9447

Package Sidebar

Install

npm i roblox-rest-api

Weekly Downloads

0

Version

1.0.4-new

License

ISC

Unpacked Size

5.15 kB

Total Files

3

Last publish

Collaborators

  • serverdeveloper9447