Wolfram Alpha API wrapper built with TypeScript.
Request your secret APP_ID here and store it securely.
import Wolfy from "wolfy";
const shortAnswersResult = await Wolfy.shortAnswers({
appId: "YOUR_APP_ID",
input: "2+2",
});
console.log(shortAnswersResult); // "4"
const spokenResult = await Wolfy.spokenResult({
appId: "YOUR_APP_ID",
input: "Hello",
});
console.log(spokenResult); // "Hello, human"