English Grammar API

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
    }
  }
};

I removed your x-rapidapi-key, please do not post personal keys for yor own protection

Thank you for your note

Look at the example you posted:

  • the url
  • the headers
  • the parameters of the method post (data)

And use :

Block web.url
Block web.hearder
Block web.post
Block web.got

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.