https://sarcasmapi.onrender.com
{
"sarcasm": "I'm not great at the advice. Can I interest you in a sarcastic comment."
}
const response = await fetch('https://sarcasmapi.onrender.com');
const data = await response.json();
console.log(data.sarcasm);
A restful api that returns random Chandler Bing's sarcastic comments.
TypeScript
https://sarcasmapi.onrender.com
{
"sarcasm": "I'm not great at the advice. Can I interest you in a sarcastic comment."
}
const response = await fetch('https://sarcasmapi.onrender.com');
const data = await response.json();
console.log(data.sarcasm);