Skip to content

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 base URL

https://<tenant_id>.app.dmops.ai/api

For local development:

http://localhost:8001/api

Quick 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