JSFiddle - React, Tailwind, and code Playground

by BladeBronson

JavaScript

const getSynonyms = async () => {
  const res = await fetch("https://wordsapiv1.p.rapidapi.com/words/hatchback/typeOf", {
    "method": "GET",
    "headers": {
      "x-rapidapi-host": "wordsapiv1.p.rapidapi.com",
      "x-rapidapi-key": "zGNUrMMA8omshxnuk3bopyTQkFiAp1pSBkhjsnn2vmnuoq5jPX"
    }
  });
  console.log(res);
  return res;
}

getSynonyms();