👴PHP & Javascript
Best Application for making a Web Project that utilize Key System or Discord Bot such as Key Bypass. Please follow the guidelines of Panda-Auth Terms of Service when making these.
You might need to install the (node-fetch) before you can utilize this client
npm install node-fetch
async function Validate_Panda(hwid, service, key) {
try {
const fetch = await import('node-fetch');
const url = `https://pandadevelopment.net/v2_validation?service=${service}&hwid=${hwid}&key=${key}`;
const response = await fetch.default(url);
const data = await response.json();
const v2Authentication = data.V2_Authentication;
const premiumMode = data.Key_Information.Premium_Mode;
const noKeyRequirement = data.Key_Information.NoKey_Requirement;
return { v2Authentication, premiumMode, noKeyRequirement};
} catch (error) {
throw new Error('Error fetching data:', error);
}
}
// Usage example:
//hwid could be ( Discord Username / IP / Hardware ID / Fingerprint & etc, Depends how do u use it)
const hwid = 'YEAA';
//service is your identifier that registered on your Panda-Auth Account
const service = 'pandadevkit';
//Key (If you want ur user to put key) or you can type their keyless, and let the key system authenticate via hwid only
const key = 'pandadev_d74e6e30c60dc9c5d0db7bbcf2ff115650d73649ebc928a026a61f99d3c63e86';
Validate_Panda(hwid, service, key)
.then(({ v2Authentication, premiumMode, noKeyRequirement }) => {
console.log('--------------------------------------');
console.log('V2 Authentication:', v2Authentication);
console.log('Premium Mode:', premiumMode);
console.log('Keyless / Authenticate only HWID:', noKeyRequirement);
console.log('--------------------------------------');
})
.catch(error => console.error(error));

Last updated