Hello , Guys anyone can help me in how to add this API to my app using Web component
var axios = require("axios").default;
var options = {
method: 'POST',
url: 'https://jspell-checker.p.rapidapi.com/check',
headers: {
'content-type': 'application/json',
'x-rapidapi-key': '**removed by Mod**',
'x-rapidapi-host': 'jspell-checker.p.rapidapi.com'
},
data: {
language: 'enUS',
fieldvalues: 'thiss is intresting',
config: {
forceUpperCase: false,
ignoreIrregularCaps: false,
ignoreFirstCaps: true,
ignoreNumbers: true,
ignoreUpper: false,
ignoreDouble: false,
ignoreWordsWithNumbers: true
}
}
};