let body = {"requestKey":"requestValue"};
let response = await makeAPIRequest({
  url: `url of the API`,
      method: "Request Method",
      headers: {
          'Authorization': `Bearer api-key`,
          'Content-Type': 'application/json'
      },
      body: body
});