APIs, SDKs, and tools to extend the platform. Create custom agents, integrations, and experiences.
Full programmatic control over agents, conversations, and deployments.
Build agents with custom tools, memory, and personality in TypeScript.
Real-time notifications for messages, agent status, and user actions.
Publish and sell custom integrations. Earn from the developer community.
Access conversation analytics, usage metrics, and engagement data.
White-label solutions and partner API access for enterprise deployments.
// Create an agent via API (authenticated dashboard session)
const res = await fetch("https://app.anton.bot/api/user/agents", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
credentials: "include",
body: JSON.stringify({
id: "agent_" + crypto.randomUUID(),
name: "My Agent",
model: "gpt-4o",
systemPrompt: "You are a helpful assistant."
})
});
const agent = await res.json();
console.log("Agent created:", agent.id);Developer API keys will be available during Phase 2. Join the waitlist to get early access.
Join Waitlist →