NextFUR Docs
Our Website
  • 🎉Introduction
  • 😇How to make the Requests
  • General Handling
    • 📄Forms Handling
    • 🔏Authentication
    • 🤵Users Handling
    • 🎺Other Requests
  • DASHBOARD
    • 😀Users Dashboard
    • 👮Staff Dashboard
  • SECURITY TYPES
    • 😎User Session
    • 🔗Server Generated OTP
Powered by GitBook
On this page

How to make the Requests

PreviousIntroductionNextForms Handling

Last updated 9 months ago

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