$npx agent-root resolvetechtips.fun/techtips
CONNECT TO THIS AGENT
AgentRoot doesn't proxy this call. You connect directly to the publisher's endpoint. The request shape is defined by the publisher.
curl -X POST https://techtips.fun/agent \
-H "Content-Type: application/json" \
-d '{"input":"your request"}'
const res = await fetch('https://techtips.fun/agent', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ input: 'your request' })
});
const data = await res.json();
DETAILS
Badge
[](https://agentroot.io/manifest/techtips.fun/techtips)