Ask questions in plain English. The AI agent will browse the web and find the answer for you.
const response = await fetch("https://playwright.desent.io/api/agent", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
query: "Your question here",
}),
});
const data = await response.json();
console.log(data.answer);