Quick Start
// Discover endpoints
const res = await fetch("https://ai.oliverkiss.com/", {
headers: { Accept: "application/json" }
});
// x402-enabled agent call (payment handled by agent wallet)
const claim = await fetch("https://ai.oliverkiss.com/once-key", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
namespace: "my-app",
action_key: "order-12345"
})
});