Description

This is an api endpoint to detect canned responses from customer support.

Instructions To Use

Send a request to the same url with post method.

Github

Code Example In Javascript

          
const res = await fetch(url, {
  method: "POST",
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
  content: "hello is this a canned response?"
  })
})
          
// response
const data = await res.json()
console.log(data.result)