/Online-Minecraft-Plyaer-API-Namemc-Server-Hypixel

I decided to design a user interface that indicates whether a Minecraft player is on a Hypixel server or not by relying on the UUID 🍃

Primary LanguageJavaScriptMIT LicenseMIT

GET Online Minecraft Plyaer Likes from API-Namemc Server Hypixel

I decided to design a user interface that indicates whether a Minecraft player is on a Hypixel server or not by relying on the UUID 🍃 image I'm going to rely on the api namemc that will provide us the users on the Hypixel server with the UUID

https://api.namemc.com/server/mc.hypixel.net/likes

We will learn about this API in JavaScript through this script

async function search(query) {
  try {
    // Perform search
    const results = await fetch(`https://api.namemc.com/server/mc.hypixel.net/likes?profile=${query}`);
    const data = await results.json();
    return data;
  } catch (err) {
    console.error(err);
  }
}

It will show True if the player was found and False if it was not found image

Special thanks to the OpenAi ChatGPT image development staff who helped design this project .

Thanks NameMC image for making the api accessible

If you are a Minecraft player on the Hypixel server, you can find me through this information

Minecraft Name : 6iw
Minecraft UUID : 1a3b4eb3-b24b-4222-94b6-4ef0ffa62198
NameMc URL : https://namemc.com/profile/6iw
Hypixel Profile : https://hypixel.net/members/amadich.2841540/
Hypixel Rank : [VIP+]

image