API Reference
Control your agent instance programmatically. Trigger tasks, manage agents, read memory, and receive webhooks — all via a clean REST API.
Authentication
All API requests must include your API key in the Authorization header: Authorization: Bearer da_live_xxxxxxxxxxxx
Find your API key in your dashboard under Settings → API Keys. Available on Professional and Enterprise plans.
Base URL
https://api.deployagents.coInstance
/v1/instanceGet your instance status, uptime, version, and resource usage.
/v1/instance/restartGracefully restart your agent instance.
/v1/instance/logsStream the last 500 lines of your instance log.
Agents
/v1/agentsList all agents on your instance with their status and configuration.
/v1/agentsCreate a new agent with a name, model, and channel assignment.
/v1/agents/:idRemove an agent from your instance.
Tasks
/v1/tasksSend a task to your agent programmatically. Returns a task ID.
/v1/tasks/:idGet the result and status of a previously submitted task.
/v1/tasksList recent tasks with status, duration, and output summary.
Memory
/v1/memoryRetrieve all persistent memory entries for your agent.
/v1/memoryInject a memory entry directly — useful for pre-loading context.
/v1/memory/:idDelete a specific memory entry by ID.
Webhooks
/v1/webhooksRegister a webhook URL to receive task completion events.
/v1/webhooksList all registered webhooks.
/v1/webhooks/:idRemove a webhook by ID.
API access requires Professional or Enterprise
Upgrade your plan to get your API key and start automating programmatically.
Get API Access