Appearance
Developers — Overview
This section is for engineers building on top of DMOps.ai: integrating with the REST API, building custom integrations, or self-hosting the platform.
In this guide
- API Reference — full REST API documentation
- Authentication — API keys and security
- Webhooks & Events — receive events from DMOps.ai
- Building a Custom Integration — add support for a new external system
- Edge Connector — connect on-premise databases
- acp-tools Plugin — the Hermes agent plugin that powers integrations
- Self-Hosting Guide — Docker Compose and AWS Fargate
API base URL
https://<tenant_id>.app.dmops.ai/apiFor local development:
http://localhost:8001/apiQuick start
bash
# Check the API is up
curl -H "X-API-Key: your_api_key" https://<tenant>.app.dmops.ai/api/ping
# List tasks
curl -H "X-API-Key: your_api_key" https://<tenant>.app.dmops.ai/api/tasks
# Create a task
curl -X POST -H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{"title": "My task", "description": "Do something useful"}' \
https://<tenant>.app.dmops.ai/api/tasks