Agent API

Build Anything. Connect Everything.

Every ClawForge agent comes with a built-in HTTP API. Automate your home, your car, your business — or build products your customers can't get anywhere else.

What is the Agent API?

Your agent isn't a chatbot. It's a brain with an endpoint.

Every ClawForge agent is a stateful AI with its own REST endpoint. Send it messages, query its memory, trigger actions — from any device, any platform, any language. One API call is all it takes.

  • Sub-100ms response on warm agents
  • Persistent memory across every call
  • Webhooks, REST, WebSocket support
  • Any language, any platform
bash
# Send a message to your agent
POST https://your-agent.clawforgeai.com/api/chat
Authorization: Bearer <your-agent-key>
Content-Type: application/json

{
  "message": "Turn off the living room lights"
}

// Response
{
  "reply": "Done. Living room lights are off.",
  "action_taken": true,
  "memory_updated": true
}
Use Cases

One API. Infinite applications.

From smart homes to factories, your agent connects to anything with a network connection.

Home Automation

Connect to Home Assistant, SmartThings, or custom hardware. Your agent remembers preferences, learns routines, and acts on voice or schedule.

Automotive

In-vehicle AI copilot. Query vehicle status, navigate, dictate notes, trigger actions. Runs on any embedded Linux with network access.

Robotics

Give your robot a persistent brain. The agent remembers past runs, learns from failures, and can be instructed in plain language.

Industrial IoT

Monitor sensors, detect anomalies, alert teams. Your agent knows the history — not just the current reading.

Business Automation

CRM updates, email triage, meeting summaries, Slack/Teams integration. Your AI agent handles the repetitive work.

Powered by Telnyx

Telnyx Voice

Wire your Telnyx number directly to your agent. Callers get an AI that remembers them, knows their history, and can take real actions. No DTMF menus. No scripted trees.

Telnyx Voice Integration

Powered by Telnyx

Replace your IVR. Your customers deserve better than press 1 for billing.

Telnyx is a carrier-grade cloud communications platform — SIP trunking, Call Control API, programmable voice, real-time webhooks. Wire your Telnyx number to a ClawForge agent and every caller gets an AI that knows their name, their history, and can take real actions. No DTMF trees. No hold music. Just intelligence.

SIP TrunkingCall Control APIProgrammable VoiceReal-time Webhooks
Telnyx webhook
POST /telephony/inbound
{
  "data": {
    "event_type":
      "call.answered",
    "payload": {
      "from": "+15125551234",
      "to":   "+15125559999"
    }
  }
}
API Reference

Simple by design. Powerful in practice.

Three endpoints. That's all you need to build anything.

bash
# Send a message
curl -X POST https://your-agent.clawforgeai.com/api/chat \
  -H "Authorization: Bearer <key>" \
  -H "Content-Type: application/json" \
  -d '{"message": "What did I ask you to do yesterday?"}'

# Query agent memory
curl https://your-agent.clawforgeai.com/api/memory \
  -H "Authorization: Bearer <key>"

# Trigger a webhook action
curl -X POST https://your-agent.clawforgeai.com/api/action \
  -H "Authorization: Bearer <key>" \
  -d '{"action": "notify", "channel": "telegram", "message": "Motion detected"}'
POST/api/chat

Send a message. Get a reply. Memory auto-updates.

GET/api/memory

Query the agent's persistent memory store.

POST/api/action

Trigger webhook actions: notify, execute, relay.

Stateful by Default

Unlike generic AI APIs that forget everything after the call, your ClawForge agent remembers. Every conversation, every decision, every preference — stored, indexed, and available to the next call. Your automation gets smarter over time.

Memory depth
No context window limits
<100ms
Response time
Pre-warmed agents
24/7
Always on
No cold starts

Ready to connect everything?

Get your agent API key and start building in minutes. No infrastructure to manage, no setup fees — just a persistent AI brain with an HTTP endpoint.

💬 Chat with us