😇How to make the Requests

You can make the requests to the NextFUR API by using some http request libraries or simply using nodefetch. Here is an exemple of how you can get an user information:

const token = "<YOUR CLIENT TOKEN>"
const userID = "<USERID YOU WANT TO REQUEST>"

let response = await fetch(`https://api.nextfur.net/v1/users/get/id/${userID}?token=${token}`)
let data = response.json() //"All" the user's information

You can see more about user fetching in the users handling section:

🤵Users Handling

Last updated