Developer Preview

Build on Anton.Bot

APIs, SDKs, and tools to extend the platform. Create custom agents, integrations, and experiences.

🔌

REST & WebSocket API

BETA

Full programmatic control over agents, conversations, and deployments.

🤖

Custom Agent SDK

COMING SOON

Build agents with custom tools, memory, and personality in TypeScript.

📡

Webhooks & Events

COMING SOON

Real-time notifications for messages, agent status, and user actions.

🧩

Integrations Marketplace

COMING SOON

Publish and sell custom integrations. Earn from the developer community.

📊

Analytics API

COMING SOON

Access conversation analytics, usage metrics, and engagement data.

🔐

OAuth & Partner Access

BETA

White-label solutions and partner API access for enterprise deployments.

Quick Start
// 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);
🚀

Get API Access

Developer API keys will be available during Phase 2. Join the waitlist to get early access.

Join Waitlist →