How can I get a user's description with Noblox?

I was making a verification system for a bot until I ran into a problem. Noblox.js doesn’t have a function to get a user’s description. If you don’t know what a description is, it’s your about.
image
Are there any ideas on how I can get the user’s description?

Thanks for reading.

why you need to use noblox.js? you can use https://verify.eryn.io, it has an api documentation

1 Like

I assume that they’re making a custom verification system

1 Like

Yes, that’s what we are doing until I found out noblox couldn’t get a user’s description/about

You could try using the official roblox api:
https://api.roblox.com/docs

1 Like

Yeah I think that might work. Thanks a lot.

1 Like

Never used noblox.js, but have you tried the getPlayerInfo function?

Hey, as @hell_ish said, I ran some code and it worked. Code:

const noblox = require('noblox.js')
const token = process.env.token

async function startApp() {
  const information = await noblox.getPlayerInfo(170445088)

  console.log(information)
}

startApp()

Output:
image

I found this random api and decided to use it and it worked.
https://users.rprxy.xyz

1 Like

Alright, that might still be useful if you’re looking to use noblox.

1 Like

thanks, ill use it if I want an easier way of doing things

1 Like

That’s just a proxy; you could’ve used https://users.roblox.com. rprxy.xyz is just a proxy for in-game HTTP requests

1 Like