body record_typestringdefault: propertyproperty, person, or company.body record_idstringprop_12345. Use this or record_ids.body record_idsarraybody favoriteboolean1234curl -X POST "https://api.v2.dealmachine.com/v1/prospects" \ -H "Authorization: Bearer dm_sk_live_xxx" \ -H "Content-Type: application/json" \ -d '{ "record_type": "property", "record_ids": ["prop_12345", "prop_67890"] }'
12345678910111213141516171819202122232425262728293031{ "data": { "created": 1, "existing": 1, "reactivated": 0, "prospects": [{ "id": "prospect_8812", "record_type": "property", "record_id": "prop_12345", "lifecycle": "active", "favorite": false, "source": "api", "added_by": { "type": "api_key", "user_id": null, "name": null, "api_key_id": "key_9f1c..." }, "record": { "address": "123 Main St", "city": "Austin", "state": "TX", "zip": "78701", "latitude": 30.2672, "longitude": -97.7431 }, "tags": [{ "id": "tag_1", "name": "Hot", "badge_variant": "destructive", "is_system": true }], "note_count": 2, "file_count": 0, "opportunity_at": null, "archived_at": null, "created_at": "2026-08-26T15:04:05.000Z", "updated_at": "2026-08-26T15:04:05.000Z" }] } }