Build powerful integrations with the AmDital platform. Everything you need to get started — from REST APIs to MCP tools for AI agents.
Complete REST API documentation with interactive explorer
TypeScript, JavaScript, Python and PHP client SDKs
Step-by-step tutorials and integration guides
Real-time event notifications for your integrations
Model Context Protocol tools for AI agent integrations
API keys, OAuth flows, and security best practices
# Get your API key from workspace settings
# Base URL: https://api-amdital-dev.diginnovators.site
# Create a workspace via REST API
curl -X POST https://api-amdital-dev.diginnovators.site/v1/workspaces \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "My Agency",
"slug": "my-agency",
"ownerEmail": "owner@example.com"
}'
# List your workspaces
curl https://api-amdital-dev.diginnovators.site/v1/workspaces \
-H "Authorization: Bearer YOUR_API_KEY"