DwellMint Logo

Open Infrastructure

DwellMint Studio Developer Resources

API & Discovery

Interactive Apps

DwellMint Studio supports MCP Apps, allowing agents to render rich architectural UIs directly in conversation.

Playbook UI

ui://dwellmint.studio/playbook

Pricing UI

ui://dwellmint.studio/pricing-estimator

Quickstart: Agent Integration

1. Authentication

curl -X POST https://dwellmint.studio/api/token \
  -d "grant_type=client_credentials" \
  -u "client_id:client_secret"

2. Fetch Projects

curl https://dwellmint.studio/project_metadata.json \
  -H "Authorization: Bearer <token>"

3. Submit Lead

curl -X POST https://dwellmint.studio/scripts/enquiry_backend.php \
  -H "Content-Type: application/json" \
  -d '{"name": "Agent Rajesh", "email": "rajesh@example.com", "phone": "9876543210"}'

Agent Guides