1https://api.v2.dealmachine.com/v1
Authorization header:12curl https://api.v2.dealmachine.com/v1/account \ -H "Authorization: Bearer dm_sk_live_xxx"
| Token Type | Format | Access |
| API Key | dm_sk_live_xxx | Full access |
| OAuth Token | dm_at_live_xxx | Scoped access |
application/jsonkey_abc123)data array alongside a pagination object:12345678910111213141516171819202122232425262728293031323334353637383940{ "data": [ { "dm_property_id": "prop_a1b2c3", "full_address": "1200 Barton Springs Rd, Austin, TX 78704", "address": "1200 Barton Springs Rd", "city": "Austin", "state": "TX", "zip": "78704", "latitude": 30.2598, "longitude": -97.7544, "images": { "street_view": "https://img.dealmachine.com/sv/30.2598,-97.7544.jpg", "satellite": "https://img.dealmachine.com/sat/30.2598,-97.7544.jpg", "roadmap": "https://img.dealmachine.com/map/30.2598,-97.7544.jpg" }, "estimated_value": 575000, "equity_percent": 72, "bedrooms": 4, "contacts": [ { "dm_person_id": "per_x1y2z3", "full_name": "John Smith", "phones": [ { "number": "5125551234", "type": "wireless", "is_dnc": false } ], "match_status": "matched" } ] } ], "pagination": { "page": 1, "per_page": 25, "total_results": 1847, "total_pages": 74, "has_next_page": true, "has_previous_page": false } }
123456789101112131415{ "error": { "code": "validation_error", "message": "Validation failed", "request_id": "req_abc123def456", "details": { "issues": [ { "path": "filters[0].operator", "message": "Operator 'contains' is not allowed for NUMBER filter 'estimated_value'" } ] } } }
| Header | Description |
X-Request-Id | Unique request ID for debugging |
| Group | Description |
| Authentication | Device authorization flow for CLI and MCP |
| OAuth | OAuth 2.0 authorization code flow |
| Account | Organization and user information |
| Filters | Discover available search filters |
| Fields | Discover available data fields |
| Properties | Search and count properties |
| People | Search and count people/contacts |
| Enrichment | Batch lookup by address, coordinates, APN, ID, email, or phone |