- Go to https://lyntr.com and log in with discord
- Paste this code into the browser console. You might have to enter
allow pasting
(CRTL
+SHIFT
+I
or RIGHT CLICK
>DEVELOPER TOOLS
>INSPECT
)
- Replace the
username
and handle
with the one you want
- Hit enter and refresh the page.
fetch('https://lyntr.com/api/profile', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
username: "Paranoia",
handle: "@paranoia",
AGI: "notartificialgeneralintelligences",
CatQuestion: false,
ShortFormContent: "0",
Chemistry: "francium",
GPT: "generativepretrainedtransformer",
MathQuestion: "30",
ContentCreators: "0",
MathProblem: "9",
SequenceSymbol: "idfk",
SequenceNumber: "42",
Dexerto: false,
MathProblemComplex: "355",
TypingTest: "120",
AudioRick: false,
Degree: true,
AudioAgeOfWar: true,
British: false,
Kubernete: false,
ReactionImage: false,
GimmickAccount: false
})
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
Amazing. Thanks