API Documentation
Portals ¶
Overview
A Portal represents a public-facing surface for a brand, optionally tied to a lead channel. A brand has at most one portal; portals are created explicitly via the create endpoint.
| Field | Type | Association | Description |
|---|---|---|---|
| id | uuid | Internal identifier of the portal | |
| brand | uuid | brands(id) | Brand to which this portal belongs |
| lead_channel | uuid | lead_channels(id) | Optional lead channel attached to this portal |
| token | uuid | Authentication token for this portal | |
| hostnames | string[] | Hostnames associated with this portal (default first) | |
| created_at | number | Timestamp of when this portal was created | |
| updated_at | number | Timestamp of when this portal was last updated | |
| deleted_at | number | Timestamp of when this portal was deleted (if applicable) |
Ensure a brand has a portal ¶
Ensure a brand has a portalPUT/brands/:brand/portal
Idempotent — returns the brand’s existing portal if there is one, otherwise
creates one and returns it. The new portal’s lead_channel defaults to the
brand’s default lead channel (which itself is created on demand if missing).
brand (uuid) ID of the brand
Example URI
- brand
string(required) Example: 4c3970ea-d648-4b25-baa8-8f7af73f318c- associations
string(required) Example: portal.brand
200Body
{
"code": "OK",
"data": {
"id": "996a4087-4141-40f3-94cd-49d6462af666",
"brand": {
"id": "4c3970ea-d648-4b25-baa8-8f7af73f318c",
"created_at": 1778872278.764919,
"updated_at": 1778872278.764919,
"palette": null,
"assets": null,
"messages": null,
"parent": null,
"name": "PortalTestBrand",
"deleted_at": null,
"training": false,
"brand_type": "Brokerage",
"parents": null,
"type": "brand",
"hostnames": null,
"member_count": 1,
"base_url": "https://irish.rechat.com"
},
"type": "portal",
"created_at": 1778872279.349493,
"updated_at": 1778872279.349493,
"deleted_at": null,
"hostnames": null
}
}Get the portal of a brand ¶
Get the portal of a brandGET/brands/:brand/portal
Read-only. Returns 404 if the brand has no portal yet — use PUT to create
one.
brand (uuid) ID of the brand
Example URI
- brand
string(required) Example: 4c3970ea-d648-4b25-baa8-8f7af73f318c- associations
string(required) Example: portal.brand
200Body
{
"code": "OK",
"data": {
"id": "996a4087-4141-40f3-94cd-49d6462af666",
"brand": {
"id": "4c3970ea-d648-4b25-baa8-8f7af73f318c",
"created_at": 1778872278.764919,
"updated_at": 1778872278.764919,
"palette": null,
"assets": null,
"messages": null,
"parent": null,
"name": "PortalTestBrand",
"deleted_at": null,
"training": false,
"brand_type": "Brokerage",
"parents": null,
"type": "brand",
"hostnames": null,
"member_count": 1,
"base_url": "https://irish.rechat.com"
},
"type": "portal",
"created_at": 1778872279.349493,
"updated_at": 1778872279.349493,
"deleted_at": null,
"hostnames": null
}
}Look up a portal by hostname ¶
Look up a portal by hostnameGET/portals/search{?hostname}
hostname (string) Hostname to look up; must be at least 5 characters
Example URI
- hostname
string(required) Example: portal-testhost
200Body
{
"code": "OK",
"data": {
"id": "996a4087-4141-40f3-94cd-49d6462af666",
"type": "portal",
"created_at": 1778872279.349493,
"updated_at": 1778872279.349493,
"deleted_at": null,
"hostnames": [
"portal-testhost"
]
}
}Portal Hostnames ¶
Add a hostname to a brand's portal ¶
Add a hostname to a brand's portalPOST/brands/:brand/portal/hostnames
brand (uuid) ID of the brand whose portal to add the hostname to.
hostname (string) Hostname to attach
is_default (boolean) Whether this hostname should be the default for the portal
Example URI
- brand
string(required) Example: 4c3970ea-d648-4b25-baa8-8f7af73f318c
Body
{
"hostname": "portal-testhost",
"is_default": true
}200Body
{
"code": "OK",
"data": {
"id": "996a4087-4141-40f3-94cd-49d6462af666",
"type": "portal",
"created_at": 1778872279.349493,
"updated_at": 1778872279.349493,
"deleted_at": null,
"hostnames": [
"portal-testhost"
]
}
}Remove a hostname from a brand's portal ¶
Remove a hostname from a brand's portalDELETE/brands/:brand/portal/hostnames{?hostname}
brand (uuid) ID of the brand whose portal to remove the hostname from.
hostname (string) Hostname to detach
Example URI
- brand
string(required) Example: 4c3970ea-d648-4b25-baa8-8f7af73f318c- hostname
string(required) Example: portal-testhost
200Body
{
"code": "OK",
"data": {
"id": "996a4087-4141-40f3-94cd-49d6462af666",
"type": "portal",
"created_at": 1778872279.349493,
"updated_at": 1778872279.349493,
"deleted_at": null,
"hostnames": null
}
}Portal Saved Searches ¶
These endpoints are authenticated by the portal’s own token rather than a
bearer credential. Pass the token in the X-RECHAT-PORTAL-TOKEN header. The
token is returned on portal creation and webhook payloads — it is not
exposed via subsequent reads (Portal.publicize strips it).
Get saved searches for a contact ¶
Get saved searches for a contactGET/portals/:id/saved-searches/:contact
id (uuid) ID of the portal
contact (uuid) ID of the contact whose saved searches to list. The contact
must belong to the portal’s brand; the SQL filters by saved_searches.brand
so cross-brand pairings return an empty list.
Example URI
- id
string(required) Example: 996a4087-4141-40f3-94cd-49d6462af666- contact
string(required) Example: c9547e48-062a-4277-a9d0-b23e551c66d9
200Body
{
"code": "OK",
"data": [
{
"type": "saved_search",
"id": "aa11c353-8ee3-41db-b0e2-c0f3dc512daa",
"title": "Portal Search",
"minimum_price": 200000,
"maximum_price": null,
"currency": "USD",
"minimum_square_meters": null,
"maximum_square_meters": null,
"minimum_lot_square_meters": null,
"maximum_lot_square_meters": null,
"minimum_bedrooms": null,
"maximum_bedrooms": null,
"minimum_bathrooms": null,
"maximum_bathrooms": null,
"minimum_year_built": null,
"maximum_year_built": null,
"minimum_parking_spaces": null,
"property_types": null,
"property_subtypes": null,
"listing_statuses": null,
"architectural_styles": null,
"points": [
{
"longitude": -179,
"latitude": -89,
"type": "location"
},
{
"longitude": 179,
"latitude": -89,
"type": "location"
},
{
"longitude": 179,
"latitude": 89,
"type": "location"
},
{
"longitude": -179,
"latitude": 89,
"type": "location"
},
{
"longitude": -179,
"latitude": -89,
"type": "location"
}
],
"mls_areas": null,
"counties": null,
"subdivisions": null,
"postal_codes": null,
"school_districts": null,
"primary_schools": null,
"middle_schools": null,
"elementary_schools": null,
"senior_high_schools": null,
"junior_high_schools": null,
"intermediate_schools": null,
"high_schools": null,
"list_agents": null,
"list_offices": null,
"selling_agents": null,
"selling_offices": null,
"agents": null,
"offices": null,
"pool": null,
"open_house": null,
"pets": null,
"number_of_pets_allowed": null,
"application_fee": null,
"appliances": null,
"furnished": null,
"fenced_yard": null,
"office_exclusive": null,
"master_bedroom_in_first_floor": false,
"minimum_sold_date": null,
"search": null,
"created_at": 1778872279.639731,
"updated_at": 1778872279.639732,
"deleted_at": null,
"proposed_title": ", $200K+, Any Beds"
}
],
"info": {
"count": 1,
"total": 0
}
}Create a saved search ¶
Create a saved searchPOST/portals/:id/saved-searches
id (uuid) ID of the portal
contacts (uuid[], required, non-empty) Contacts to link the saved search
to. Every contact must belong to the portal’s brand or the request fails.
frequency (enum, required) Delivery frequency, one of Instant, Daily,
Weekly, Monthly, Never.
The from user is derived from the first contact’s first assignee role,
falling back to contact.user. brand is hardcoded from the portal.
Example URI
- id
string(required) Example: 996a4087-4141-40f3-94cd-49d6462af666
Body
{
"title": "Portal Search",
"minimum_price": 200000,
"contacts": [
"c9547e48-062a-4277-a9d0-b23e551c66d9"
],
"frequency": "Daily",
"points": [
{
"latitude": -89,
"longitude": -179
},
{
"latitude": -89,
"longitude": 179
},
{
"latitude": 89,
"longitude": 179
},
{
"latitude": 89,
"longitude": -179
},
{
"latitude": -89,
"longitude": -179
}
]
}200Body
{
"code": "OK",
"data": {
"type": "saved_search",
"id": "aa11c353-8ee3-41db-b0e2-c0f3dc512daa",
"title": "Portal Search",
"minimum_price": 200000,
"maximum_price": null,
"currency": "USD",
"minimum_square_meters": null,
"maximum_square_meters": null,
"minimum_lot_square_meters": null,
"maximum_lot_square_meters": null,
"minimum_bedrooms": null,
"maximum_bedrooms": null,
"minimum_bathrooms": null,
"maximum_bathrooms": null,
"minimum_year_built": null,
"maximum_year_built": null,
"minimum_parking_spaces": null,
"property_types": null,
"property_subtypes": null,
"listing_statuses": null,
"architectural_styles": null,
"points": [
{
"longitude": -179,
"latitude": -89,
"type": "location"
},
{
"longitude": 179,
"latitude": -89,
"type": "location"
},
{
"longitude": 179,
"latitude": 89,
"type": "location"
},
{
"longitude": -179,
"latitude": 89,
"type": "location"
},
{
"longitude": -179,
"latitude": -89,
"type": "location"
}
],
"mls_areas": null,
"counties": null,
"subdivisions": null,
"postal_codes": null,
"school_districts": null,
"primary_schools": null,
"middle_schools": null,
"elementary_schools": null,
"senior_high_schools": null,
"junior_high_schools": null,
"intermediate_schools": null,
"high_schools": null,
"list_agents": null,
"list_offices": null,
"selling_agents": null,
"selling_offices": null,
"agents": null,
"offices": null,
"pool": null,
"open_house": null,
"pets": null,
"number_of_pets_allowed": null,
"application_fee": null,
"appliances": null,
"furnished": null,
"fenced_yard": null,
"office_exclusive": null,
"master_bedroom_in_first_floor": false,
"minimum_sold_date": null,
"search": null,
"created_at": 1778872279.639731,
"updated_at": 1778872279.639732,
"deleted_at": null,
"proposed_title": ", $200K+, Any Beds"
}
}Update a saved search ¶
Update a saved searchPUT/portals/:id/saved-searches/:saved_search
id (uuid) ID of the portal
saved_search (uuid) ID of the saved search
The saved search’s brand must match the portal’s brand or the request
fails. Body is a partial update of saved-search fields.
Example URI
- id
string(required) Example: 996a4087-4141-40f3-94cd-49d6462af666- saved_search
string(required) Example: aa11c353-8ee3-41db-b0e2-c0f3dc512daa
Body
{
"title": "Portal Search (renamed)",
"maximum_price": 600000
}200Body
{
"code": "OK",
"data": {
"type": "saved_search",
"id": "aa11c353-8ee3-41db-b0e2-c0f3dc512daa",
"title": "Portal Search (renamed)",
"minimum_price": 200000,
"maximum_price": 600000,
"currency": "USD",
"minimum_square_meters": null,
"maximum_square_meters": null,
"minimum_lot_square_meters": null,
"maximum_lot_square_meters": null,
"minimum_bedrooms": null,
"maximum_bedrooms": null,
"minimum_bathrooms": null,
"maximum_bathrooms": null,
"minimum_year_built": null,
"maximum_year_built": null,
"minimum_parking_spaces": null,
"property_types": null,
"property_subtypes": null,
"listing_statuses": null,
"architectural_styles": null,
"points": [
{
"longitude": -179,
"latitude": -89,
"type": "location"
},
{
"longitude": 179,
"latitude": -89,
"type": "location"
},
{
"longitude": 179,
"latitude": 89,
"type": "location"
},
{
"longitude": -179,
"latitude": 89,
"type": "location"
},
{
"longitude": -179,
"latitude": -89,
"type": "location"
}
],
"mls_areas": null,
"counties": null,
"subdivisions": null,
"postal_codes": null,
"school_districts": null,
"primary_schools": null,
"middle_schools": null,
"elementary_schools": null,
"senior_high_schools": null,
"junior_high_schools": null,
"intermediate_schools": null,
"high_schools": null,
"list_agents": null,
"list_offices": null,
"selling_agents": null,
"selling_offices": null,
"agents": null,
"offices": null,
"pool": null,
"open_house": null,
"pets": null,
"number_of_pets_allowed": null,
"application_fee": null,
"appliances": null,
"furnished": null,
"fenced_yard": null,
"office_exclusive": null,
"master_bedroom_in_first_floor": false,
"minimum_sold_date": null,
"search": null,
"created_at": 1778872279.639731,
"updated_at": 1778872279.72699,
"deleted_at": null,
"proposed_title": ", $200K-$600K, Any Beds"
}
}Portal Listing Search ¶
Authenticated by the portal’s own token (X-RECHAT-PORTAL-TOKEN).
All endpoints accept the same listing-filter fields as POST /portals/:id/saved-searches (minimum_price, maximum_price,
property_types, property_subtypes, listing_statuses, points,
mls_areas, etc.) — contacts and frequency are not used. Search is
automatically scoped to the portal’s brand (its MLSes and agent network);
brand in the request body is ignored.
Filter compact listings ¶
Filter compact listingsPOST/portals/:id/listings/compact/filter
Stateless listing search returning matching listings in the
compact_listing shape (used by list/grid views). Mirrors the
agent-facing POST /valerts. Private addresses are stripped from the
results.
id (uuid) ID of the portal
Example URI
- id
string(required) Example: 996a4087-4141-40f3-94cd-49d6462af666
Body
{
"property_types": [
"Residential"
],
"listing_statuses": [
"Active"
],
"minimum_price": 0,
"maximum_price": 9223372036854776000
}200Body
{
"code": "OK",
"data": [
{
"type": "compact_listing",
"id": "7ff2fad0-cc63-11e5-913f-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1454716342.51221,
"updated_at": 1454944164.1054,
"deleted_at": null,
"close_date": null,
"price": 1350000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13315265",
"list_office_name": "Minnette Murray Properties",
"selling_office_name": "",
"list_agent_mls_id": "0459742",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Minnette Murray",
"list_agent_direct_work_phone": "(214) 850-3172",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.7884951,
"longitude": -96.80921389999999,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59531810.jpg",
"http://cdn.rechat.co/59531779.jpg",
"http://cdn.rechat.co/59531780.jpg",
"http://cdn.rechat.co/59531787.jpg",
"http://cdn.rechat.co/59531788.jpg",
"http://cdn.rechat.co/59531796.jpg",
"http://cdn.rechat.co/59531784.jpg",
"http://cdn.rechat.co/59531785.jpg",
"http://cdn.rechat.co/59531783.jpg",
"http://cdn.rechat.co/59531782.jpg",
"http://cdn.rechat.co/59531795.jpg",
"http://cdn.rechat.co/59531797.jpg",
"http://cdn.rechat.co/59531798.jpg",
"http://cdn.rechat.co/59531799.jpg",
"http://cdn.rechat.co/59531794.jpg",
"http://cdn.rechat.co/59531793.jpg",
"http://cdn.rechat.co/59531789.jpg",
"http://cdn.rechat.co/59535519.jpg",
"http://cdn.rechat.co/59535520.jpg",
"http://cdn.rechat.co/59531792.jpg",
"http://cdn.rechat.co/59531790.jpg",
"http://cdn.rechat.co/59531808.jpg",
"http://cdn.rechat.co/59531803.jpg",
"http://cdn.rechat.co/59531800.jpg",
"http://cdn.rechat.co/59531805.jpg",
"http://cdn.rechat.co/59531806.jpg",
"http://cdn.rechat.co/59531807.jpg"
],
"address": {
"type": "compact_address",
"street_number": "2430",
"street_name": "Victory Park",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Lane",
"unit_number": "2508",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1454716341.502539,
"updated_at": 1454944162.433267,
"street_address": "2430 Victory Park Lane Unit 2508"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 238.75882571534746,
"bedroom_count": 2,
"bathroom_count": 2.1,
"year_built": 2004,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 6632.742474916388,
"lot_size_area": 1.639,
"description": "A must-see place to enjoy the best views & living experience Dallas offers! Newly updated bath, cabinets and paint. Exceptional downtown views from 25th Floor of W Residences North Tower. Amenities: 24-hour concierge & valet, W Hotel & resident lounges, Bliss Spa, exercise room, hotel & resident pools. Total SF includes 396 sf terrace. Buyer to verify all room measurements & HOA dues.",
"created_at": 1454716342.379791,
"updated_at": 1454944162.932951
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59531810.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/7ff2fad0-cc63-11e5-913f-f23c91c841bd",
"dom": 3751,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$1,350,000",
"text_no_label": "1,350,000",
"value": 1350000
},
"original_price": {
"type": "formatted_attribute",
"text": "$1,350,000",
"text_no_label": "1,350,000",
"value": 1350000
},
"area": {
"type": "formatted_attribute",
"text": "2,570 SQFT",
"text_no_label": "2,570",
"value": 2570
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,570 SQFT",
"text_no_label": "2,570",
"value": 2570
},
"square_meters": {
"type": "formatted_attribute",
"text": "239 SQM",
"text_no_label": "239",
"value": 239
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "71,394.84 SQFT",
"text_no_label": "71,394.84",
"value": 71394.84
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "1.64 Acres",
"text_no_label": "1.64",
"value": 1.64
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "1.64 Acres",
"text_no_label": "1.64",
"value": 1.64
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "6,632.8 SQM",
"text_no_label": "6,632.8",
"value": 6632.8
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "2430 Victory Park Lane Unit 2508",
"text_no_label": "2430 Victory Park Lane Unit 2508",
"value": "2430 Victory Park Lane Unit 2508"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Minnette Murray of Minnette Murray Properties ([email protected] | (214) 850-3172)",
"text_no_label": "Listing courtesy of Minnette Murray of Minnette Murray Properties ([email protected] | (214) 850-3172)",
"value": "Listing courtesy of Minnette Murray of Minnette Murray Properties ([email protected] | (214) 850-3172)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Minnette Murray | Minnette Murray Properties",
"text_no_label": "Minnette Murray | Minnette Murray Properties",
"value": "Minnette Murray | Minnette Murray Properties"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 850-3172",
"text_no_label": "(214) 850-3172",
"value": "(214) 850-3172"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Minnette Murray",
"text_no_label": "Minnette Murray",
"value": "Minnette Murray"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 850-3172",
"text_no_label": "(214) 850-3172",
"value": "(214) 850-3172"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "033840ba-a9c0-11e5-8893-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1450907785.749112,
"updated_at": 1454953119.212386,
"deleted_at": null,
"close_date": null,
"price": 599990,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13291847",
"list_office_name": "Allie Beth Allman & Assoc.",
"selling_office_name": "",
"list_agent_mls_id": "0604095",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Ani Nosnik",
"list_agent_direct_work_phone": "(972) 896-5432",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.8215487,
"longitude": -96.8026835,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/58731471.jpg",
"http://cdn.rechat.co/58731472.jpg",
"http://cdn.rechat.co/58731473.jpg",
"http://cdn.rechat.co/58731474.jpg",
"http://cdn.rechat.co/58731475.jpg",
"http://cdn.rechat.co/58731476.jpg",
"http://cdn.rechat.co/58731477.jpg",
"http://cdn.rechat.co/58731478.jpg",
"http://cdn.rechat.co/58731479.jpg",
"http://cdn.rechat.co/58731480.jpg",
"http://cdn.rechat.co/58731481.jpg",
"http://cdn.rechat.co/58731482.jpg",
"http://cdn.rechat.co/58731483.jpg",
"http://cdn.rechat.co/58731484.jpg",
"http://cdn.rechat.co/58731485.jpg",
"http://cdn.rechat.co/58731486.jpg",
"http://cdn.rechat.co/58731487.jpg",
"http://cdn.rechat.co/58731488.jpg",
"http://cdn.rechat.co/58731489.jpg",
"http://cdn.rechat.co/58731490.jpg",
"http://cdn.rechat.co/58731491.jpg",
"http://cdn.rechat.co/58731492.jpg",
"http://cdn.rechat.co/58731493.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4240",
"street_name": "Prescott",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "7E",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1450907783.059131,
"updated_at": 1454953115.950087,
"street_address": "4240 Prescott Avenue Unit 7E"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 200.01858045336309,
"bedroom_count": 2,
"bathroom_count": 2.1,
"year_built": 2004,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 2662.809364548495,
"lot_size_area": 0.658,
"description": "Two split bedroom, den and 2.1 baths at The Drexel Highlander. Direct elevator to your foyer guides you to an open living & dining room. Kitchen equipped with SS appliances including a 6 gas burner Wolf cook top, Sub-Zero Refrigerator,Ascot dishwasher,double convection ovens, microwave,granite counter top.Wonderful master bedroom with en-suite bath,2 sinks,separate shower,tub and large walk in closet. Enjoy 24 hr concierge, pool & fitness center.",
"created_at": 1450907785.331074,
"updated_at": 1454953116.836563
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/58731471.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/033840ba-a9c0-11e5-8893-f23c91c841bd",
"dom": 3795,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$599,990",
"text_no_label": "599,990",
"value": 599990
},
"original_price": {
"type": "formatted_attribute",
"text": "$599,990",
"text_no_label": "599,990",
"value": 599990
},
"area": {
"type": "formatted_attribute",
"text": "2,153 SQFT",
"text_no_label": "2,153",
"value": 2153
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,153 SQFT",
"text_no_label": "2,153",
"value": 2153
},
"square_meters": {
"type": "formatted_attribute",
"text": "200 SQM",
"text_no_label": "200",
"value": 200
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "28,662.48 SQFT",
"text_no_label": "28,662.48",
"value": 28662.48
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.66 Acres",
"text_no_label": "0.66",
"value": 0.66
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.66 Acres",
"text_no_label": "0.66",
"value": 0.66
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "2,662.83 SQM",
"text_no_label": "2,662.83",
"value": 2662.83
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4240 Prescott Avenue Unit 7E",
"text_no_label": "4240 Prescott Avenue Unit 7E",
"value": "4240 Prescott Avenue Unit 7E"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Ani Nosnik of Allie Beth Allman & Assoc. ([email protected] | (972) 896-5432)",
"text_no_label": "Listing courtesy of Ani Nosnik of Allie Beth Allman & Assoc. ([email protected] | (972) 896-5432)",
"value": "Listing courtesy of Ani Nosnik of Allie Beth Allman & Assoc. ([email protected] | (972) 896-5432)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Ani Nosnik | Allie Beth Allman & Assoc.",
"text_no_label": "Ani Nosnik | Allie Beth Allman & Assoc.",
"value": "Ani Nosnik | Allie Beth Allman & Assoc."
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(972) 896-5432",
"text_no_label": "(972) 896-5432",
"value": "(972) 896-5432"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Ani Nosnik",
"text_no_label": "Ani Nosnik",
"value": "Ani Nosnik"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(972) 896-5432",
"text_no_label": "(972) 896-5432",
"value": "(972) 896-5432"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "8e6d1eea-9ecf-11e5-8199-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1449704998.959327,
"updated_at": 1451919222.617691,
"deleted_at": null,
"close_date": null,
"price": 265000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13286709",
"list_office_name": "Dave Perry Miller Real Estate",
"selling_office_name": "",
"list_agent_mls_id": "0312326",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Stephen Collins",
"list_agent_direct_work_phone": "(469) 774-9749",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.82235,
"longitude": -96.8130061,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/58545131.jpg",
"http://cdn.rechat.co/58545132.jpg",
"http://cdn.rechat.co/58545133.jpg",
"http://cdn.rechat.co/58545134.jpg",
"http://cdn.rechat.co/58545135.jpg",
"http://cdn.rechat.co/58545136.jpg",
"http://cdn.rechat.co/58545137.jpg",
"http://cdn.rechat.co/58545138.jpg",
"http://cdn.rechat.co/58545139.jpg",
"http://cdn.rechat.co/58545140.jpg",
"http://cdn.rechat.co/58545141.jpg",
"http://cdn.rechat.co/58545142.jpg",
"http://cdn.rechat.co/58545143.jpg",
"http://cdn.rechat.co/58545144.jpg",
"http://cdn.rechat.co/58545145.jpg",
"http://cdn.rechat.co/58545146.jpg",
"http://cdn.rechat.co/58545147.jpg",
"http://cdn.rechat.co/58545148.jpg",
"http://cdn.rechat.co/58545149.jpg",
"http://cdn.rechat.co/58545150.jpg",
"http://cdn.rechat.co/58545151.jpg",
"http://cdn.rechat.co/58545152.jpg",
"http://cdn.rechat.co/58545153.jpg",
"http://cdn.rechat.co/58545154.jpg",
"http://cdn.rechat.co/58545155.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4242",
"street_name": "Lomo Alto",
"city": "Highland Park",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "",
"unit_number": "N76",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1449704992.910279,
"updated_at": 1451919218.085379,
"street_address": "4242 Lomo Alto Unit N76"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 1,
"square_meters": 96.06094388703085,
"bedroom_count": 1,
"bathroom_count": 1.1,
"year_built": 1950,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 14192.207357859534,
"lot_size_area": 3.507,
"description": "Superb 1 BR condo in The Crestpark. Wonderfully updated in the last couple of years - fabulous kitchen, pretty hardwoods, great built-ins, Nicely master bath and powder room. 7th floor unit with downtown view.",
"created_at": 1449704996.986539,
"updated_at": 1451919220.542635
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/58545131.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/8e6d1eea-9ecf-11e5-8199-f23c91c841bd",
"dom": 3809,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$265,000",
"text_no_label": "265,000",
"value": 265000
},
"original_price": {
"type": "formatted_attribute",
"text": "$265,000",
"text_no_label": "265,000",
"value": 265000
},
"area": {
"type": "formatted_attribute",
"text": "1,034 SQFT",
"text_no_label": "1,034",
"value": 1034
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,034 SQFT",
"text_no_label": "1,034",
"value": 1034
},
"square_meters": {
"type": "formatted_attribute",
"text": "96 SQM",
"text_no_label": "96",
"value": 96
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "152,764.92 SQFT",
"text_no_label": "152,764.92",
"value": 152764.92
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "3.51 Acres",
"text_no_label": "3.51",
"value": 3.51
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "3.51 Acres",
"text_no_label": "3.51",
"value": 3.51
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "14,192.34 SQM",
"text_no_label": "14,192.34",
"value": 14192.34
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "1 Bedroom",
"text_no_label": "1",
"value": 1
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "1.1 Bathrooms",
"text_no_label": "1.1",
"value": "1.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4242 Lomo Alto Unit N76",
"text_no_label": "4242 Lomo Alto Unit N76",
"value": "4242 Lomo Alto Unit N76"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Highland Park, TX 75219",
"text_no_label": "Highland Park, TX 75219",
"value": "Highland Park, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Highland Park",
"text_no_label": "Highland Park",
"value": "Highland Park"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Stephen Collins of Dave Perry Miller Real Estate ([email protected] | (469) 774-9749)",
"text_no_label": "Listing courtesy of Stephen Collins of Dave Perry Miller Real Estate ([email protected] | (469) 774-9749)",
"value": "Listing courtesy of Stephen Collins of Dave Perry Miller Real Estate ([email protected] | (469) 774-9749)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Stephen Collins | Dave Perry Miller Real Estate",
"text_no_label": "Stephen Collins | Dave Perry Miller Real Estate",
"value": "Stephen Collins | Dave Perry Miller Real Estate"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(469) 774-9749",
"text_no_label": "(469) 774-9749",
"value": "(469) 774-9749"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Stephen Collins",
"text_no_label": "Stephen Collins",
"value": "Stephen Collins"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(469) 774-9749",
"text_no_label": "(469) 774-9749",
"value": "(469) 774-9749"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "d4e99ca0-a40f-11e5-a8b8-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1450282360.820393,
"updated_at": 1454952791.870143,
"deleted_at": null,
"close_date": null,
"price": 725000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13288625",
"list_office_name": "Allie Beth Allman & Assoc.",
"selling_office_name": "",
"list_agent_mls_id": "0604095",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Ani Nosnik",
"list_agent_direct_work_phone": "(972) 896-5432",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.8215487,
"longitude": -96.8026835,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/58625119.jpg",
"http://cdn.rechat.co/58625116.jpg",
"http://cdn.rechat.co/58625117.jpg",
"http://cdn.rechat.co/58625118.jpg",
"http://cdn.rechat.co/58625120.jpg",
"http://cdn.rechat.co/58625121.jpg",
"http://cdn.rechat.co/58625122.jpg",
"http://cdn.rechat.co/58625123.jpg",
"http://cdn.rechat.co/58625124.jpg",
"http://cdn.rechat.co/58625125.jpg",
"http://cdn.rechat.co/58625126.jpg",
"http://cdn.rechat.co/58625127.jpg",
"http://cdn.rechat.co/58625128.jpg",
"http://cdn.rechat.co/58625129.jpg",
"http://cdn.rechat.co/58625130.jpg",
"http://cdn.rechat.co/58625131.jpg",
"http://cdn.rechat.co/58625132.jpg",
"http://cdn.rechat.co/58625133.jpg",
"http://cdn.rechat.co/58625134.jpg",
"http://cdn.rechat.co/58625135.jpg",
"http://cdn.rechat.co/58625136.jpg",
"http://cdn.rechat.co/58625137.jpg",
"http://cdn.rechat.co/58625113.jpg",
"http://cdn.rechat.co/58625114.jpg",
"http://cdn.rechat.co/58625115.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4240",
"street_name": "Prescott",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "7D",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1450282335.345664,
"updated_at": 1454952789.201511,
"street_address": "4240 Prescott Avenue Unit 7D"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 209.49461166852473,
"bedroom_count": 2,
"bathroom_count": 2.1,
"year_built": 2004,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 2662.809364548495,
"lot_size_area": 0.658,
"description": "Must see! Exquisite fully renovated, 2 bedroom, 2.1 bath, custom home at the prestigious Drexel Highlander - with 2,255 interior square feet. Direct elevator access into private entry foyer. Stone flooring throughout. Open kitchen with Wolf gas stove and double oven, Sub-Zero refrigerator and abundant custom cabinetry. Hunter Douglas electric window shades throughout. Amenities include concierge service, fitness center and swimming pool.",
"created_at": 1450282348.492429,
"updated_at": 1454952789.983693
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/58625119.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/d4e99ca0-a40f-11e5-a8b8-f23c91c841bd",
"dom": 3803,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$725,000",
"text_no_label": "725,000",
"value": 725000
},
"original_price": {
"type": "formatted_attribute",
"text": "$725,000",
"text_no_label": "725,000",
"value": 725000
},
"area": {
"type": "formatted_attribute",
"text": "2,255 SQFT",
"text_no_label": "2,255",
"value": 2255
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,255 SQFT",
"text_no_label": "2,255",
"value": 2255
},
"square_meters": {
"type": "formatted_attribute",
"text": "209 SQM",
"text_no_label": "209",
"value": 209
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "28,662.48 SQFT",
"text_no_label": "28,662.48",
"value": 28662.48
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.66 Acres",
"text_no_label": "0.66",
"value": 0.66
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.66 Acres",
"text_no_label": "0.66",
"value": 0.66
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "2,662.83 SQM",
"text_no_label": "2,662.83",
"value": 2662.83
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4240 Prescott Avenue Unit 7D",
"text_no_label": "4240 Prescott Avenue Unit 7D",
"value": "4240 Prescott Avenue Unit 7D"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Ani Nosnik of Allie Beth Allman & Assoc. ([email protected] | (972) 896-5432)",
"text_no_label": "Listing courtesy of Ani Nosnik of Allie Beth Allman & Assoc. ([email protected] | (972) 896-5432)",
"value": "Listing courtesy of Ani Nosnik of Allie Beth Allman & Assoc. ([email protected] | (972) 896-5432)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Ani Nosnik | Allie Beth Allman & Assoc.",
"text_no_label": "Ani Nosnik | Allie Beth Allman & Assoc.",
"value": "Ani Nosnik | Allie Beth Allman & Assoc."
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(972) 896-5432",
"text_no_label": "(972) 896-5432",
"value": "(972) 896-5432"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Ani Nosnik",
"text_no_label": "Ani Nosnik",
"value": "Ani Nosnik"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(972) 896-5432",
"text_no_label": "(972) 896-5432",
"value": "(972) 896-5432"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "69fb7e54-b88c-11e5-a56f-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1452534891.768002,
"updated_at": 1453478668.228473,
"deleted_at": null,
"close_date": null,
"price": 599000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13298919",
"list_office_name": "Briggs Freeman Sotheby's Int'l",
"selling_office_name": "",
"list_agent_mls_id": "0518219",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Michelle Wood",
"list_agent_direct_work_phone": "(214) 564-0234",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.820951,
"longitude": -96.81188499999999,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59003092.jpg",
"http://cdn.rechat.co/59003093.jpg",
"http://cdn.rechat.co/59003094.jpg",
"http://cdn.rechat.co/59003095.jpg",
"http://cdn.rechat.co/59003096.jpg",
"http://cdn.rechat.co/59003097.jpg",
"http://cdn.rechat.co/59003098.jpg",
"http://cdn.rechat.co/59003099.jpg",
"http://cdn.rechat.co/59003100.jpg",
"http://cdn.rechat.co/59003101.jpg",
"http://cdn.rechat.co/59003102.jpg",
"http://cdn.rechat.co/59003103.jpg",
"http://cdn.rechat.co/59003104.jpg",
"http://cdn.rechat.co/59003105.jpg",
"http://cdn.rechat.co/59003106.jpg",
"http://cdn.rechat.co/59003107.jpg",
"http://cdn.rechat.co/59003108.jpg",
"http://cdn.rechat.co/59003109.jpg",
"http://cdn.rechat.co/59003110.jpg",
"http://cdn.rechat.co/59003111.jpg",
"http://cdn.rechat.co/59003112.jpg",
"http://cdn.rechat.co/59003113.jpg",
"http://cdn.rechat.co/59003114.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4502",
"street_name": "Holland",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "202",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1452534888.869005,
"updated_at": 1453478657.220249,
"street_address": "4502 Holland Avenue Unit 202"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 2,
"full_bathroom_count": 3,
"square_meters": 272.76105536975103,
"bedroom_count": 3,
"bathroom_count": 3.2,
"year_built": 2006,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 0,
"lot_size_area": null,
"description": "Lrg crnr unit in heart of Oak Lawn, 1 blk frm Highland Park. Lrg encl yard, 5 patios & rooftop balc. Oak HW floors throughout; prewired for home theater. Lrg kitchen w walkin pantry feat granite counters & SS appl, incl dbl ovens with convection & wine cooler. Master ste feat bay windows, lrg walkin closet w storage, & bath w glass-enclosed shower w travertine marble. Lrg 1st floor bed & bath. Top flr is 2nd LA or 4th BR w half bath & access to**",
"created_at": 1452534891.533525,
"updated_at": 1453478661.72007
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59003092.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/69fb7e54-b88c-11e5-a56f-f23c91c841bd",
"dom": 3777,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$599,000",
"text_no_label": "599,000",
"value": 599000
},
"original_price": {
"type": "formatted_attribute",
"text": "$599,000",
"text_no_label": "599,000",
"value": 599000
},
"area": {
"type": "formatted_attribute",
"text": "2,936 SQFT",
"text_no_label": "2,936",
"value": 2936
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,936 SQFT",
"text_no_label": "2,936",
"value": 2936
},
"square_meters": {
"type": "formatted_attribute",
"text": "273 SQM",
"text_no_label": "273",
"value": 273
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_area": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3.2 Bathrooms",
"text_no_label": "3.2",
"value": "3.2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "5 Bathrooms",
"text_no_label": "5",
"value": "5"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4502 Holland Avenue Unit 202",
"text_no_label": "4502 Holland Avenue Unit 202",
"value": "4502 Holland Avenue Unit 202"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)",
"text_no_label": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)",
"value": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Michelle Wood | Briggs Freeman Sotheby's Int'l",
"text_no_label": "Michelle Wood | Briggs Freeman Sotheby's Int'l",
"value": "Michelle Wood | Briggs Freeman Sotheby's Int'l"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 564-0234",
"text_no_label": "(214) 564-0234",
"value": "(214) 564-0234"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Michelle Wood",
"text_no_label": "Michelle Wood",
"value": "Michelle Wood"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 564-0234",
"text_no_label": "(214) 564-0234",
"value": "(214) 564-0234"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "5a96928a-a50b-11e5-89c6-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1450390388.769907,
"updated_at": 1451826085.853641,
"deleted_at": null,
"close_date": null,
"price": 719000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13290014",
"list_office_name": "Berkshire HathawayHS PenFed TX",
"selling_office_name": "",
"list_agent_mls_id": "0551150",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Pamela Bruck",
"list_agent_direct_work_phone": "(214) 298-9547",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.8215487,
"longitude": -96.8026835,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "4240",
"street_name": "Prescott",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "7F",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1450390372.255484,
"updated_at": 1451826080.349905,
"street_address": "4240 Prescott Avenue Unit 7F"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 217.76291341508735,
"bedroom_count": 2,
"bathroom_count": 2.1,
"year_built": 2004,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 2662.809364548495,
"lot_size_area": 0.658,
"description": "Luxury Living at its BEST! The Highlander is known for its attentive staff & superb location! Privacy with Direct Elevator to your unit. Gourmet Kitchen - Subzero Refrigerator, Wolf 6 top gas burner. French Balconies South East View overlooking Highland Park & Downtown. 2 bedrooms with 10 ft ceilings. Master bath has double vanity, separate tub & shower. 2nd bedroom has private bath & large closet. 2 living areas & 2 assigned parking spaces.",
"created_at": 1450390386.366148,
"updated_at": 1451826082.844277
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/5a96928a-a50b-11e5-89c6-f23c91c841bd",
"dom": 3801,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$719,000",
"text_no_label": "719,000",
"value": 719000
},
"original_price": {
"type": "formatted_attribute",
"text": "$719,000",
"text_no_label": "719,000",
"value": 719000
},
"area": {
"type": "formatted_attribute",
"text": "2,344 SQFT",
"text_no_label": "2,344",
"value": 2344
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,344 SQFT",
"text_no_label": "2,344",
"value": 2344
},
"square_meters": {
"type": "formatted_attribute",
"text": "218 SQM",
"text_no_label": "218",
"value": 218
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "28,662.48 SQFT",
"text_no_label": "28,662.48",
"value": 28662.48
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.66 Acres",
"text_no_label": "0.66",
"value": 0.66
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.66 Acres",
"text_no_label": "0.66",
"value": 0.66
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "2,662.83 SQM",
"text_no_label": "2,662.83",
"value": 2662.83
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4240 Prescott Avenue Unit 7F",
"text_no_label": "4240 Prescott Avenue Unit 7F",
"value": "4240 Prescott Avenue Unit 7F"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Pamela Bruck of Berkshire HathawayHS PenFed TX ([email protected] | (214) 298-9547)",
"text_no_label": "Listing courtesy of Pamela Bruck of Berkshire HathawayHS PenFed TX ([email protected] | (214) 298-9547)",
"value": "Listing courtesy of Pamela Bruck of Berkshire HathawayHS PenFed TX ([email protected] | (214) 298-9547)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Pamela Bruck | Berkshire HathawayHS PenFed TX",
"text_no_label": "Pamela Bruck | Berkshire HathawayHS PenFed TX",
"value": "Pamela Bruck | Berkshire HathawayHS PenFed TX"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 298-9547",
"text_no_label": "(214) 298-9547",
"value": "(214) 298-9547"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Pamela Bruck",
"text_no_label": "Pamela Bruck",
"value": "Pamela Bruck"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 298-9547",
"text_no_label": "(214) 298-9547",
"value": "(214) 298-9547"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "06d1cdc2-be10-11e5-a85f-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1453141174.782902,
"updated_at": 1453187048.642369,
"deleted_at": null,
"close_date": null,
"price": 575000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13302285",
"list_office_name": "Dave Perry Miller Real Estate",
"selling_office_name": "",
"list_agent_mls_id": "0624050",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Lesli Levine",
"list_agent_direct_work_phone": "(214) 983-6465",
"co_list_agent_full_name": "Lindsey Bradley",
"co_list_agent_mls_id": "0620202",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.8198,
"longitude": -96.8123449,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59138066.jpg",
"http://cdn.rechat.co/59138067.jpg",
"http://cdn.rechat.co/59138068.jpg",
"http://cdn.rechat.co/59138069.jpg",
"http://cdn.rechat.co/59138070.jpg",
"http://cdn.rechat.co/59138071.jpg",
"http://cdn.rechat.co/59138072.jpg",
"http://cdn.rechat.co/59138073.jpg",
"http://cdn.rechat.co/59138074.jpg",
"http://cdn.rechat.co/59138075.jpg",
"http://cdn.rechat.co/59138076.jpg",
"http://cdn.rechat.co/59138077.jpg",
"http://cdn.rechat.co/59138078.jpg",
"http://cdn.rechat.co/59138079.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4432",
"street_name": "Bowser",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "B",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1453141173.358095,
"updated_at": 1453187040.149763,
"street_address": "4432 Bowser Avenue Unit B"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Townhouse",
"half_bathroom_count": 1,
"full_bathroom_count": 3,
"square_meters": 167.967298402081,
"bedroom_count": 3,
"bathroom_count": 3.1,
"year_built": 2008,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 744.6153846153846,
"lot_size_area": 0.184,
"description": "Updated 3 story townhome in desirable North Oak Lawn area. 3 bedrooms and 3.5 bathroom. Property features updated open kitchen, hardwoods throughout, private patio and attached 2-car garage. Upstairs master includes fire place, updated master bath and walk-in closet. Walking distance to restaurants, grocery store and more.",
"created_at": 1453141174.586155,
"updated_at": 1453187042.567513
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59138066.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/06d1cdc2-be10-11e5-a85f-f23c91c841bd",
"dom": 3770,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$575,000",
"text_no_label": "575,000",
"value": 575000
},
"original_price": {
"type": "formatted_attribute",
"text": "$575,000",
"text_no_label": "575,000",
"value": 575000
},
"area": {
"type": "formatted_attribute",
"text": "1,808 SQFT",
"text_no_label": "1,808",
"value": 1808
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,808 SQFT",
"text_no_label": "1,808",
"value": 1808
},
"square_meters": {
"type": "formatted_attribute",
"text": "168 SQM",
"text_no_label": "168",
"value": 168
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "8,015.04 SQFT",
"text_no_label": "8,015.04",
"value": 8015.04
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.18 Acres",
"text_no_label": "0.18",
"value": 0.18
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.18 Acres",
"text_no_label": "0.18",
"value": 0.18
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "744.62 SQM",
"text_no_label": "744.62",
"value": 744.62
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3.1 Bathrooms",
"text_no_label": "3.1",
"value": "3.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "4 Bathrooms",
"text_no_label": "4",
"value": "4"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4432 Bowser Avenue Unit B",
"text_no_label": "4432 Bowser Avenue Unit B",
"value": "4432 Bowser Avenue Unit B"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Lesli Levine of Dave Perry Miller Real Estate ([email protected] | (214) 983-6465)\nLindsey Bradley",
"text_no_label": "Listing courtesy of Lesli Levine of Dave Perry Miller Real Estate ([email protected] | (214) 983-6465)\nLindsey Bradley",
"value": "Listing courtesy of Lesli Levine of Dave Perry Miller Real Estate ([email protected] | (214) 983-6465)\nLindsey Bradley"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Lesli Levine | Dave Perry Miller Real Estate",
"text_no_label": "Lesli Levine | Dave Perry Miller Real Estate",
"value": "Lesli Levine | Dave Perry Miller Real Estate"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 983-6465",
"text_no_label": "(214) 983-6465",
"value": "(214) 983-6465"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Lesli Levine",
"text_no_label": "Lesli Levine",
"value": "Lesli Levine"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 983-6465",
"text_no_label": "(214) 983-6465",
"value": "(214) 983-6465"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "Lindsey Bradley",
"text_no_label": "Lindsey Bradley",
"value": "Lindsey Bradley"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "d6d79d92-d41a-11e5-bf12-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1455564744.335595,
"updated_at": 1455797873.517651,
"deleted_at": null,
"close_date": null,
"price": 739000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13320337",
"list_office_name": "Rogers Healy and Associates",
"selling_office_name": "",
"list_agent_mls_id": "0509679",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Steven Rigely",
"list_agent_direct_work_phone": "(469) 363-6992",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.787755,
"longitude": -96.8091541,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59709942.jpg",
"http://cdn.rechat.co/59709943.jpg",
"http://cdn.rechat.co/59710341.jpg",
"http://cdn.rechat.co/59710342.jpg",
"http://cdn.rechat.co/59710345.jpg",
"http://cdn.rechat.co/59710344.jpg",
"http://cdn.rechat.co/59710343.jpg",
"http://cdn.rechat.co/59710346.jpg",
"http://cdn.rechat.co/59710347.jpg",
"http://cdn.rechat.co/59710348.jpg",
"http://cdn.rechat.co/59710349.jpg",
"http://cdn.rechat.co/59710350.jpg",
"http://cdn.rechat.co/59710351.jpg",
"http://cdn.rechat.co/59710352.jpg",
"http://cdn.rechat.co/59710353.jpg",
"http://cdn.rechat.co/59710354.jpg",
"http://cdn.rechat.co/59710355.jpg",
"http://cdn.rechat.co/59710356.jpg",
"http://cdn.rechat.co/59710357.jpg",
"http://cdn.rechat.co/59710358.jpg",
"http://cdn.rechat.co/59710361.jpg",
"http://cdn.rechat.co/59710360.jpg",
"http://cdn.rechat.co/59710359.jpg",
"http://cdn.rechat.co/59710362.jpg",
"http://cdn.rechat.co/59710363.jpg"
],
"address": {
"type": "compact_address",
"street_number": "2408",
"street_name": "Victory Park",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Lane",
"unit_number": "836",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1455564743.277281,
"updated_at": 1455797862.200202,
"street_address": "2408 Victory Park Lane Unit 836"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 178.6510590858417,
"bedroom_count": 2,
"bathroom_count": 2.1,
"year_built": 2005,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 6632.742474916388,
"lot_size_area": 1.639,
"description": "Pristine W Dallas South Tower condo on the 8th floor with downtown views.1678 square feet interior + 245 sq ft of terrace.This open plan features eat in kitchen,Sub Zero,European cabinetry,Kupperbush,hardwood floors and floor to ceiling windows.Large master suite with spa like bathroom that leads into a walk in closet with A custom California closet system.Custom closets in guest room and hallway closet.Unit has excellent parking spaces.",
"created_at": 1455564744.154762,
"updated_at": 1455797866.415603
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59709942.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/d6d79d92-d41a-11e5-bf12-f23c91c841bd",
"dom": 3741,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$739,000",
"text_no_label": "739,000",
"value": 739000
},
"original_price": {
"type": "formatted_attribute",
"text": "$739,000",
"text_no_label": "739,000",
"value": 739000
},
"area": {
"type": "formatted_attribute",
"text": "1,923 SQFT",
"text_no_label": "1,923",
"value": 1923
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,923 SQFT",
"text_no_label": "1,923",
"value": 1923
},
"square_meters": {
"type": "formatted_attribute",
"text": "179 SQM",
"text_no_label": "179",
"value": 179
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "71,394.84 SQFT",
"text_no_label": "71,394.84",
"value": 71394.84
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "1.64 Acres",
"text_no_label": "1.64",
"value": 1.64
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "1.64 Acres",
"text_no_label": "1.64",
"value": 1.64
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "6,632.8 SQM",
"text_no_label": "6,632.8",
"value": 6632.8
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "2408 Victory Park Lane Unit 836",
"text_no_label": "2408 Victory Park Lane Unit 836",
"value": "2408 Victory Park Lane Unit 836"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Steven Rigely of Rogers Healy and Associates ([email protected] | (469) 363-6992)",
"text_no_label": "Listing courtesy of Steven Rigely of Rogers Healy and Associates ([email protected] | (469) 363-6992)",
"value": "Listing courtesy of Steven Rigely of Rogers Healy and Associates ([email protected] | (469) 363-6992)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Steven Rigely | Rogers Healy and Associates",
"text_no_label": "Steven Rigely | Rogers Healy and Associates",
"value": "Steven Rigely | Rogers Healy and Associates"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(469) 363-6992",
"text_no_label": "(469) 363-6992",
"value": "(469) 363-6992"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Steven Rigely",
"text_no_label": "Steven Rigely",
"value": "Steven Rigely"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(469) 363-6992",
"text_no_label": "(469) 363-6992",
"value": "(469) 363-6992"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "33836686-d0db-11e5-b351-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1455207558.532708,
"updated_at": 1455515517.884268,
"deleted_at": null,
"close_date": null,
"price": 770000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13317847",
"list_office_name": "Keller Williams Realty DPR",
"selling_office_name": "",
"list_agent_mls_id": "0526008",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Dawn Lally",
"list_agent_direct_work_phone": "(214) 632-0400",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.7884951,
"longitude": -96.80921389999999,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59617436.jpg",
"http://cdn.rechat.co/59617420.jpg",
"http://cdn.rechat.co/59617422.jpg",
"http://cdn.rechat.co/59617413.jpg",
"http://cdn.rechat.co/59617415.jpg",
"http://cdn.rechat.co/59617419.jpg",
"http://cdn.rechat.co/59617424.jpg",
"http://cdn.rechat.co/59617423.jpg",
"http://cdn.rechat.co/59617425.jpg",
"http://cdn.rechat.co/59617421.jpg",
"http://cdn.rechat.co/59617418.jpg",
"http://cdn.rechat.co/59617416.jpg",
"http://cdn.rechat.co/59617417.jpg",
"http://cdn.rechat.co/59617414.jpg",
"http://cdn.rechat.co/59617428.jpg",
"http://cdn.rechat.co/59617426.jpg",
"http://cdn.rechat.co/59617427.jpg",
"http://cdn.rechat.co/59617429.jpg",
"http://cdn.rechat.co/59617431.jpg",
"http://cdn.rechat.co/59617432.jpg",
"http://cdn.rechat.co/59617433.jpg",
"http://cdn.rechat.co/59617434.jpg",
"http://cdn.rechat.co/59617437.jpg",
"http://cdn.rechat.co/59617438.jpg",
"http://cdn.rechat.co/59617441.jpg",
"http://cdn.rechat.co/59617442.jpg",
"http://cdn.rechat.co/59617440.jpg",
"http://cdn.rechat.co/59617439.jpg",
"http://cdn.rechat.co/59617443.jpg",
"http://cdn.rechat.co/59617444.jpg",
"http://cdn.rechat.co/59617445.jpg",
"http://cdn.rechat.co/59617446.jpg",
"http://cdn.rechat.co/59617435.jpg",
"http://cdn.rechat.co/59617447.jpg",
"http://cdn.rechat.co/59617448.jpg",
"http://cdn.rechat.co/59617449.jpg"
],
"address": {
"type": "compact_address",
"street_number": "2430",
"street_name": "Victory Park",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Lane",
"unit_number": "2003",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1455207557.381029,
"updated_at": 1455515517.265398,
"street_address": "2430 Victory Park Lane Unit 2003"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": null,
"full_bathroom_count": 2,
"square_meters": 189.61352657004832,
"bedroom_count": 1,
"bathroom_count": 2,
"year_built": 2004,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 6669.163879598663,
"lot_size_area": 1.648,
"description": "Rare Opportunity to own this Corner unit in the W North Tower with Breathtaking South, East and West Panoramic Views of Downtown! Luxury Finish with Floor to Ceiling Windows,Hardwood Floors,\r\nElectric Shades,Custom Window Treatments,Over-Sized Soaking Tub,Rain Shower,Spacious Kitchen Island with High-End Appliances,Built-in Refrigerator and Wine Cooler. 60' Terrace,2 Garage Spaces + Storage Unit. Study can easily be converted to 2nd bedroom.",
"created_at": 1455207558.365219,
"updated_at": 1455515517.455513
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59617436.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/33836686-d0db-11e5-b351-f23c91c841bd",
"dom": 3746,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$770,000",
"text_no_label": "770,000",
"value": 770000
},
"original_price": {
"type": "formatted_attribute",
"text": "$770,000",
"text_no_label": "770,000",
"value": 770000
},
"area": {
"type": "formatted_attribute",
"text": "2,041 SQFT",
"text_no_label": "2,041",
"value": 2041
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,041 SQFT",
"text_no_label": "2,041",
"value": 2041
},
"square_meters": {
"type": "formatted_attribute",
"text": "190 SQM",
"text_no_label": "190",
"value": 190
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "71,786.88 SQFT",
"text_no_label": "71,786.88",
"value": 71786.88
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "1.65 Acres",
"text_no_label": "1.65",
"value": 1.65
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "1.65 Acres",
"text_no_label": "1.65",
"value": 1.65
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "6,669.23 SQM",
"text_no_label": "6,669.23",
"value": 6669.23
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "1 Bedroom",
"text_no_label": "1",
"value": 1
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "2430 Victory Park Lane Unit 2003",
"text_no_label": "2430 Victory Park Lane Unit 2003",
"value": "2430 Victory Park Lane Unit 2003"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Dawn Lally of Keller Williams Realty DPR ([email protected] | (214) 632-0400)",
"text_no_label": "Listing courtesy of Dawn Lally of Keller Williams Realty DPR ([email protected] | (214) 632-0400)",
"value": "Listing courtesy of Dawn Lally of Keller Williams Realty DPR ([email protected] | (214) 632-0400)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Dawn Lally | Keller Williams Realty DPR",
"text_no_label": "Dawn Lally | Keller Williams Realty DPR",
"value": "Dawn Lally | Keller Williams Realty DPR"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 632-0400",
"text_no_label": "(214) 632-0400",
"value": "(214) 632-0400"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Dawn Lally",
"text_no_label": "Dawn Lally",
"value": "Dawn Lally"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 632-0400",
"text_no_label": "(214) 632-0400",
"value": "(214) 632-0400"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "fd2f7bea-be12-11e5-a1cd-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1453142447.108176,
"updated_at": 1453187048.644771,
"deleted_at": null,
"close_date": null,
"price": 500000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13302339",
"list_office_name": "Dave Perry Miller Real Estate",
"selling_office_name": "",
"list_agent_mls_id": "0624050",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Lesli Levine",
"list_agent_direct_work_phone": "(214) 983-6465",
"co_list_agent_full_name": "Lindsey Bradley",
"co_list_agent_mls_id": "0620202",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.8198,
"longitude": -96.8123449,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59139081.jpg",
"http://cdn.rechat.co/59139082.jpg",
"http://cdn.rechat.co/59139083.jpg",
"http://cdn.rechat.co/59139084.jpg",
"http://cdn.rechat.co/59139085.jpg",
"http://cdn.rechat.co/59139086.jpg",
"http://cdn.rechat.co/59139087.jpg",
"http://cdn.rechat.co/59139088.jpg",
"http://cdn.rechat.co/59139089.jpg",
"http://cdn.rechat.co/59139090.jpg",
"http://cdn.rechat.co/59139091.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4432",
"street_name": "Bowser",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "D",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1453142445.644871,
"updated_at": 1453187040.152838,
"street_address": "4432 Bowser Avenue Unit D"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Townhouse",
"half_bathroom_count": null,
"full_bathroom_count": 2,
"square_meters": 185.52582683017468,
"bedroom_count": 2,
"bathroom_count": 2,
"year_built": 2008,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 744.6153846153846,
"lot_size_area": 0.184,
"description": "Updated 3 story townhome in desirable North Oak Lawn area. 2 bedrooms and 3 bathroom. Property features updated open kitchen, hardwoods throughout, fire place, private patio and attached 2-car garage. Upstairs master includes updated master bath and walk-in closet. Walking distance to restaurants, grocery store and more.",
"created_at": 1453142446.808928,
"updated_at": 1453187042.571311
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59139081.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/fd2f7bea-be12-11e5-a1cd-f23c91c841bd",
"dom": 3770,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$500,000",
"text_no_label": "500,000",
"value": 500000
},
"original_price": {
"type": "formatted_attribute",
"text": "$500,000",
"text_no_label": "500,000",
"value": 500000
},
"area": {
"type": "formatted_attribute",
"text": "1,997 SQFT",
"text_no_label": "1,997",
"value": 1997
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,997 SQFT",
"text_no_label": "1,997",
"value": 1997
},
"square_meters": {
"type": "formatted_attribute",
"text": "186 SQM",
"text_no_label": "186",
"value": 186
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "8,015.04 SQFT",
"text_no_label": "8,015.04",
"value": 8015.04
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.18 Acres",
"text_no_label": "0.18",
"value": 0.18
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.18 Acres",
"text_no_label": "0.18",
"value": 0.18
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "744.62 SQM",
"text_no_label": "744.62",
"value": 744.62
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4432 Bowser Avenue Unit D",
"text_no_label": "4432 Bowser Avenue Unit D",
"value": "4432 Bowser Avenue Unit D"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Lesli Levine of Dave Perry Miller Real Estate ([email protected] | (214) 983-6465)\nLindsey Bradley",
"text_no_label": "Listing courtesy of Lesli Levine of Dave Perry Miller Real Estate ([email protected] | (214) 983-6465)\nLindsey Bradley",
"value": "Listing courtesy of Lesli Levine of Dave Perry Miller Real Estate ([email protected] | (214) 983-6465)\nLindsey Bradley"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Lesli Levine | Dave Perry Miller Real Estate",
"text_no_label": "Lesli Levine | Dave Perry Miller Real Estate",
"value": "Lesli Levine | Dave Perry Miller Real Estate"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 983-6465",
"text_no_label": "(214) 983-6465",
"value": "(214) 983-6465"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Lesli Levine",
"text_no_label": "Lesli Levine",
"value": "Lesli Levine"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 983-6465",
"text_no_label": "(214) 983-6465",
"value": "(214) 983-6465"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "Lindsey Bradley",
"text_no_label": "Lindsey Bradley",
"value": "Lindsey Bradley"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "cdaef89c-cb9a-11e5-b4c2-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1454630144.086023,
"updated_at": 1454659374.391846,
"deleted_at": null,
"close_date": null,
"price": 7995000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13314620",
"list_office_name": "Allie Beth Allman & Assoc.",
"selling_office_name": "",
"list_agent_mls_id": "0229822",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Allie Beth Allman",
"list_agent_direct_work_phone": "(972) 380-7750",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.7884951,
"longitude": -96.80921389999999,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59506335.jpg",
"http://cdn.rechat.co/59506336.jpg",
"http://cdn.rechat.co/59506337.jpg",
"http://cdn.rechat.co/59506338.jpg",
"http://cdn.rechat.co/59506339.jpg",
"http://cdn.rechat.co/59506340.jpg",
"http://cdn.rechat.co/59506341.jpg",
"http://cdn.rechat.co/59506342.jpg",
"http://cdn.rechat.co/59506343.jpg",
"http://cdn.rechat.co/59506344.jpg",
"http://cdn.rechat.co/59506345.jpg"
],
"address": {
"type": "compact_address",
"street_number": "2430",
"street_name": "Victory Park",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Lane",
"unit_number": "3001",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1454630143.084243,
"updated_at": 1454659368.813746,
"street_address": "2430 Victory Park Lane Unit 3001"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 3,
"full_bathroom_count": 7,
"square_meters": 1096.8970642883687,
"bedroom_count": 5,
"bathroom_count": 7.3,
"year_built": 2004,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 6669.163879598663,
"lot_size_area": 1.648,
"description": "30th floor of Victory Parks W Residence Tower. Step from elevator to the secure entry, a sublime transition to Dallas defining penthouse, almost 11,000 sq ft of spatial symmetry finished with a fineness of detail that is striking yet unpretentious. Five bedrooms, seven full, three half baths, two living, two dining areas, fitness, massage rooms, media room & two studies. All surrounded by sky & skyline in glass-defined space w 12-ft ceilings",
"created_at": 1454630143.896566,
"updated_at": 1454659370.583339
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59506335.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/cdaef89c-cb9a-11e5-b4c2-f23c91c841bd",
"dom": 3752,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$7,995,000",
"text_no_label": "7,995,000",
"value": 7995000
},
"original_price": {
"type": "formatted_attribute",
"text": "$7,995,000",
"text_no_label": "7,995,000",
"value": 7995000
},
"area": {
"type": "formatted_attribute",
"text": "11,807 SQFT",
"text_no_label": "11,807",
"value": 11807
},
"square_feet": {
"type": "formatted_attribute",
"text": "11,807 SQFT",
"text_no_label": "11,807",
"value": 11807
},
"square_meters": {
"type": "formatted_attribute",
"text": "1,097 SQM",
"text_no_label": "1,097",
"value": 1097
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "71,786.88 SQFT",
"text_no_label": "71,786.88",
"value": 71786.88
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "1.65 Acres",
"text_no_label": "1.65",
"value": 1.65
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "1.65 Acres",
"text_no_label": "1.65",
"value": 1.65
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "6,669.23 SQM",
"text_no_label": "6,669.23",
"value": 6669.23
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "5 Bedrooms",
"text_no_label": "5",
"value": 5
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "7.3 Bathrooms",
"text_no_label": "7.3",
"value": "7.3"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "10 Bathrooms",
"text_no_label": "10",
"value": "10"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "2430 Victory Park Lane Unit 3001",
"text_no_label": "2430 Victory Park Lane Unit 3001",
"value": "2430 Victory Park Lane Unit 3001"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Allie Beth Allman of Allie Beth Allman & Assoc. ([email protected] | (972) 380-7750)",
"text_no_label": "Listing courtesy of Allie Beth Allman of Allie Beth Allman & Assoc. ([email protected] | (972) 380-7750)",
"value": "Listing courtesy of Allie Beth Allman of Allie Beth Allman & Assoc. ([email protected] | (972) 380-7750)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Allie Beth Allman | Allie Beth Allman & Assoc.",
"text_no_label": "Allie Beth Allman | Allie Beth Allman & Assoc.",
"value": "Allie Beth Allman | Allie Beth Allman & Assoc."
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(972) 380-7750",
"text_no_label": "(972) 380-7750",
"value": "(972) 380-7750"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Allie Beth Allman",
"text_no_label": "Allie Beth Allman",
"value": "Allie Beth Allman"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(972) 380-7750",
"text_no_label": "(972) 380-7750",
"value": "(972) 380-7750"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "33f97c1a-b88d-11e5-9634-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1452535230.655114,
"updated_at": 1453478668.350358,
"deleted_at": null,
"close_date": null,
"price": 525000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13298934",
"list_office_name": "Briggs Freeman Sotheby's Int'l",
"selling_office_name": "",
"list_agent_mls_id": "0518219",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Michelle Wood",
"list_agent_direct_work_phone": "(214) 564-0234",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.820951,
"longitude": -96.81188499999999,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59003391.jpg",
"http://cdn.rechat.co/59003392.jpg",
"http://cdn.rechat.co/59003393.jpg",
"http://cdn.rechat.co/59003394.jpg",
"http://cdn.rechat.co/59003395.jpg",
"http://cdn.rechat.co/59003396.jpg",
"http://cdn.rechat.co/59003397.jpg",
"http://cdn.rechat.co/59003398.jpg",
"http://cdn.rechat.co/59003399.jpg",
"http://cdn.rechat.co/59003400.jpg",
"http://cdn.rechat.co/59003401.jpg",
"http://cdn.rechat.co/59003402.jpg",
"http://cdn.rechat.co/59003403.jpg",
"http://cdn.rechat.co/59003404.jpg",
"http://cdn.rechat.co/59003405.jpg",
"http://cdn.rechat.co/59003406.jpg",
"http://cdn.rechat.co/59003407.jpg",
"http://cdn.rechat.co/59003408.jpg",
"http://cdn.rechat.co/59003409.jpg",
"http://cdn.rechat.co/59003410.jpg",
"http://cdn.rechat.co/59003411.jpg",
"http://cdn.rechat.co/59003412.jpg",
"http://cdn.rechat.co/59003413.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4502",
"street_name": "Holland",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "208",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1452535224.784193,
"updated_at": 1453478657.386527,
"street_address": "4502 Holland Avenue Unit 208"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 2,
"full_bathroom_count": 3,
"square_meters": 235.87885544407285,
"bedroom_count": 3,
"bathroom_count": 3.2,
"year_built": 2006,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 0,
"lot_size_area": null,
"description": "Large corner unit in heart of Oak Lawn, 1 blk frm Highland Park. Two patios on courtyard. Oak hardwood floors throughout; pre-wired for home theater. Large kitchen w walk-in pantry feat granite counters & SS appl, incl dbl ovens with convection & wine cooler. Master suite feat bay windows, large walk-in closet w storage, and bath w glass-enclosed shower w travertine marble. Top floor is 2nd LA or 4th BR w half bath & access to**",
"created_at": 1452535229.631193,
"updated_at": 1453478661.841707
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59003391.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/33f97c1a-b88d-11e5-9634-f23c91c841bd",
"dom": 3777,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$525,000",
"text_no_label": "525,000",
"value": 525000
},
"original_price": {
"type": "formatted_attribute",
"text": "$525,000",
"text_no_label": "525,000",
"value": 525000
},
"area": {
"type": "formatted_attribute",
"text": "2,539 SQFT",
"text_no_label": "2,539",
"value": 2539
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,539 SQFT",
"text_no_label": "2,539",
"value": 2539
},
"square_meters": {
"type": "formatted_attribute",
"text": "236 SQM",
"text_no_label": "236",
"value": 236
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_area": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3.2 Bathrooms",
"text_no_label": "3.2",
"value": "3.2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "5 Bathrooms",
"text_no_label": "5",
"value": "5"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4502 Holland Avenue Unit 208",
"text_no_label": "4502 Holland Avenue Unit 208",
"value": "4502 Holland Avenue Unit 208"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)",
"text_no_label": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)",
"value": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Michelle Wood | Briggs Freeman Sotheby's Int'l",
"text_no_label": "Michelle Wood | Briggs Freeman Sotheby's Int'l",
"value": "Michelle Wood | Briggs Freeman Sotheby's Int'l"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 564-0234",
"text_no_label": "(214) 564-0234",
"value": "(214) 564-0234"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Michelle Wood",
"text_no_label": "Michelle Wood",
"value": "Michelle Wood"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 564-0234",
"text_no_label": "(214) 564-0234",
"value": "(214) 564-0234"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "73525c44-b48a-11e5-b2ad-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1452094243.792258,
"updated_at": 1452780278.694036,
"deleted_at": null,
"close_date": null,
"price": 255900,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13296809",
"list_office_name": "Al Coker & Associates, L.L.C.",
"selling_office_name": "",
"list_agent_mls_id": "0303273",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Al Coker",
"list_agent_direct_work_phone": "(214) 443-9300",
"co_list_agent_full_name": "Jose Rizo",
"co_list_agent_mls_id": "0650688",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.818868,
"longitude": -96.81230599999999,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/58913885.jpg",
"http://cdn.rechat.co/58913886.jpg",
"http://cdn.rechat.co/58913887.jpg",
"http://cdn.rechat.co/59063247.jpg",
"http://cdn.rechat.co/59063248.jpg",
"http://cdn.rechat.co/59063249.jpg",
"http://cdn.rechat.co/59063250.jpg",
"http://cdn.rechat.co/59063251.jpg",
"http://cdn.rechat.co/59063252.jpg",
"http://cdn.rechat.co/59063253.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4411",
"street_name": "Bowser",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "",
"unit_number": "209",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1452094240.969728,
"updated_at": 1452780277.572972,
"street_address": "4411 Bowser Unit 209"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 1,
"square_meters": 106.46599777034561,
"bedroom_count": 1,
"bathroom_count": 1.1,
"year_built": 2008,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 0,
"lot_size_area": null,
"description": "Nikko Condominiums is comprised of 30 boutique residences priced from mid $200,000 - $300,000. The building is nestled in a tree-lined street steps away from Whole Foods. Convenient access to all major attractions of town and Dallas Love Field Airport make Nikko a great location for anyone seeking a lock-and-leave lifestyle. Open floor plans and modern finishes add the finishing touches making Nikko Condominiums a must see for your buyers.",
"created_at": 1452094243.566805,
"updated_at": 1452780277.895671
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/58913885.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/73525c44-b48a-11e5-b2ad-f23c91c841bd",
"dom": 3782,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$255,900",
"text_no_label": "255,900",
"value": 255900
},
"original_price": {
"type": "formatted_attribute",
"text": "$255,900",
"text_no_label": "255,900",
"value": 255900
},
"area": {
"type": "formatted_attribute",
"text": "1,146 SQFT",
"text_no_label": "1,146",
"value": 1146
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,146 SQFT",
"text_no_label": "1,146",
"value": 1146
},
"square_meters": {
"type": "formatted_attribute",
"text": "106 SQM",
"text_no_label": "106",
"value": 106
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_area": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "1 Bedroom",
"text_no_label": "1",
"value": 1
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "1.1 Bathrooms",
"text_no_label": "1.1",
"value": "1.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4411 Bowser Unit 209",
"text_no_label": "4411 Bowser Unit 209",
"value": "4411 Bowser Unit 209"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Al Coker of Al Coker & Associates, L.L.C. ([email protected] | (214) 443-9300)\nJose Rizo",
"text_no_label": "Listing courtesy of Al Coker of Al Coker & Associates, L.L.C. ([email protected] | (214) 443-9300)\nJose Rizo",
"value": "Listing courtesy of Al Coker of Al Coker & Associates, L.L.C. ([email protected] | (214) 443-9300)\nJose Rizo"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Al Coker | Al Coker & Associates, L.L.C.",
"text_no_label": "Al Coker | Al Coker & Associates, L.L.C.",
"value": "Al Coker | Al Coker & Associates, L.L.C."
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 443-9300",
"text_no_label": "(214) 443-9300",
"value": "(214) 443-9300"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Al Coker",
"text_no_label": "Al Coker",
"value": "Al Coker"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 443-9300",
"text_no_label": "(214) 443-9300",
"value": "(214) 443-9300"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "Jose Rizo",
"text_no_label": "Jose Rizo",
"value": "Jose Rizo"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "7fd296ce-b326-11e5-9d3c-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1451941363.929389,
"updated_at": 1455561823.419339,
"deleted_at": null,
"close_date": null,
"price": 279900,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13294778",
"list_office_name": "H&O Investments, Inc",
"selling_office_name": "",
"list_agent_mls_id": "0488148",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Jessica Hernandez",
"list_agent_direct_work_phone": "(972) 983-7500",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.7860229,
"longitude": -96.8091183,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/58872988.jpg",
"http://cdn.rechat.co/58872953.jpg",
"http://cdn.rechat.co/58872985.jpg",
"http://cdn.rechat.co/58872954.jpg",
"http://cdn.rechat.co/58872955.jpg",
"http://cdn.rechat.co/58872957.jpg",
"http://cdn.rechat.co/58975083.jpg",
"http://cdn.rechat.co/59704843.jpg",
"http://cdn.rechat.co/59704842.jpg",
"http://cdn.rechat.co/58975084.jpg",
"http://cdn.rechat.co/59704849.jpg",
"http://cdn.rechat.co/58975085.jpg",
"http://cdn.rechat.co/58975086.jpg",
"http://cdn.rechat.co/59704850.jpg",
"http://cdn.rechat.co/58975087.jpg",
"http://cdn.rechat.co/59704854.jpg",
"http://cdn.rechat.co/58872963.jpg",
"http://cdn.rechat.co/58975088.jpg",
"http://cdn.rechat.co/58872976.jpg",
"http://cdn.rechat.co/58975089.jpg",
"http://cdn.rechat.co/59704851.jpg",
"http://cdn.rechat.co/59704844.jpg",
"http://cdn.rechat.co/58872968.jpg",
"http://cdn.rechat.co/59704855.jpg",
"http://cdn.rechat.co/58872962.jpg",
"http://cdn.rechat.co/59704852.jpg",
"http://cdn.rechat.co/58872969.jpg",
"http://cdn.rechat.co/59704856.jpg",
"http://cdn.rechat.co/58872970.jpg",
"http://cdn.rechat.co/59704853.jpg",
"http://cdn.rechat.co/58872973.jpg",
"http://cdn.rechat.co/58872959.jpg",
"http://cdn.rechat.co/58974990.jpg",
"http://cdn.rechat.co/58872965.jpg",
"http://cdn.rechat.co/58872958.jpg",
"http://cdn.rechat.co/58974991.jpg",
"http://cdn.rechat.co/58872964.jpg",
"http://cdn.rechat.co/58872960.jpg",
"http://cdn.rechat.co/58872971.jpg",
"http://cdn.rechat.co/58872974.jpg",
"http://cdn.rechat.co/58872978.jpg",
"http://cdn.rechat.co/58974992.jpg",
"http://cdn.rechat.co/58872961.jpg",
"http://cdn.rechat.co/58872966.jpg",
"http://cdn.rechat.co/58872972.jpg",
"http://cdn.rechat.co/58974993.jpg",
"http://cdn.rechat.co/58872983.jpg",
"http://cdn.rechat.co/58872979.jpg",
"http://cdn.rechat.co/58974994.jpg",
"http://cdn.rechat.co/58872984.jpg",
"http://cdn.rechat.co/58872982.jpg",
"http://cdn.rechat.co/58872986.jpg",
"http://cdn.rechat.co/58974995.jpg",
"http://cdn.rechat.co/58872967.jpg",
"http://cdn.rechat.co/58974996.jpg",
"http://cdn.rechat.co/58872975.jpg",
"http://cdn.rechat.co/58872987.jpg",
"http://cdn.rechat.co/58975090.jpg",
"http://cdn.rechat.co/58872977.jpg",
"http://cdn.rechat.co/58975091.jpg",
"http://cdn.rechat.co/58975092.jpg",
"http://cdn.rechat.co/58975093.jpg",
"http://cdn.rechat.co/58872956.jpg",
"http://cdn.rechat.co/59704846.jpg",
"http://cdn.rechat.co/59704847.jpg",
"http://cdn.rechat.co/58872980.jpg",
"http://cdn.rechat.co/59704848.jpg",
"http://cdn.rechat.co/58872981.jpg",
"http://cdn.rechat.co/59704845.jpg"
],
"address": {
"type": "compact_address",
"street_number": "2323",
"street_name": "Houston",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Street",
"unit_number": "509",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "N",
"street_dir_suffix": "",
"created_at": 1451941360.754586,
"updated_at": 1455561821.409326,
"street_address": "2323 N Houston Street Unit 509"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": null,
"full_bathroom_count": 1,
"square_meters": 80.2675585284281,
"bedroom_count": 1,
"bathroom_count": 1,
"year_built": 2005,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 3690.702341137124,
"lot_size_area": 0.912,
"description": "Gorgeous one bedroom one bath plus study condo in prime downtown LOCATION in the heart of Victory Park, House of Blues, area-site of American Airlines Center with a spectacular view from your fifth floor balcony. Walk to Harwood District, Katy Trail. Contemporary finish out, open kitchen with SS appliances & natural stone countertops. \r\nEnjoy the amenities of the community, Concierge, pool, sun deck, fitness & garage parking.New Carpet,Paint,etc",
"created_at": 1451941363.487233,
"updated_at": 1455561822.003774
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/58872988.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/7fd296ce-b326-11e5-9d3c-f23c91c841bd",
"dom": 3783,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$279,900",
"text_no_label": "279,900",
"value": 279900
},
"original_price": {
"type": "formatted_attribute",
"text": "$279,900",
"text_no_label": "279,900",
"value": 279900
},
"area": {
"type": "formatted_attribute",
"text": "864 SQFT",
"text_no_label": "864",
"value": 864
},
"square_feet": {
"type": "formatted_attribute",
"text": "864 SQFT",
"text_no_label": "864",
"value": 864
},
"square_meters": {
"type": "formatted_attribute",
"text": "80 SQM",
"text_no_label": "80",
"value": 80
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "39,726.72 SQFT",
"text_no_label": "39,726.72",
"value": 39726.72
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.91 Acres",
"text_no_label": "0.91",
"value": 0.91
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.91 Acres",
"text_no_label": "0.91",
"value": 0.91
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "3,690.74 SQM",
"text_no_label": "3,690.74",
"value": 3690.74
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "1 Bedroom",
"text_no_label": "1",
"value": 1
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "1 Bathroom",
"text_no_label": "1",
"value": "1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "1 Bathroom",
"text_no_label": "1",
"value": "1"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "2323 N Houston Street Unit 509",
"text_no_label": "2323 N Houston Street Unit 509",
"value": "2323 N Houston Street Unit 509"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Jessica Hernandez of H&O Investments, Inc ([email protected] | (972) 983-7500)",
"text_no_label": "Listing courtesy of Jessica Hernandez of H&O Investments, Inc ([email protected] | (972) 983-7500)",
"value": "Listing courtesy of Jessica Hernandez of H&O Investments, Inc ([email protected] | (972) 983-7500)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Jessica Hernandez | H&O Investments, Inc",
"text_no_label": "Jessica Hernandez | H&O Investments, Inc",
"value": "Jessica Hernandez | H&O Investments, Inc"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(972) 983-7500",
"text_no_label": "(972) 983-7500",
"value": "(972) 983-7500"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Jessica Hernandez",
"text_no_label": "Jessica Hernandez",
"value": "Jessica Hernandez"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(972) 983-7500",
"text_no_label": "(972) 983-7500",
"value": "(972) 983-7500"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "3a603d2a-9eb9-11e5-a82d-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1449695409.018251,
"updated_at": 1454433198.435699,
"deleted_at": null,
"close_date": null,
"price": 450000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13286681",
"list_office_name": "Briggs Freeman Sotheby's Int'l",
"selling_office_name": "",
"list_agent_mls_id": "0518219",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Michelle Wood",
"list_agent_direct_work_phone": "(214) 564-0234",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.787755,
"longitude": -96.8091541,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/58544184.jpg",
"http://cdn.rechat.co/58544185.jpg",
"http://cdn.rechat.co/58544186.jpg",
"http://cdn.rechat.co/58544187.jpg",
"http://cdn.rechat.co/58544188.jpg",
"http://cdn.rechat.co/58544189.jpg",
"http://cdn.rechat.co/58544190.jpg",
"http://cdn.rechat.co/58544191.jpg",
"http://cdn.rechat.co/58544192.jpg",
"http://cdn.rechat.co/58544193.jpg",
"http://cdn.rechat.co/58544194.jpg",
"http://cdn.rechat.co/58544195.jpg"
],
"address": {
"type": "compact_address",
"street_number": "2408",
"street_name": "Victory Park",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Lane",
"unit_number": "842",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1449695390.184389,
"updated_at": 1454433196.441882,
"street_address": "2408 Victory Park Lane Unit 842"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": null,
"full_bathroom_count": 2,
"square_meters": 107.85953177257525,
"bedroom_count": 1,
"bathroom_count": 2,
"year_built": 2005,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 6632.742474916388,
"lot_size_area": 1.639,
"description": "Stunning sunset views from large terrace that overlooks the pool! One bed unit with study and two full baths includes wall mounted flat screen TV’s, and washer-dryer. European kitchen with SS appl opens to LA with floor to ceiling windows. Large master faces west and offers gorgeous sunset views. Master bath has oversized soaking tub, marble floors and counters, huge customized master closet and additional storage closet off the patio.",
"created_at": 1449695399.57164,
"updated_at": 1454433197.051433
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/58544184.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/3a603d2a-9eb9-11e5-a82d-f23c91c841bd",
"dom": 3809,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$450,000",
"text_no_label": "450,000",
"value": 450000
},
"original_price": {
"type": "formatted_attribute",
"text": "$450,000",
"text_no_label": "450,000",
"value": 450000
},
"area": {
"type": "formatted_attribute",
"text": "1,161 SQFT",
"text_no_label": "1,161",
"value": 1161
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,161 SQFT",
"text_no_label": "1,161",
"value": 1161
},
"square_meters": {
"type": "formatted_attribute",
"text": "108 SQM",
"text_no_label": "108",
"value": 108
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "71,394.84 SQFT",
"text_no_label": "71,394.84",
"value": 71394.84
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "1.64 Acres",
"text_no_label": "1.64",
"value": 1.64
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "1.64 Acres",
"text_no_label": "1.64",
"value": 1.64
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "6,632.8 SQM",
"text_no_label": "6,632.8",
"value": 6632.8
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "1 Bedroom",
"text_no_label": "1",
"value": 1
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "2408 Victory Park Lane Unit 842",
"text_no_label": "2408 Victory Park Lane Unit 842",
"value": "2408 Victory Park Lane Unit 842"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)",
"text_no_label": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)",
"value": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Michelle Wood | Briggs Freeman Sotheby's Int'l",
"text_no_label": "Michelle Wood | Briggs Freeman Sotheby's Int'l",
"value": "Michelle Wood | Briggs Freeman Sotheby's Int'l"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 564-0234",
"text_no_label": "(214) 564-0234",
"value": "(214) 564-0234"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Michelle Wood",
"text_no_label": "Michelle Wood",
"value": "Michelle Wood"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 564-0234",
"text_no_label": "(214) 564-0234",
"value": "(214) 564-0234"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "7e84d768-a814-11e5-8e1e-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1450724168.010878,
"updated_at": 1453478573.467694,
"deleted_at": null,
"close_date": null,
"price": 399900,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13291126",
"list_office_name": "Rogers Healy and Associates",
"selling_office_name": "",
"list_agent_mls_id": "0509679",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Steven Rigely",
"list_agent_direct_work_phone": "(469) 363-6992",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.7884951,
"longitude": -96.80921389999999,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/58706121.jpg",
"http://cdn.rechat.co/58706122.jpg",
"http://cdn.rechat.co/58706123.jpg",
"http://cdn.rechat.co/58706124.jpg",
"http://cdn.rechat.co/58706125.jpg",
"http://cdn.rechat.co/58706126.jpg",
"http://cdn.rechat.co/58706127.jpg",
"http://cdn.rechat.co/58706128.jpg",
"http://cdn.rechat.co/58706129.jpg",
"http://cdn.rechat.co/58706130.jpg",
"http://cdn.rechat.co/58706131.jpg",
"http://cdn.rechat.co/58706132.jpg",
"http://cdn.rechat.co/58706133.jpg",
"http://cdn.rechat.co/58706134.jpg",
"http://cdn.rechat.co/58706135.jpg",
"http://cdn.rechat.co/58706136.jpg",
"http://cdn.rechat.co/58706137.jpg",
"http://cdn.rechat.co/58706138.jpg",
"http://cdn.rechat.co/58706139.jpg",
"http://cdn.rechat.co/58706140.jpg",
"http://cdn.rechat.co/58706141.jpg",
"http://cdn.rechat.co/58706142.jpg",
"http://cdn.rechat.co/58706143.jpg",
"http://cdn.rechat.co/58706290.jpg",
"http://cdn.rechat.co/58706291.jpg",
"http://cdn.rechat.co/58706292.jpg",
"http://cdn.rechat.co/58706293.jpg",
"http://cdn.rechat.co/58706294.jpg"
],
"address": {
"type": "compact_address",
"street_number": "2430",
"street_name": "Victory Park",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Lane",
"unit_number": "2301",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1450724161.093733,
"updated_at": 1453478563.084921,
"street_address": "2430 Victory Park Lane Unit 2301"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": null,
"full_bathroom_count": 1,
"square_meters": 76.644370122631,
"bedroom_count": 1,
"bathroom_count": 1,
"year_built": 2006,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 6669.163879598663,
"lot_size_area": 1.648,
"description": "W Dallas North Tower condo on the 23rd floor.Enjoy a wall of windows with western sunset views.Walk into this open plan with a long hallway that is perfect to display art work.Home features limestone floors,window treatments,gas cooktop,Sub Zero,private terrace and spa like bathroom with soaking tub and separate shower.All the W Hotel amenities.Washer and Dryer included.Storage unit can be purchased separately.Walk to Perot Museum and Katy Trail.",
"created_at": 1450724163.699405,
"updated_at": 1453478566.449042
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/58706121.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/7e84d768-a814-11e5-8e1e-f23c91c841bd",
"dom": 3798,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$399,900",
"text_no_label": "399,900",
"value": 399900
},
"original_price": {
"type": "formatted_attribute",
"text": "$399,900",
"text_no_label": "399,900",
"value": 399900
},
"area": {
"type": "formatted_attribute",
"text": "825 SQFT",
"text_no_label": "825",
"value": 825
},
"square_feet": {
"type": "formatted_attribute",
"text": "825 SQFT",
"text_no_label": "825",
"value": 825
},
"square_meters": {
"type": "formatted_attribute",
"text": "77 SQM",
"text_no_label": "77",
"value": 77
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "71,786.88 SQFT",
"text_no_label": "71,786.88",
"value": 71786.88
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "1.65 Acres",
"text_no_label": "1.65",
"value": 1.65
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "1.65 Acres",
"text_no_label": "1.65",
"value": 1.65
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "6,669.23 SQM",
"text_no_label": "6,669.23",
"value": 6669.23
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "1 Bedroom",
"text_no_label": "1",
"value": 1
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "1 Bathroom",
"text_no_label": "1",
"value": "1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "1 Bathroom",
"text_no_label": "1",
"value": "1"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "2430 Victory Park Lane Unit 2301",
"text_no_label": "2430 Victory Park Lane Unit 2301",
"value": "2430 Victory Park Lane Unit 2301"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Steven Rigely of Rogers Healy and Associates ([email protected] | (469) 363-6992)",
"text_no_label": "Listing courtesy of Steven Rigely of Rogers Healy and Associates ([email protected] | (469) 363-6992)",
"value": "Listing courtesy of Steven Rigely of Rogers Healy and Associates ([email protected] | (469) 363-6992)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Steven Rigely | Rogers Healy and Associates",
"text_no_label": "Steven Rigely | Rogers Healy and Associates",
"value": "Steven Rigely | Rogers Healy and Associates"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(469) 363-6992",
"text_no_label": "(469) 363-6992",
"value": "(469) 363-6992"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Steven Rigely",
"text_no_label": "Steven Rigely",
"value": "Steven Rigely"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(469) 363-6992",
"text_no_label": "(469) 363-6992",
"value": "(469) 363-6992"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "52f2ba0a-af4b-11e5-a878-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1451517375.370985,
"updated_at": 1455080722.878654,
"deleted_at": null,
"close_date": null,
"price": 695000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13293473",
"list_office_name": "Dave Perry Miller Real Estate",
"selling_office_name": "",
"list_agent_mls_id": "0407068",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Lance Hancock",
"list_agent_direct_work_phone": "(214) 532-7331",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.819992,
"longitude": -96.8060579,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59594034.jpg",
"http://cdn.rechat.co/59594035.jpg",
"http://cdn.rechat.co/59594036.jpg",
"http://cdn.rechat.co/59594037.jpg",
"http://cdn.rechat.co/59594038.jpg",
"http://cdn.rechat.co/59594039.jpg",
"http://cdn.rechat.co/59594040.jpg",
"http://cdn.rechat.co/59594041.jpg",
"http://cdn.rechat.co/59594042.jpg",
"http://cdn.rechat.co/59594043.jpg",
"http://cdn.rechat.co/59594044.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4123",
"street_name": "Wycliff",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1451517354.78096,
"updated_at": 1455080714.076355,
"street_address": "4123 Wycliff Avenue"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Townhouse",
"half_bathroom_count": 1,
"full_bathroom_count": 3,
"square_meters": 313.08063916759573,
"bedroom_count": 3,
"bathroom_count": 3.1,
"year_built": 1998,
"number_of_units": null,
"lot_size_dimensions": "Townhm",
"lot_square_meters": 331.83946488294316,
"lot_size_area": 0.082,
"description": "Fabulous finish out w hardwood floors down, spacious room sizes, lovely back yard and patio area. Kitchen is well equipped with granite, center island, and quiet breakfast area. Master bedroom has private study loft. 3rd floor has gameroom den, br, and bath. Lease for current tenant expires on March 31st, 2016.",
"created_at": 1451517369.608605,
"updated_at": 1455080716.930021
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59594034.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/52f2ba0a-af4b-11e5-a878-f23c91c841bd",
"dom": 3788,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$695,000",
"text_no_label": "695,000",
"value": 695000
},
"original_price": {
"type": "formatted_attribute",
"text": "$695,000",
"text_no_label": "695,000",
"value": 695000
},
"area": {
"type": "formatted_attribute",
"text": "3,370 SQFT",
"text_no_label": "3,370",
"value": 3370
},
"square_feet": {
"type": "formatted_attribute",
"text": "3,370 SQFT",
"text_no_label": "3,370",
"value": 3370
},
"square_meters": {
"type": "formatted_attribute",
"text": "313 SQM",
"text_no_label": "313",
"value": 313
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "3,571.92 SQFT",
"text_no_label": "3,571.92",
"value": 3571.92
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.08 Acres",
"text_no_label": "0.08",
"value": 0.08
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.08 Acres",
"text_no_label": "0.08",
"value": 0.08
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "331.84 SQM",
"text_no_label": "331.84",
"value": 331.84
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3.1 Bathrooms",
"text_no_label": "3.1",
"value": "3.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "4 Bathrooms",
"text_no_label": "4",
"value": "4"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4123 Wycliff Avenue",
"text_no_label": "4123 Wycliff Avenue",
"value": "4123 Wycliff Avenue"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Lance Hancock of Dave Perry Miller Real Estate ([email protected] | (214) 532-7331)",
"text_no_label": "Listing courtesy of Lance Hancock of Dave Perry Miller Real Estate ([email protected] | (214) 532-7331)",
"value": "Listing courtesy of Lance Hancock of Dave Perry Miller Real Estate ([email protected] | (214) 532-7331)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Lance Hancock | Dave Perry Miller Real Estate",
"text_no_label": "Lance Hancock | Dave Perry Miller Real Estate",
"value": "Lance Hancock | Dave Perry Miller Real Estate"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 532-7331",
"text_no_label": "(214) 532-7331",
"value": "(214) 532-7331"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Lance Hancock",
"text_no_label": "Lance Hancock",
"value": "Lance Hancock"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 532-7331",
"text_no_label": "(214) 532-7331",
"value": "(214) 532-7331"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "58a718e4-9f54-11e5-a0f8-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1449762031.807568,
"updated_at": 1450043794.634125,
"deleted_at": null,
"close_date": null,
"price": 999000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13286938",
"list_office_name": "Briggs Freeman Sotheby's Int'l",
"selling_office_name": "",
"list_agent_mls_id": "0398556",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Martin Stevenson",
"list_agent_direct_work_phone": "(214) 750-9300",
"co_list_agent_full_name": "Daniel Mahoney",
"co_list_agent_mls_id": "0118982",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.7884951,
"longitude": -96.80921389999999,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/58602038.jpg",
"http://cdn.rechat.co/58602039.jpg",
"http://cdn.rechat.co/58602040.jpg",
"http://cdn.rechat.co/58602041.jpg",
"http://cdn.rechat.co/58602042.jpg",
"http://cdn.rechat.co/58602043.jpg",
"http://cdn.rechat.co/58602044.jpg",
"http://cdn.rechat.co/58602045.jpg",
"http://cdn.rechat.co/58602046.jpg",
"http://cdn.rechat.co/58602047.jpg",
"http://cdn.rechat.co/58602048.jpg",
"http://cdn.rechat.co/58602049.jpg",
"http://cdn.rechat.co/58602050.jpg"
],
"address": {
"type": "compact_address",
"street_number": "2430",
"street_name": "Victory Park",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Lane",
"unit_number": "1908",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1449762021.189599,
"updated_at": 1450043793.237778,
"street_address": "2430 Victory Park Lane Unit 1908"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 191.56447417316983,
"bedroom_count": 2,
"bathroom_count": 2.1,
"year_built": 2004,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 6632.742474916388,
"lot_size_area": 1.639,
"description": "WOW is only a start. 50' long x 8' balcony faces center of Downtown and 180 degree view, LR and DR together is 37' long next to balcony, 20' Kitchen overlooks DR, 14' Bar - Serving Bar. Top appliances include SubZero Ref-Frz, Miele dishwasher, Thermador ovens, micro convection, 12 bottle wine cooler, Niles intercom and sound, marble and carpet floors, granite tops, 2 attached Samsung TV, Sexy Bath. HOTEL SERVES FOOD - DRINKS TO YOUR DOOR !!",
"created_at": 1449762029.949647,
"updated_at": 1450043793.769823
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/58602038.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/58a718e4-9f54-11e5-a0f8-f23c91c841bd",
"dom": 3809,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$999,000",
"text_no_label": "999,000",
"value": 999000
},
"original_price": {
"type": "formatted_attribute",
"text": "$999,000",
"text_no_label": "999,000",
"value": 999000
},
"area": {
"type": "formatted_attribute",
"text": "2,062 SQFT",
"text_no_label": "2,062",
"value": 2062
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,062 SQFT",
"text_no_label": "2,062",
"value": 2062
},
"square_meters": {
"type": "formatted_attribute",
"text": "192 SQM",
"text_no_label": "192",
"value": 192
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "71,394.84 SQFT",
"text_no_label": "71,394.84",
"value": 71394.84
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "1.64 Acres",
"text_no_label": "1.64",
"value": 1.64
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "1.64 Acres",
"text_no_label": "1.64",
"value": 1.64
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "6,632.8 SQM",
"text_no_label": "6,632.8",
"value": 6632.8
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "2430 Victory Park Lane Unit 1908",
"text_no_label": "2430 Victory Park Lane Unit 1908",
"value": "2430 Victory Park Lane Unit 1908"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Martin Stevenson of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 750-9300)\nDaniel Mahoney",
"text_no_label": "Listing courtesy of Martin Stevenson of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 750-9300)\nDaniel Mahoney",
"value": "Listing courtesy of Martin Stevenson of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 750-9300)\nDaniel Mahoney"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Martin Stevenson | Briggs Freeman Sotheby's Int'l",
"text_no_label": "Martin Stevenson | Briggs Freeman Sotheby's Int'l",
"value": "Martin Stevenson | Briggs Freeman Sotheby's Int'l"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 750-9300",
"text_no_label": "(214) 750-9300",
"value": "(214) 750-9300"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Martin Stevenson",
"text_no_label": "Martin Stevenson",
"value": "Martin Stevenson"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 750-9300",
"text_no_label": "(214) 750-9300",
"value": "(214) 750-9300"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "Daniel Mahoney",
"text_no_label": "Daniel Mahoney",
"value": "Daniel Mahoney"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "a24c374a-b88b-11e5-9643-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1452534556.752886,
"updated_at": 1453478668.156848,
"deleted_at": null,
"close_date": null,
"price": 550000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13298916",
"list_office_name": "Briggs Freeman Sotheby's Int'l",
"selling_office_name": "",
"list_agent_mls_id": "0518219",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Michelle Wood",
"list_agent_direct_work_phone": "(214) 564-0234",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.820951,
"longitude": -96.81188499999999,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59002876.jpg",
"http://cdn.rechat.co/59002877.jpg",
"http://cdn.rechat.co/59002878.jpg",
"http://cdn.rechat.co/59002879.jpg",
"http://cdn.rechat.co/59002880.jpg",
"http://cdn.rechat.co/59002881.jpg",
"http://cdn.rechat.co/59002882.jpg",
"http://cdn.rechat.co/59002883.jpg",
"http://cdn.rechat.co/59002884.jpg",
"http://cdn.rechat.co/59002885.jpg",
"http://cdn.rechat.co/59002886.jpg",
"http://cdn.rechat.co/59002887.jpg",
"http://cdn.rechat.co/59002888.jpg",
"http://cdn.rechat.co/59002889.jpg",
"http://cdn.rechat.co/59002890.jpg",
"http://cdn.rechat.co/59002891.jpg",
"http://cdn.rechat.co/59002892.jpg",
"http://cdn.rechat.co/59002893.jpg",
"http://cdn.rechat.co/59002894.jpg",
"http://cdn.rechat.co/59002895.jpg",
"http://cdn.rechat.co/59002896.jpg",
"http://cdn.rechat.co/59002897.jpg",
"http://cdn.rechat.co/59002898.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4502",
"street_name": "Holland",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "104",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1452534553.534434,
"updated_at": 1453478657.134403,
"street_address": "4502 Holland Avenue Unit 104"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 2,
"full_bathroom_count": 3,
"square_meters": 240.0594574507618,
"bedroom_count": 3,
"bathroom_count": 3.2,
"year_built": 2006,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 0,
"lot_size_area": null,
"description": "Lrg int unit in heart of Oak Lawn, 1 blk frm Highland Park. French drs lead to 1st flr patio w encl yard. 3 patios & rooftop balc w dtown views. Oak hardwood floors throughout; pre-wired for home theater. Lrg kitch w walkin pantry feat granite counters & SS appl, dbl ovens & wine cooler. Master ste feat bay windows, lrg walkin closet, and bath w glass-enclosed shower w travertine marble. Top flr is 2nd LA or 4th BR w half bath & access to**",
"created_at": 1452534556.157842,
"updated_at": 1453478661.65906
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59002876.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/a24c374a-b88b-11e5-9643-f23c91c841bd",
"dom": 3777,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$550,000",
"text_no_label": "550,000",
"value": 550000
},
"original_price": {
"type": "formatted_attribute",
"text": "$550,000",
"text_no_label": "550,000",
"value": 550000
},
"area": {
"type": "formatted_attribute",
"text": "2,584 SQFT",
"text_no_label": "2,584",
"value": 2584
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,584 SQFT",
"text_no_label": "2,584",
"value": 2584
},
"square_meters": {
"type": "formatted_attribute",
"text": "240 SQM",
"text_no_label": "240",
"value": 240
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_area": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3.2 Bathrooms",
"text_no_label": "3.2",
"value": "3.2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "5 Bathrooms",
"text_no_label": "5",
"value": "5"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4502 Holland Avenue Unit 104",
"text_no_label": "4502 Holland Avenue Unit 104",
"value": "4502 Holland Avenue Unit 104"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)",
"text_no_label": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)",
"value": "Listing courtesy of Michelle Wood of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 564-0234)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Michelle Wood | Briggs Freeman Sotheby's Int'l",
"text_no_label": "Michelle Wood | Briggs Freeman Sotheby's Int'l",
"value": "Michelle Wood | Briggs Freeman Sotheby's Int'l"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 564-0234",
"text_no_label": "(214) 564-0234",
"value": "(214) 564-0234"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Michelle Wood",
"text_no_label": "Michelle Wood",
"value": "Michelle Wood"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 564-0234",
"text_no_label": "(214) 564-0234",
"value": "(214) 564-0234"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "8e3c7b1c-be11-11e5-aac7-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1453141831.47058,
"updated_at": 1453187048.643563,
"deleted_at": null,
"close_date": null,
"price": 575000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13302308",
"list_office_name": "Dave Perry Miller Real Estate",
"selling_office_name": "",
"list_agent_mls_id": "0624050",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Lesli Levine",
"list_agent_direct_work_phone": "(214) 983-6465",
"co_list_agent_full_name": "Lindsey Bradley",
"co_list_agent_mls_id": "0620202",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.8198,
"longitude": -96.8123449,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59138813.jpg",
"http://cdn.rechat.co/59138814.jpg",
"http://cdn.rechat.co/59138815.jpg",
"http://cdn.rechat.co/59138816.jpg",
"http://cdn.rechat.co/59138817.jpg",
"http://cdn.rechat.co/59138818.jpg",
"http://cdn.rechat.co/59138819.jpg",
"http://cdn.rechat.co/59138820.jpg",
"http://cdn.rechat.co/59138821.jpg",
"http://cdn.rechat.co/59138822.jpg",
"http://cdn.rechat.co/59138823.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4432",
"street_name": "Bowser",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "C",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1453141829.8946,
"updated_at": 1453187040.151129,
"street_address": "4432 Bowser Avenue Unit C"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Townhouse",
"half_bathroom_count": 1,
"full_bathroom_count": 3,
"square_meters": 170.3827573392791,
"bedroom_count": 3,
"bathroom_count": 3.1,
"year_built": 2008,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 744.6153846153846,
"lot_size_area": 0.184,
"description": "Updated 3 story townhome in desirable North Oak Lawn area. 3 bedrooms and 3.5 bathroom. Property features updated open kitchen, hardwoods throughout, private patio and attached 2-car garage. Upstairs master includes fire place, updated master bath and walk-in closet. Walking distance to restaurants, grocery store and more.",
"created_at": 1453141831.146083,
"updated_at": 1453187042.56923
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59138813.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/8e3c7b1c-be11-11e5-aac7-f23c91c841bd",
"dom": 3770,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$575,000",
"text_no_label": "575,000",
"value": 575000
},
"original_price": {
"type": "formatted_attribute",
"text": "$575,000",
"text_no_label": "575,000",
"value": 575000
},
"area": {
"type": "formatted_attribute",
"text": "1,834 SQFT",
"text_no_label": "1,834",
"value": 1834
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,834 SQFT",
"text_no_label": "1,834",
"value": 1834
},
"square_meters": {
"type": "formatted_attribute",
"text": "170 SQM",
"text_no_label": "170",
"value": 170
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "8,015.04 SQFT",
"text_no_label": "8,015.04",
"value": 8015.04
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.18 Acres",
"text_no_label": "0.18",
"value": 0.18
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.18 Acres",
"text_no_label": "0.18",
"value": 0.18
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "744.62 SQM",
"text_no_label": "744.62",
"value": 744.62
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3.1 Bathrooms",
"text_no_label": "3.1",
"value": "3.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "4 Bathrooms",
"text_no_label": "4",
"value": "4"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4432 Bowser Avenue Unit C",
"text_no_label": "4432 Bowser Avenue Unit C",
"value": "4432 Bowser Avenue Unit C"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Lesli Levine of Dave Perry Miller Real Estate ([email protected] | (214) 983-6465)\nLindsey Bradley",
"text_no_label": "Listing courtesy of Lesli Levine of Dave Perry Miller Real Estate ([email protected] | (214) 983-6465)\nLindsey Bradley",
"value": "Listing courtesy of Lesli Levine of Dave Perry Miller Real Estate ([email protected] | (214) 983-6465)\nLindsey Bradley"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Lesli Levine | Dave Perry Miller Real Estate",
"text_no_label": "Lesli Levine | Dave Perry Miller Real Estate",
"value": "Lesli Levine | Dave Perry Miller Real Estate"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 983-6465",
"text_no_label": "(214) 983-6465",
"value": "(214) 983-6465"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Lesli Levine",
"text_no_label": "Lesli Levine",
"value": "Lesli Levine"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 983-6465",
"text_no_label": "(214) 983-6465",
"value": "(214) 983-6465"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "Lindsey Bradley",
"text_no_label": "Lindsey Bradley",
"value": "Lindsey Bradley"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "839acca8-ba34-11e5-849e-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1452717041.36896,
"updated_at": 1455797653.308897,
"deleted_at": null,
"close_date": null,
"price": 479000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13301054",
"list_office_name": "Briggs Freeman Sotheby's Int'l",
"selling_office_name": "",
"list_agent_mls_id": "0555105",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Diane Duvall-Rogers",
"list_agent_direct_work_phone": "(214) 725-1451",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.818763,
"longitude": -96.809533,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59052155.jpg",
"http://cdn.rechat.co/59052156.jpg",
"http://cdn.rechat.co/59052157.jpg",
"http://cdn.rechat.co/59052158.jpg",
"http://cdn.rechat.co/59052159.jpg",
"http://cdn.rechat.co/59052160.jpg",
"http://cdn.rechat.co/59052161.jpg",
"http://cdn.rechat.co/59052162.jpg",
"http://cdn.rechat.co/59052163.jpg",
"http://cdn.rechat.co/59052164.jpg",
"http://cdn.rechat.co/59052165.jpg",
"http://cdn.rechat.co/59052166.jpg",
"http://cdn.rechat.co/59052167.jpg",
"http://cdn.rechat.co/59052168.jpg",
"http://cdn.rechat.co/59052169.jpg",
"http://cdn.rechat.co/59052170.jpg",
"http://cdn.rechat.co/59052171.jpg",
"http://cdn.rechat.co/59052172.jpg",
"http://cdn.rechat.co/59052173.jpg",
"http://cdn.rechat.co/59052174.jpg",
"http://cdn.rechat.co/59052175.jpg",
"http://cdn.rechat.co/59052176.jpg",
"http://cdn.rechat.co/59052177.jpg",
"http://cdn.rechat.co/59052178.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4308",
"street_name": "Holland",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1452717039.48485,
"updated_at": 1455797643.415009,
"street_address": "4308 Holland Avenue"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Townhouse",
"half_bathroom_count": 1,
"full_bathroom_count": 3,
"square_meters": 209.4017094017094,
"bedroom_count": 3,
"bathroom_count": 3.1,
"year_built": 2005,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 0,
"lot_size_area": null,
"description": "Ideally located just outside HP. Modern-traditional end-unit townhome with a wonderful rare iron gated front yard. Beautifully maintained, great curb appeal. 3 BR with 3.5 baths, spacious Master BR,BA, enormous closet. Kitchen includes 42-inch maple cabinets, dark granite countertops, SS appls. Wood floors throughout the kitchen, dining, living areas. Gracious, large balcony with a storage closet is located on the 2nd flr with access to kitchen.",
"created_at": 1452717041.03213,
"updated_at": 1455797646.387414
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59052155.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/839acca8-ba34-11e5-849e-f23c91c841bd",
"dom": 3774,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$479,000",
"text_no_label": "479,000",
"value": 479000
},
"original_price": {
"type": "formatted_attribute",
"text": "$479,000",
"text_no_label": "479,000",
"value": 479000
},
"area": {
"type": "formatted_attribute",
"text": "2,254 SQFT",
"text_no_label": "2,254",
"value": 2254
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,254 SQFT",
"text_no_label": "2,254",
"value": 2254
},
"square_meters": {
"type": "formatted_attribute",
"text": "209 SQM",
"text_no_label": "209",
"value": 209
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_area": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3.1 Bathrooms",
"text_no_label": "3.1",
"value": "3.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "4 Bathrooms",
"text_no_label": "4",
"value": "4"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4308 Holland Avenue",
"text_no_label": "4308 Holland Avenue",
"value": "4308 Holland Avenue"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Diane Duvall-Rogers of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 725-1451)",
"text_no_label": "Listing courtesy of Diane Duvall-Rogers of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 725-1451)",
"value": "Listing courtesy of Diane Duvall-Rogers of Briggs Freeman Sotheby's Int'l ([email protected] | (214) 725-1451)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Diane Duvall-Rogers | Briggs Freeman Sotheby's Int'l",
"text_no_label": "Diane Duvall-Rogers | Briggs Freeman Sotheby's Int'l",
"value": "Diane Duvall-Rogers | Briggs Freeman Sotheby's Int'l"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 725-1451",
"text_no_label": "(214) 725-1451",
"value": "(214) 725-1451"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Diane Duvall-Rogers",
"text_no_label": "Diane Duvall-Rogers",
"value": "Diane Duvall-Rogers"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 725-1451",
"text_no_label": "(214) 725-1451",
"value": "(214) 725-1451"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "ff96cf30-d36d-11e5-89e7-f23c91c841bd",
"mls": "NTREIS",
"created_at": 1455490509.762476,
"updated_at": 1455602727.332506,
"deleted_at": null,
"close_date": null,
"price": 649000,
"status": "Active",
"original_mls_status": null,
"currency": "USD",
"mls_number": "13320030",
"list_office_name": "Allie Beth Allman & Assoc.",
"selling_office_name": "",
"list_agent_mls_id": "0203647",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Kristine Graves",
"list_agent_direct_work_phone": "(214) 793-1935",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": "",
"selling_agent_mls_id": "",
"selling_agent_email": "",
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": "",
"co_selling_agent_mls_id": "",
"favorited_in": null,
"location": {
"latitude": 32.819487,
"longitude": -96.80943300000001,
"type": "location"
},
"gallery_image_urls": [
"http://cdn.rechat.co/59702624.jpg",
"http://cdn.rechat.co/59702625.jpg",
"http://cdn.rechat.co/59702626.jpg",
"http://cdn.rechat.co/59702627.jpg",
"http://cdn.rechat.co/59702628.jpg",
"http://cdn.rechat.co/59702629.jpg",
"http://cdn.rechat.co/59702630.jpg",
"http://cdn.rechat.co/59702631.jpg",
"http://cdn.rechat.co/59702632.jpg",
"http://cdn.rechat.co/59702633.jpg",
"http://cdn.rechat.co/59702634.jpg",
"http://cdn.rechat.co/59702635.jpg",
"http://cdn.rechat.co/59702636.jpg"
],
"address": {
"type": "compact_address",
"street_number": "4323",
"street_name": "Gilbert",
"city": "Dallas",
"state": "TX",
"postal_code": "75219",
"neighborhood": "",
"street_suffix": "Avenue",
"unit_number": "4",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "",
"street_dir_suffix": "",
"created_at": 1455490509.189391,
"updated_at": 1455602717.136887,
"street_address": "4323 Gilbert Avenue Unit 4"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Townhouse",
"half_bathroom_count": null,
"full_bathroom_count": 3,
"square_meters": 268.7662578966927,
"bedroom_count": 3,
"bathroom_count": 3,
"year_built": 2005,
"number_of_units": null,
"lot_size_dimensions": "",
"lot_square_meters": 0,
"lot_size_area": null,
"description": "Luxury Tuscany townhome in SOHIP neighborhood is one of five with manicured grounds, stucco walls, & red tile roofs. Plantation shutters, hdwd floors, tankless hot water heater & an abundance of storage contributes to the high end finish out of this home. Gourmet kitchen with 2 Jenn-Aire gas ranges, built in fridge freezer, & separate pantry are a cook's dream. Each floor boasts one bedroom each having their own private bath.",
"created_at": 1455490509.704087,
"updated_at": 1455602720.357876
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": "http://cdn.rechat.co/59702624.jpg",
"_url": "https://irish.rechat.com/dashboard/mls/ff96cf30-d36d-11e5-89e7-f23c91c841bd",
"dom": 3742,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$649,000",
"text_no_label": "649,000",
"value": 649000
},
"original_price": {
"type": "formatted_attribute",
"text": "$649,000",
"text_no_label": "649,000",
"value": 649000
},
"area": {
"type": "formatted_attribute",
"text": "2,893 SQFT",
"text_no_label": "2,893",
"value": 2893
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,893 SQFT",
"text_no_label": "2,893",
"value": 2893
},
"square_meters": {
"type": "formatted_attribute",
"text": "269 SQM",
"text_no_label": "269",
"value": 269
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_area": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4323 Gilbert Avenue Unit 4",
"text_no_label": "4323 Gilbert Avenue Unit 4",
"value": "4323 Gilbert Avenue Unit 4"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, TX 75219",
"text_no_label": "Dallas, TX 75219",
"value": "Dallas, TX 75219"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Kristine Graves of Allie Beth Allman & Assoc. ([email protected] | (214) 793-1935)",
"text_no_label": "Listing courtesy of Kristine Graves of Allie Beth Allman & Assoc. ([email protected] | (214) 793-1935)",
"value": "Listing courtesy of Kristine Graves of Allie Beth Allman & Assoc. ([email protected] | (214) 793-1935)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Kristine Graves | Allie Beth Allman & Assoc.",
"text_no_label": "Kristine Graves | Allie Beth Allman & Assoc.",
"value": "Kristine Graves | Allie Beth Allman & Assoc."
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 793-1935",
"text_no_label": "(214) 793-1935",
"value": "(214) 793-1935"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Kristine Graves",
"text_no_label": "Kristine Graves",
"value": "Kristine Graves"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 793-1935",
"text_no_label": "(214) 793-1935",
"value": "(214) 793-1935"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "4d3aa6a2-379e-11ee-bf0d-0e4bb9531bd9",
"mls": "NTREIS",
"created_at": 1691686353.511394,
"updated_at": 1698778386.218258,
"deleted_at": null,
"close_date": null,
"price": 2440000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "20401024",
"list_office_name": "At Properties Christie's Int'l",
"selling_office_name": null,
"list_agent_mls_id": "0611305",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Piper Young",
"list_agent_direct_work_phone": "214-727-7473",
"co_list_agent_full_name": null,
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": null,
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 32.85481,
"longitude": -96.840389,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "8427",
"street_name": "Midway",
"city": "Dallas",
"state": "Texas",
"postal_code": "75209",
"neighborhood": null,
"street_suffix": "Road",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1691686353.461987,
"updated_at": 1698778386.085168,
"street_address": "8427 Midway Road"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 1,
"full_bathroom_count": 4,
"square_meters": 479.65885970698355,
"bedroom_count": 4,
"bathroom_count": 4.1,
"year_built": 2023,
"number_of_units": null,
"lot_size_dimensions": "60x150",
"lot_square_meters": 837.700090116036,
"lot_size_area": 0.207,
"description": "Introducing a masterpiece of modern luxury living in prestigious Bluffview. This 4 bedroom and 4.5 bathroom new construction exudes sophistication and elegance throughout the open-concept floor plan. The kitchen features top-notch appliances and a sleek design that harmoniously complements the surrounding space. In the den, discover the convenience of a well-equipped wet bar, complete with an ice maker and wine cooler. Positioned at the front of the house, a stylish study offers a tranquil haven for work or contemplation. The outdoor living experience is equally inviting, with a serene backyard patio offering a shaded oasis for relaxation. This property not only offers a luxury living but also convenient access to the finest dining, shopping, and entertainment the area has to offer.",
"created_at": 1691686353.488615,
"updated_at": 1698778386.150575
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/4d3aa6a2-379e-11ee-bf0d-0e4bb9531bd9",
"dom": 1009,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$2,440,000",
"text_no_label": "2,440,000",
"value": 2440000
},
"original_price": {
"type": "formatted_attribute",
"text": "$2,440,000",
"text_no_label": "2,440,000",
"value": 2440000
},
"area": {
"type": "formatted_attribute",
"text": "5,163 SQFT",
"text_no_label": "5,163",
"value": 5163
},
"square_feet": {
"type": "formatted_attribute",
"text": "5,163 SQFT",
"text_no_label": "5,163",
"value": 5163
},
"square_meters": {
"type": "formatted_attribute",
"text": "480 SQM",
"text_no_label": "480",
"value": 480
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "9,016.92 SQFT",
"text_no_label": "9,016.92",
"value": 9016.92
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.21 Acres",
"text_no_label": "0.21",
"value": 0.21
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.21 Acres",
"text_no_label": "0.21",
"value": 0.21
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "837.7 SQM",
"text_no_label": "837.7",
"value": 837.7
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "4 Bedrooms",
"text_no_label": "4",
"value": 4
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "4.1 Bathrooms",
"text_no_label": "4.1",
"value": "4.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "5 Bathrooms",
"text_no_label": "5",
"value": "5"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "8427 Midway Road",
"text_no_label": "8427 Midway Road",
"value": "8427 Midway Road"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Dallas, Texas 75209",
"text_no_label": "Dallas, Texas 75209",
"value": "Dallas, Texas 75209"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Dallas",
"text_no_label": "Dallas",
"value": "Dallas"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Piper Young of At Properties Christie's Int'l ([email protected] | (214) 727-7473)",
"text_no_label": "Listing courtesy of Piper Young of At Properties Christie's Int'l ([email protected] | (214) 727-7473)",
"value": "Listing courtesy of Piper Young of At Properties Christie's Int'l ([email protected] | (214) 727-7473)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Piper Young | At Properties Christie's Int'l",
"text_no_label": "Piper Young | At Properties Christie's Int'l",
"value": "Piper Young | At Properties Christie's Int'l"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 727-7473",
"text_no_label": "214-727-7473",
"value": "214-727-7473"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Piper Young",
"text_no_label": "Piper Young",
"value": "Piper Young"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 727-7473",
"text_no_label": "214-727-7473",
"value": "214-727-7473"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "f3872a89-0713-4c58-bc00-235bf3ab10f8",
"mls": "NTREIS",
"created_at": 1695390660.204499,
"updated_at": 1697904559.953265,
"deleted_at": null,
"close_date": null,
"price": 189999,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "20437130",
"list_office_name": "Pinnacle Realty Advisors",
"selling_office_name": null,
"list_agent_mls_id": "CPER",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Cassie Person",
"list_agent_direct_work_phone": "318-210-2165",
"co_list_agent_full_name": null,
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": null,
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 32.540779,
"longitude": -93.753739,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "238",
"street_name": "Brookbriar",
"city": "Shreveport",
"state": "Louisiana",
"postal_code": "71107",
"neighborhood": null,
"street_suffix": "Drive",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1695390660.156555,
"updated_at": 1697904559.884121,
"street_address": "238 Brookbriar Drive"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 2,
"square_meters": 181.90432835682236,
"bedroom_count": 5,
"bathroom_count": 2,
"year_built": 1980,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 866.0281124871098,
"lot_size_area": 0.214,
"description": "5 bedrooms 2 bathrooms sets on a corner lot! New flooring and paint throughout. Kitchen has granite countertops and stainless appliances. Two living rooms one can be as an office or game room. Bathroom downstairs is a jack and jill making it great for access. Fenced in backyard.",
"created_at": 1695390660.191416,
"updated_at": 1697904559.916326
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/f3872a89-0713-4c58-bc00-235bf3ab10f8",
"dom": 966,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$189,999",
"text_no_label": "189,999",
"value": 189999
},
"original_price": {
"type": "formatted_attribute",
"text": "$189,999",
"text_no_label": "189,999",
"value": 189999
},
"area": {
"type": "formatted_attribute",
"text": "1,958 SQFT",
"text_no_label": "1,958",
"value": 1958
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,958 SQFT",
"text_no_label": "1,958",
"value": 1958
},
"square_meters": {
"type": "formatted_attribute",
"text": "182 SQM",
"text_no_label": "182",
"value": 182
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "9,321.84 SQFT",
"text_no_label": "9,321.84",
"value": 9321.84
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.21 Acres",
"text_no_label": "0.21",
"value": 0.21
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.21 Acres",
"text_no_label": "0.21",
"value": 0.21
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "866.03 SQM",
"text_no_label": "866.03",
"value": 866.03
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "5 Bedrooms",
"text_no_label": "5",
"value": 5
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "238 Brookbriar Drive",
"text_no_label": "238 Brookbriar Drive",
"value": "238 Brookbriar Drive"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Shreveport, Louisiana 71107",
"text_no_label": "Shreveport, Louisiana 71107",
"value": "Shreveport, Louisiana 71107"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Shreveport",
"text_no_label": "Shreveport",
"value": "Shreveport"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Cassie Person of Pinnacle Realty Advisors ([email protected] | (318) 210-2165)",
"text_no_label": "Listing courtesy of Cassie Person of Pinnacle Realty Advisors ([email protected] | (318) 210-2165)",
"value": "Listing courtesy of Cassie Person of Pinnacle Realty Advisors ([email protected] | (318) 210-2165)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Cassie Person | Pinnacle Realty Advisors",
"text_no_label": "Cassie Person | Pinnacle Realty Advisors",
"value": "Cassie Person | Pinnacle Realty Advisors"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(318) 210-2165",
"text_no_label": "318-210-2165",
"value": "318-210-2165"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Cassie Person",
"text_no_label": "Cassie Person",
"value": "Cassie Person"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(318) 210-2165",
"text_no_label": "318-210-2165",
"value": "318-210-2165"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "6ac26582-4e70-4f70-9128-c38e7e12db0a",
"mls": "NTREIS",
"created_at": 1700520770.38086,
"updated_at": 1700520770.38086,
"deleted_at": null,
"close_date": null,
"price": 1779000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "20479610",
"list_office_name": "Engel & Voelkers Dallas-FLMnd",
"selling_office_name": null,
"list_agent_mls_id": "0644028",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Chris Shortino",
"list_agent_direct_work_phone": "214-641-1890",
"co_list_agent_full_name": null,
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": null,
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 32.968945,
"longitude": -96.976808,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "109",
"street_name": "Moore",
"city": "Coppell",
"state": "Texas",
"postal_code": "75019",
"neighborhood": null,
"street_suffix": "Road",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": "S",
"street_dir_suffix": null,
"created_at": 1700520770.357435,
"updated_at": 1700520770.37068,
"street_address": "109 S Moore Road"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 2,
"full_bathroom_count": 4,
"square_meters": 455.5040459313074,
"bedroom_count": 5,
"bathroom_count": 4.2,
"year_built": 2023,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 1262.6204256821413,
"lot_size_area": 0.312,
"description": "European style meets an entertainer's paradise! This grand estate has multiple spaces for entertaining with soaring ceilings throughout the upstairs and downstairs. This home is within walking distance of Austin Elementary, daycares, and local activities in the heart of Coppell. It has 5 bedrooms and 6 bathrooms. The downstairs includes a primary bedroom with a full on-suite bathroom and huge walk in closet. A full guest bedroom with an en suite bathroom, and a large kitchen that opens up into the family room and dining. The upstairs features 3 bedrooms and 3 bathrooms, an incredible living space, fitness room, and media room. Off of the bonus room, there is a lounging balcony overlooking the backyard and a fast serve kitchen and bar. An enviable laundry, utility room with built in dog wash allows you to take care of the whole family! The 3 car garage is wired for electric vehicle charging and allows for bonus parking spaces for your guests. This home is a stunning masterpiece.",
"created_at": 1700520770.375752,
"updated_at": 1700520770.375752
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/6ac26582-4e70-4f70-9128-c38e7e12db0a",
"dom": 906,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$1,779,000",
"text_no_label": "1,779,000",
"value": 1779000
},
"original_price": {
"type": "formatted_attribute",
"text": "$1,779,000",
"text_no_label": "1,779,000",
"value": 1779000
},
"area": {
"type": "formatted_attribute",
"text": "4,903 SQFT",
"text_no_label": "4,903",
"value": 4903
},
"square_feet": {
"type": "formatted_attribute",
"text": "4,903 SQFT",
"text_no_label": "4,903",
"value": 4903
},
"square_meters": {
"type": "formatted_attribute",
"text": "456 SQM",
"text_no_label": "456",
"value": 456
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "13,590.72 SQFT",
"text_no_label": "13,590.72",
"value": 13590.72
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.31 Acres",
"text_no_label": "0.31",
"value": 0.31
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.31 Acres",
"text_no_label": "0.31",
"value": 0.31
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "1,262.62 SQM",
"text_no_label": "1,262.62",
"value": 1262.62
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "5 Bedrooms",
"text_no_label": "5",
"value": 5
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "4.2 Bathrooms",
"text_no_label": "4.2",
"value": "4.2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "6 Bathrooms",
"text_no_label": "6",
"value": "6"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "109 S Moore Road",
"text_no_label": "109 S Moore Road",
"value": "109 S Moore Road"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Coppell, Texas 75019",
"text_no_label": "Coppell, Texas 75019",
"value": "Coppell, Texas 75019"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Coppell",
"text_no_label": "Coppell",
"value": "Coppell"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Chris Shortino of Engel & Voelkers Dallas-FLMnd ([email protected] | (214) 641-1890)",
"text_no_label": "Listing courtesy of Chris Shortino of Engel & Voelkers Dallas-FLMnd ([email protected] | (214) 641-1890)",
"value": "Listing courtesy of Chris Shortino of Engel & Voelkers Dallas-FLMnd ([email protected] | (214) 641-1890)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Chris Shortino | Engel & Voelkers Dallas-FLMnd",
"text_no_label": "Chris Shortino | Engel & Voelkers Dallas-FLMnd",
"value": "Chris Shortino | Engel & Voelkers Dallas-FLMnd"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(214) 641-1890",
"text_no_label": "214-641-1890",
"value": "214-641-1890"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Chris Shortino",
"text_no_label": "Chris Shortino",
"value": "Chris Shortino"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(214) 641-1890",
"text_no_label": "214-641-1890",
"value": "214-641-1890"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "3202806c-d259-11ed-9a61-0e4bb9531bd9",
"mls": "NTREIS",
"created_at": 1680551605.130051,
"updated_at": 1700435291.863889,
"deleted_at": null,
"close_date": null,
"price": 409996,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "20294620",
"list_office_name": "HomesUSA.com",
"selling_office_name": null,
"list_agent_mls_id": "0096651",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Ben Caballero",
"list_agent_direct_work_phone": "888-872-6006",
"co_list_agent_full_name": "Ben Caballero",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": null,
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 32.891061,
"longitude": -97.557085,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "229",
"street_name": "Magnolia",
"city": "Azle",
"state": "Texas",
"postal_code": "76020",
"neighborhood": null,
"street_suffix": "Drive",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1680551605.093186,
"updated_at": 1700435291.825765,
"street_address": "229 Magnolia Drive"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 227.14815262126183,
"bedroom_count": 3,
"bathroom_count": 2.1,
"year_built": 2023,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 687.966257583218,
"lot_size_area": 0.17,
"description": "MLS# 20294620 - Built by Antares Homes - Ready Now! ~ - Game Room! - Wood Burning Tile Surround Fireplace! - Covered Patio! - Study! - Wood look Tile Flooring! Step inside from the large covered front porch and the foyer welcomes you into your home. The kitchen features ample storage and counter space, stainless steel appliances, large island, large corner walk-in pantry, white cabinets, and granite countertops, the chef of the family will certainly enjoy this space. Located at the rear of the home and tucked away from the living spaces is the all-inclusive master suite. A powder room, utility room, and access to the two-car garage complete the lower level. Complete with two additional bedrooms, full bathroom with dual sink vanity, and huge game room, the upper level offers the ultimate kid’s retreat!",
"created_at": 1680551605.117117,
"updated_at": 1700435291.84784
},
"user_listing_notification_setting": null,
"mls_display_name": "NTREIS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/3202806c-d259-11ed-9a61-0e4bb9531bd9",
"dom": 1137,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$409,996",
"text_no_label": "409,996",
"value": 409996
},
"original_price": {
"type": "formatted_attribute",
"text": "$409,996",
"text_no_label": "409,996",
"value": 409996
},
"area": {
"type": "formatted_attribute",
"text": "2,445 SQFT",
"text_no_label": "2,445",
"value": 2445
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,445 SQFT",
"text_no_label": "2,445",
"value": 2445
},
"square_meters": {
"type": "formatted_attribute",
"text": "227 SQM",
"text_no_label": "227",
"value": 227
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "7,405.2 SQFT",
"text_no_label": "7,405.2",
"value": 7405.2
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.17 Acres",
"text_no_label": "0.17",
"value": 0.17
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.17 Acres",
"text_no_label": "0.17",
"value": 0.17
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "687.97 SQM",
"text_no_label": "687.97",
"value": 687.97
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "229 Magnolia Drive",
"text_no_label": "229 Magnolia Drive",
"value": "229 Magnolia Drive"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Azle, Texas 76020",
"text_no_label": "Azle, Texas 76020",
"value": "Azle, Texas 76020"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Azle",
"text_no_label": "Azle",
"value": "Azle"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Ben Caballero of HomesUSA.com ([email protected] | (888) 872-6006)\nBen Caballero",
"text_no_label": "Listing courtesy of Ben Caballero of HomesUSA.com ([email protected] | (888) 872-6006)\nBen Caballero",
"value": "Listing courtesy of Ben Caballero of HomesUSA.com ([email protected] | (888) 872-6006)\nBen Caballero"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Ben Caballero | HomesUSA.com",
"text_no_label": "Ben Caballero | HomesUSA.com",
"value": "Ben Caballero | HomesUSA.com"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(888) 872-6006",
"text_no_label": "888-872-6006",
"value": "888-872-6006"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Ben Caballero",
"text_no_label": "Ben Caballero",
"value": "Ben Caballero"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(888) 872-6006",
"text_no_label": "888-872-6006",
"value": "888-872-6006"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "Ben Caballero",
"text_no_label": "Ben Caballero",
"value": "Ben Caballero"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "fef90368-fedb-11ec-ae42-0aa41e28002f",
"mls": "CRMLS",
"created_at": 1657298137.066792,
"updated_at": 1658281278.203369,
"deleted_at": 1662006693.013567,
"close_date": null,
"price": 579999,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "SW22148358",
"list_office_name": "Redfin Corporation",
"selling_office_name": null,
"list_agent_mls_id": "HMMAZZCA",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Carrie Mazzotta",
"list_agent_direct_work_phone": null,
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 33.657421,
"longitude": -117.164273,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "31904",
"street_name": "Copper",
"city": "Menifee",
"state": "CA",
"postal_code": "92584",
"neighborhood": null,
"street_suffix": "Terrace",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1657298136.806408,
"updated_at": 1658281278.023992,
"street_address": "31904 Copper Terrace"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 3,
"square_meters": 224.1750355199942,
"bedroom_count": 4,
"bathroom_count": 3,
"year_built": 2012,
"number_of_units": 1,
"lot_size_dimensions": null,
"lot_square_meters": 687.9470111999822,
"lot_size_area": 0.16999540863177226,
"description": "Welcome to this immaculate 4 bedroom, 3 bathroom home. Upon entry, you're greeted with gorgeous stone floors that reflects all the natural light from the light-catching windows. Continue to the spacious great room with a large open floor plan. The living room features a cozy fireplace and views of the backyard. The kitchen boats a large center island with ample storage. There's a bedroom and full bathroom on the first level, along with a laundry room. Upstairs is a loft that could be used a home office or play room. The oversized owners suite features a large closet and a spacious en-suite bathroom with a soaking tub. The secondary bedrooms are also spacious and share a generously sized bathroom. The backyard is the perfect for BBQs and outdoor entertaining. No HOA!",
"created_at": 1657298136.984789,
"updated_at": 1658281278.112337
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/fef90368-fedb-11ec-ae42-0aa41e28002f",
"dom": 1407,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$579,999",
"text_no_label": "579,999",
"value": 579999
},
"original_price": {
"type": "formatted_attribute",
"text": "$579,999",
"text_no_label": "579,999",
"value": 579999
},
"area": {
"type": "formatted_attribute",
"text": "2,413 SQFT",
"text_no_label": "2,413",
"value": 2413
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,413 SQFT",
"text_no_label": "2,413",
"value": 2413
},
"square_meters": {
"type": "formatted_attribute",
"text": "224 SQM",
"text_no_label": "224",
"value": 224
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "7,405 SQFT",
"text_no_label": "7,405",
"value": 7405
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.17 Acres",
"text_no_label": "0.17",
"value": 0.17
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.17 Acres",
"text_no_label": "0.17",
"value": 0.17
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "687.95 SQM",
"text_no_label": "687.95",
"value": 687.95
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "4 Bedrooms",
"text_no_label": "4",
"value": 4
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "31904 Copper Terrace",
"text_no_label": "31904 Copper Terrace",
"value": "31904 Copper Terrace"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Menifee, CA 92584",
"text_no_label": "Menifee, CA 92584",
"value": "Menifee, CA 92584"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Menifee",
"text_no_label": "Menifee",
"value": "Menifee"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Carrie Mazzotta of Redfin Corporation ([email protected])",
"text_no_label": "Listing courtesy of Carrie Mazzotta of Redfin Corporation ([email protected])",
"value": "Listing courtesy of Carrie Mazzotta of Redfin Corporation ([email protected])"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Carrie Mazzotta | Redfin Corporation",
"text_no_label": "Carrie Mazzotta | Redfin Corporation",
"value": "Carrie Mazzotta | Redfin Corporation"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Carrie Mazzotta",
"text_no_label": "Carrie Mazzotta",
"value": "Carrie Mazzotta"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "e8a75e72-64aa-11ed-b489-0e4bb9531bd9",
"mls": "CRMLS",
"created_at": 1668492072.885417,
"updated_at": 1673441445.99892,
"deleted_at": 1678729055.264288,
"close_date": null,
"price": 722888,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "MB22241710",
"list_office_name": "EXCELLENCE RE REAL ESTATE",
"selling_office_name": null,
"list_agent_mls_id": "M445190",
"list_agent_email": "[email protected]",
"list_agent_full_name": "CORINA PREECE",
"list_agent_direct_work_phone": "562-205-6828",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 33.893957,
"longitude": -117.232176,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "24712",
"street_name": "Hudson",
"city": "Moreno Valley",
"state": "CA",
"postal_code": "92551",
"neighborhood": null,
"street_suffix": "Street",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1668492072.801627,
"updated_at": 1673441445.144188,
"street_address": "24712 Hudson Street"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 3,
"square_meters": 273.8781619199929,
"bedroom_count": 5,
"bathroom_count": 3,
"year_built": 2021,
"number_of_units": 1,
"lot_size_dimensions": null,
"lot_square_meters": 509.48027135998683,
"lot_size_area": 0.12589531680440771,
"description": "Look no further, this well maintained home has been the pride and joy of its current owners. With over 2,948 sq.ft. of living space you have plenty of room to entertain family and friends. This spacious five-bedroom residence features a first-floor flex space perfect for working or schooling from home. Enjoy movie nights in the upstairs theater room or enjoy the lovely loft as a family room, play area or game room. Meritage Homes are known for their energy-efficient features, these homes help you live a healthier and quieter lifestyle while saving thousands on energy bills. A True Sense of Tranquility, Life Away from City Life. Convenient to nearby neighborhood parks, walking trails and schools. There’s an attached 2-Car Garage with a EV charging outlet. This beautiful home has so much more to offer - A Must See!",
"created_at": 1668492072.856802,
"updated_at": 1673441445.367906
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/e8a75e72-64aa-11ed-b489-0e4bb9531bd9",
"dom": 1277,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$722,888",
"text_no_label": "722,888",
"value": 722888
},
"original_price": {
"type": "formatted_attribute",
"text": "$722,888",
"text_no_label": "722,888",
"value": 722888
},
"area": {
"type": "formatted_attribute",
"text": "2,948 SQFT",
"text_no_label": "2,948",
"value": 2948
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,948 SQFT",
"text_no_label": "2,948",
"value": 2948
},
"square_meters": {
"type": "formatted_attribute",
"text": "274 SQM",
"text_no_label": "274",
"value": 274
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "5,484 SQFT",
"text_no_label": "5,484",
"value": 5484
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.13 Acres",
"text_no_label": "0.13",
"value": 0.13
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.13 Acres",
"text_no_label": "0.13",
"value": 0.13
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "509.48 SQM",
"text_no_label": "509.48",
"value": 509.48
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "5 Bedrooms",
"text_no_label": "5",
"value": 5
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "24712 Hudson Street",
"text_no_label": "24712 Hudson Street",
"value": "24712 Hudson Street"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Moreno Valley, CA 92551",
"text_no_label": "Moreno Valley, CA 92551",
"value": "Moreno Valley, CA 92551"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Moreno Valley",
"text_no_label": "Moreno Valley",
"value": "Moreno Valley"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of CORINA PREECE of EXCELLENCE RE REAL ESTATE ([email protected] | (562) 205-6828)",
"text_no_label": "Listing courtesy of CORINA PREECE of EXCELLENCE RE REAL ESTATE ([email protected] | (562) 205-6828)",
"value": "Listing courtesy of CORINA PREECE of EXCELLENCE RE REAL ESTATE ([email protected] | (562) 205-6828)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: CORINA PREECE | EXCELLENCE RE REAL ESTATE",
"text_no_label": "CORINA PREECE | EXCELLENCE RE REAL ESTATE",
"value": "CORINA PREECE | EXCELLENCE RE REAL ESTATE"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(562) 205-6828",
"text_no_label": "562-205-6828",
"value": "562-205-6828"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "CORINA PREECE",
"text_no_label": "CORINA PREECE",
"value": "CORINA PREECE"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(562) 205-6828",
"text_no_label": "562-205-6828",
"value": "562-205-6828"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "c31fa034-fae0-11ed-8506-0e4bb9531bd9",
"mls": "CRMLS",
"created_at": 1685007877.16015,
"updated_at": 1700327809.230836,
"deleted_at": null,
"close_date": null,
"price": 125000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "EV23086503",
"list_office_name": "RIGHT MOVE REALTY",
"selling_office_name": null,
"list_agent_mls_id": "EVELOLOR",
"list_agent_email": "[email protected]",
"list_agent_full_name": "LORENA VELOZ-MARTINEZ",
"list_agent_direct_work_phone": "909-841-2428",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 34.024094,
"longitude": -117.053562,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "12680",
"street_name": "4th",
"city": "Yucaipa",
"state": "CA",
"postal_code": "92399",
"neighborhood": null,
"street_suffix": "Street",
"unit_number": "42",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1685007877.084884,
"updated_at": 1700327809.202093,
"street_address": "12680 4th Street Unit 42"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 2,
"square_meters": 115.942993919997,
"bedroom_count": 2,
"bathroom_count": 2,
"year_built": 1975,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": null,
"lot_size_area": null,
"description": "Great price reduction, don't miss this wonderful mobile home! Welcome to this Move-in Ready 1975 Silvercrest Cottage. Double-Wide Mobile Home in a 55+ Mobile Estate Park. Home Offers Two Spacious Bedrooms, Two Full Bathrooms, two car parking Carport and side sheds. The Open Floor Plan Has a Great and Comfortable Flow. Newly Installed Laminate Flooring in the Living Room, Kitchen and Hallway. Enjoy the Large Kitchen with Plenty of Cupboard Space. The Living Room offer windows that are Picturestic and allow for Natural Light. Indoor Laundry area. The Home is Very Clean Inside and Out. At this Affordable Price and with low space rent, you will enjoy your new home!",
"created_at": 1685007877.135906,
"updated_at": 1700327809.215131
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/c31fa034-fae0-11ed-8506-0e4bb9531bd9",
"dom": 1086,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$125,000",
"text_no_label": "125,000",
"value": 125000
},
"original_price": {
"type": "formatted_attribute",
"text": "$125,000",
"text_no_label": "125,000",
"value": 125000
},
"area": {
"type": "formatted_attribute",
"text": "1,248 SQFT",
"text_no_label": "1,248",
"value": 1248
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,248 SQFT",
"text_no_label": "1,248",
"value": 1248
},
"square_meters": {
"type": "formatted_attribute",
"text": "116 SQM",
"text_no_label": "116",
"value": 116
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_area": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "12680 4th Street Unit 42",
"text_no_label": "12680 4th Street Unit 42",
"value": "12680 4th Street Unit 42"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Yucaipa, CA 92399",
"text_no_label": "Yucaipa, CA 92399",
"value": "Yucaipa, CA 92399"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Yucaipa",
"text_no_label": "Yucaipa",
"value": "Yucaipa"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of LORENA VELOZ-MARTINEZ of RIGHT MOVE REALTY ([email protected] | (909) 841-2428)",
"text_no_label": "Listing courtesy of LORENA VELOZ-MARTINEZ of RIGHT MOVE REALTY ([email protected] | (909) 841-2428)",
"value": "Listing courtesy of LORENA VELOZ-MARTINEZ of RIGHT MOVE REALTY ([email protected] | (909) 841-2428)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: LORENA VELOZ-MARTINEZ | RIGHT MOVE REALTY",
"text_no_label": "LORENA VELOZ-MARTINEZ | RIGHT MOVE REALTY",
"value": "LORENA VELOZ-MARTINEZ | RIGHT MOVE REALTY"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(909) 841-2428",
"text_no_label": "909-841-2428",
"value": "909-841-2428"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "LORENA VELOZ-MARTINEZ",
"text_no_label": "LORENA VELOZ-MARTINEZ",
"value": "LORENA VELOZ-MARTINEZ"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(909) 841-2428",
"text_no_label": "909-841-2428",
"value": "909-841-2428"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "2a3569c6-f375-11ec-9ed1-0271a4acc769",
"mls": "CRMLS",
"created_at": 1656044508.650963,
"updated_at": 1657667976.698306,
"deleted_at": 1657671127.844526,
"close_date": null,
"price": 825000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "220016110SD",
"list_office_name": "Mission Realty Group",
"selling_office_name": null,
"list_agent_mls_id": "SAND-669548",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Marsi Sampson",
"list_agent_direct_work_phone": "619-993-0884",
"co_list_agent_full_name": "Heidi DelaCruz",
"co_list_agent_mls_id": "SAND-680079",
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 32.85421341,
"longitude": -116.96181192,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "9718",
"street_name": "Kenesaw Ct",
"city": "Santee",
"state": "CA",
"postal_code": "92071",
"neighborhood": null,
"street_suffix": null,
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1656044508.394334,
"updated_at": 1657667976.663334,
"street_address": "9718 Kenesaw Ct"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 210.98280383999455,
"bedroom_count": 4,
"bathroom_count": 2.1,
"year_built": 1976,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 667.6012454399827,
"lot_size_area": 0.16496786042240588,
"description": "Nestled in a great Santee neighborhood, this spacious home is perfect for a large family Featuring 4 beds & 2.5 baths, this home is located on a peaceful cul-de-sac. A beautiful custom framed glass door leads you straight into a living room with vaulted ceilings and a cozy fireplace. Kitchen offers ample cabinet/storage space, light Corian countertops, separate cooktop with oven, opens up to a large family room. Recessed lighting and plenty of natural lighting makes the space feel open and roomy. All bedrooms are located upstairs including a large owners suite with entrance to a private balcony. Great low maintenance front and backyard. Close to great schools, shopping, dining experiences and the beautiful Walker Preserve Trail. Equipment: Shed(s) Sewer: Sewer Connected Topography: LL",
"created_at": 1656044508.564323,
"updated_at": 1657667976.673251
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/2a3569c6-f375-11ec-9ed1-0271a4acc769",
"dom": 1421,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$825,000",
"text_no_label": "825,000",
"value": 825000
},
"original_price": {
"type": "formatted_attribute",
"text": "$825,000",
"text_no_label": "825,000",
"value": 825000
},
"area": {
"type": "formatted_attribute",
"text": "2,271 SQFT",
"text_no_label": "2,271",
"value": 2271
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,271 SQFT",
"text_no_label": "2,271",
"value": 2271
},
"square_meters": {
"type": "formatted_attribute",
"text": "211 SQM",
"text_no_label": "211",
"value": 211
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "7,186 SQFT",
"text_no_label": "7,186",
"value": 7186
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.16 Acres",
"text_no_label": "0.16",
"value": 0.16
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.16 Acres",
"text_no_label": "0.16",
"value": 0.16
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "667.6 SQM",
"text_no_label": "667.6",
"value": 667.6
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "4 Bedrooms",
"text_no_label": "4",
"value": 4
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "9718 Kenesaw Ct",
"text_no_label": "9718 Kenesaw Ct",
"value": "9718 Kenesaw Ct"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Santee, CA 92071",
"text_no_label": "Santee, CA 92071",
"value": "Santee, CA 92071"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Santee",
"text_no_label": "Santee",
"value": "Santee"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Marsi Sampson of Mission Realty Group ([email protected] | (619) 993-0884)\nHeidi DelaCruz",
"text_no_label": "Listing courtesy of Marsi Sampson of Mission Realty Group ([email protected] | (619) 993-0884)\nHeidi DelaCruz",
"value": "Listing courtesy of Marsi Sampson of Mission Realty Group ([email protected] | (619) 993-0884)\nHeidi DelaCruz"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Marsi Sampson | Mission Realty Group",
"text_no_label": "Marsi Sampson | Mission Realty Group",
"value": "Marsi Sampson | Mission Realty Group"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(619) 993-0884",
"text_no_label": "619-993-0884",
"value": "619-993-0884"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Marsi Sampson",
"text_no_label": "Marsi Sampson",
"value": "Marsi Sampson"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(619) 993-0884",
"text_no_label": "619-993-0884",
"value": "619-993-0884"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "Heidi DelaCruz",
"text_no_label": "Heidi DelaCruz",
"value": "Heidi DelaCruz"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "5b326623-c8bc-413b-8bfe-89cf32454af2",
"mls": "CRMLS",
"created_at": 1693595870.183899,
"updated_at": 1693690233.410276,
"deleted_at": null,
"close_date": null,
"price": 1358200,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "SR23159611",
"list_office_name": "Keller Williams VIP Properties",
"selling_office_name": null,
"list_agent_mls_id": "F207094759",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Gregory Wolf",
"list_agent_direct_work_phone": "661-290-3860",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 34.418847,
"longitude": -118.523181,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "22518",
"street_name": "Brightwood",
"city": "Saugus",
"state": "CA",
"postal_code": "91350",
"neighborhood": null,
"street_suffix": "Place",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1693595870.054046,
"updated_at": 1693690233.363445,
"street_address": "22518 Brightwood Place"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 4,
"square_meters": 342.99802367999115,
"bedroom_count": 5,
"bathroom_count": 4,
"year_built": 2013,
"number_of_units": 1,
"lot_size_dimensions": null,
"lot_square_meters": 627.8387443199838,
"lot_size_area": 0.15514233241505967,
"description": "Exquisitely Remodeled Entertainer’s VIEW Home! This Luxury Designer Style home had hundreds of thousands spent on upgrades, feels like you walked into a Model Home. This sophisticated immaculate well-appointed home exemplifies impeccable taste and Boasts 4 Large Bedrooms, Loft, Office with built-in dark wood desk and floor to ceiling book cases (could a be 6th bedroom), NextGen home with Living Room, 5th Bedroom w/Ensuite, Kitchenette, Laundry area with Separate private entrance. Perfect for older children and In-Laws. As you enter this Magnificent home you will be in awe from the Stunning Wood Flooring to the Formal Dining Room with Extraordinary Designer Custom Wood Ceiling and Elegant Chandelier. Extravagant Chef’s Remodeled Kitchen with Sub-Zero Refrigerator, Wolf Steam Convection Oven, Wolf Microwave, Wolf 6-Burner Cook Top, Bosch Dishwasher, Enormous Custom Quartz Island & Sitting Area, Quartz Counter Tops and Backsplash. Large Walk-in Pantry. Modern Pendent Lights, Fabulous newer Cabinets with Beveled Glass. Perfect for any Celebrity Chef! Stunning Grand Room with Custom Stone Fireplace, Plantation Shutters and Recessed Lighting overlooking the Astounding Entertainer’s Backyard. Downstairs Office with Custom Built-ins (Could be 5th bedroom w/Ensuite) Spectacular Primary Suite with Designer Chandelier and Views! Large Walk-in closet with organizers. Luxurious upgraded Master Bathroom with Granite Counters & Backsplash, Vanity, Separate Tub and Glass Shower. 3 Large Bedrooms upstairs, Huge Loft with Custom Built-Ins, Fabulous upstairs Laundry room with built in sink and cabinets and separate storage room with shelves. Features include: Designer Carpeting, Crown Moulding, Raised Baseboards, Recessed Lighting, Spectacular Wood Banister w/Wrought Iron Spindles, Plantation Shutters, Custom Window Treatments, Professionally Painted. Spectacular Entertainer’s Backyard with Amazing Views that has Custom Spa with Cascading Water & Two Romantic Firepits. Great for Gatherings of any size! Professionally Hardscaped & Landscaped. Owned Solar! No Expense spared in this Remarkable Home. River Village Community Amenities include Clubhouse, Park, Pool & Playground. Close to Award Winning Schools, Shopping and Easy Freeway Access.",
"created_at": 1693595870.132442,
"updated_at": 1693690233.379372
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/5b326623-c8bc-413b-8bfe-89cf32454af2",
"dom": 986,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$1,358,200",
"text_no_label": "1,358,200",
"value": 1358200
},
"original_price": {
"type": "formatted_attribute",
"text": "$1,358,200",
"text_no_label": "1,358,200",
"value": 1358200
},
"area": {
"type": "formatted_attribute",
"text": "3,692 SQFT",
"text_no_label": "3,692",
"value": 3692
},
"square_feet": {
"type": "formatted_attribute",
"text": "3,692 SQFT",
"text_no_label": "3,692",
"value": 3692
},
"square_meters": {
"type": "formatted_attribute",
"text": "343 SQM",
"text_no_label": "343",
"value": 343
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "6,758 SQFT",
"text_no_label": "6,758",
"value": 6758
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.16 Acres",
"text_no_label": "0.16",
"value": 0.16
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.16 Acres",
"text_no_label": "0.16",
"value": 0.16
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "627.84 SQM",
"text_no_label": "627.84",
"value": 627.84
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "5 Bedrooms",
"text_no_label": "5",
"value": 5
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "4 Bathrooms",
"text_no_label": "4",
"value": "4"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "4 Bathrooms",
"text_no_label": "4",
"value": "4"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "22518 Brightwood Place",
"text_no_label": "22518 Brightwood Place",
"value": "22518 Brightwood Place"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Saugus, CA 91350",
"text_no_label": "Saugus, CA 91350",
"value": "Saugus, CA 91350"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Saugus",
"text_no_label": "Saugus",
"value": "Saugus"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Gregory Wolf of Keller Williams VIP Properties ([email protected] | (661) 290-3860)",
"text_no_label": "Listing courtesy of Gregory Wolf of Keller Williams VIP Properties ([email protected] | (661) 290-3860)",
"value": "Listing courtesy of Gregory Wolf of Keller Williams VIP Properties ([email protected] | (661) 290-3860)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Gregory Wolf | Keller Williams VIP Properties",
"text_no_label": "Gregory Wolf | Keller Williams VIP Properties",
"value": "Gregory Wolf | Keller Williams VIP Properties"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(661) 290-3860",
"text_no_label": "661-290-3860",
"value": "661-290-3860"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Gregory Wolf",
"text_no_label": "Gregory Wolf",
"value": "Gregory Wolf"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(661) 290-3860",
"text_no_label": "661-290-3860",
"value": "661-290-3860"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "bb499242-5259-11ec-935d-0271a4acc769",
"mls": "CRMLS",
"created_at": 1638330588.937072,
"updated_at": 1643760105.580607,
"deleted_at": 1645668456.162617,
"close_date": null,
"price": 379000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "SN21257101",
"list_office_name": "HB Ranch and Home Properties",
"selling_office_name": null,
"list_agent_mls_id": "CH157000799",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Heather Boer",
"list_agent_direct_work_phone": "530-864-2169",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 39.533217,
"longitude": -122.205399,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "864",
"street_name": "1st",
"city": "Willows",
"state": "CA",
"postal_code": "95988",
"neighborhood": null,
"street_suffix": "Avenue",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1638330588.568179,
"updated_at": 1643760105.500702,
"street_address": "864 1st Avenue"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 2,
"square_meters": 149.57389439999614,
"bedroom_count": 3,
"bathroom_count": 2,
"year_built": 1954,
"number_of_units": 1,
"lot_size_dimensions": null,
"lot_square_meters": 1769.8029119999542,
"lot_size_area": 0.43732782369146006,
"description": "Move in ready home on over a 1/2 acre with owned solar! Feels like country living right on the edge of town. Walk into this 3 bedroom, 2 bathroom, home, featuring 1,610 square feet of interior living space. Perfect for entertaining or having large gatherings. Spacious living space and open floor plan. House features hardwood floors, new carpet in the living and family room, new paint in some rooms, beautifully remodeled bathrooms with wonderful features, and lots of natural light. The kitchen has stainless double ovens, dishwasher, and lots of counter space. The master bedroom is huge! It has a walk in closet, bathroom with walk in stone and tiled shower, clawfoot soaking tub, new vanity and plank tiled floor. The hall bath has a custom tiled shower, new vanity and fixtures. Central heating and air. New roof, new pressure tank on the well, and RV/Boat parking. Walk outside to the huge backyard with two nice sheds for storage, a 15 x 30 oval above ground pool. Drive in on the side of the house towards the back for a clean slate for planting a garden, or room for a shop! Buyer to verify all information to their satisfaction.",
"created_at": 1638330588.80759,
"updated_at": 1643760105.54985
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/bb499242-5259-11ec-935d-0271a4acc769",
"dom": 1626,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$379,000",
"text_no_label": "379,000",
"value": 379000
},
"original_price": {
"type": "formatted_attribute",
"text": "$379,000",
"text_no_label": "379,000",
"value": 379000
},
"area": {
"type": "formatted_attribute",
"text": "1,610 SQFT",
"text_no_label": "1,610",
"value": 1610
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,610 SQFT",
"text_no_label": "1,610",
"value": 1610
},
"square_meters": {
"type": "formatted_attribute",
"text": "150 SQM",
"text_no_label": "150",
"value": 150
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "19,050 SQFT",
"text_no_label": "19,050",
"value": 19050
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.44 Acres",
"text_no_label": "0.44",
"value": 0.44
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.44 Acres",
"text_no_label": "0.44",
"value": 0.44
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "1,769.8 SQM",
"text_no_label": "1,769.8",
"value": 1769.8
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "864 1st Avenue",
"text_no_label": "864 1st Avenue",
"value": "864 1st Avenue"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Willows, CA 95988",
"text_no_label": "Willows, CA 95988",
"value": "Willows, CA 95988"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Willows",
"text_no_label": "Willows",
"value": "Willows"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Heather Boer of HB Ranch and Home Properties ([email protected] | (530) 864-2169)",
"text_no_label": "Listing courtesy of Heather Boer of HB Ranch and Home Properties ([email protected] | (530) 864-2169)",
"value": "Listing courtesy of Heather Boer of HB Ranch and Home Properties ([email protected] | (530) 864-2169)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Heather Boer | HB Ranch and Home Properties",
"text_no_label": "Heather Boer | HB Ranch and Home Properties",
"value": "Heather Boer | HB Ranch and Home Properties"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(530) 864-2169",
"text_no_label": "530-864-2169",
"value": "530-864-2169"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Heather Boer",
"text_no_label": "Heather Boer",
"value": "Heather Boer"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(530) 864-2169",
"text_no_label": "530-864-2169",
"value": "530-864-2169"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "4377486c-b83d-4087-b023-def7686e9747",
"mls": "CRMLS",
"created_at": 1700080119.992868,
"updated_at": 1700442652.30429,
"deleted_at": null,
"close_date": null,
"price": 998000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "PW23207368",
"list_office_name": "GMT Real Estate",
"selling_office_name": null,
"list_agent_mls_id": "PTACKJEN",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Jennifer Tackney",
"list_agent_direct_work_phone": "7148945185",
"co_list_agent_full_name": "Geoffrey Tackney",
"co_list_agent_mls_id": "ptackgeo",
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 33.77936,
"longitude": -118.017865,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "6611",
"street_name": "Trinette",
"city": "Garden Grove",
"state": "CA",
"postal_code": "92845",
"neighborhood": null,
"street_suffix": "Avenue",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1700080119.784797,
"updated_at": 1700442652.249691,
"street_address": "6611 Trinette Avenue"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 2,
"square_meters": 158.5854892799959,
"bedroom_count": 3,
"bathroom_count": 2,
"year_built": 1961,
"number_of_units": 1,
"lot_size_dimensions": null,
"lot_square_meters": 557.4182399999855,
"lot_size_area": 0.13774104683195593,
"description": "Rarely in West Grove do we see this amount of custom exterior detail. This is a home where you and your guests will be in love at first sight! If you are the lucky new owner of 6611 Trinette Ave, be prepared to receive numerous compliments with your friends raving about how beautiful your home is! On the way to this home you will pass by all the top rated GGUSD schools including Pacifica High School, Bell Intermediate and Garden Park Elementary. This location is ideal for kids to effortlessly get to and from school on their own. Approaching the home, the wow factor begins with custom hardscaping and a recently installed 30 year composition shingle roof providing beautiful curb appeal and a wonderful front patio for enjoying the afternoon breeze and communing with the neighbors who just may become fast friends! With Large square stepping stones in the grass and matching on the driveway the attention to detail is endless. Dual pane white vinyl windows add an exquisite design element. This Garden Park Plan 4 has been remodeled into a stunning open concept with a family room addition. Travertine tile flows through the kitchen, dining room, living room and down the hall. Each of the bedrooms have been updated with fresh carpet. The interior of the home has been freshly painted in today's on trend off white color theme. The kitchen boasts granite countertops, oak cabinets and direct garage access. The added family room offers additional living space for gatherings and relaxing, it leads outdoors to the custom hardscaped backyard featuring a covered patio, custom brickwork and a built in BBQ. Forced heating and air conditioning is sure to keep you comfortable all year round. West Garden Grove provides easy access to freeways, shopping and offers a community full of events such as, Cub scout push cart derby, Summer Concerts in the park, 4th of July Block Parties, West Grove Pony Baseball/Girls Softball Opening Day parade, Jingle Jam at Eastgate Park and more! This home is move in ready and a must see!",
"created_at": 1700080119.920461,
"updated_at": 1700442652.266953
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/4377486c-b83d-4087-b023-def7686e9747",
"dom": 911,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$998,000",
"text_no_label": "998,000",
"value": 998000
},
"original_price": {
"type": "formatted_attribute",
"text": "$998,000",
"text_no_label": "998,000",
"value": 998000
},
"area": {
"type": "formatted_attribute",
"text": "1,707 SQFT",
"text_no_label": "1,707",
"value": 1707
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,707 SQFT",
"text_no_label": "1,707",
"value": 1707
},
"square_meters": {
"type": "formatted_attribute",
"text": "159 SQM",
"text_no_label": "159",
"value": 159
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "6,000 SQFT",
"text_no_label": "6,000",
"value": 6000
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.14 Acres",
"text_no_label": "0.14",
"value": 0.14
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.14 Acres",
"text_no_label": "0.14",
"value": 0.14
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "557.42 SQM",
"text_no_label": "557.42",
"value": 557.42
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "6611 Trinette Avenue",
"text_no_label": "6611 Trinette Avenue",
"value": "6611 Trinette Avenue"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Garden Grove, CA 92845",
"text_no_label": "Garden Grove, CA 92845",
"value": "Garden Grove, CA 92845"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Garden Grove",
"text_no_label": "Garden Grove",
"value": "Garden Grove"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Jennifer Tackney of GMT Real Estate ([email protected] | (714) 894-5185)\nGeoffrey Tackney",
"text_no_label": "Listing courtesy of Jennifer Tackney of GMT Real Estate ([email protected] | (714) 894-5185)\nGeoffrey Tackney",
"value": "Listing courtesy of Jennifer Tackney of GMT Real Estate ([email protected] | (714) 894-5185)\nGeoffrey Tackney"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Jennifer Tackney | GMT Real Estate",
"text_no_label": "Jennifer Tackney | GMT Real Estate",
"value": "Jennifer Tackney | GMT Real Estate"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(714) 894-5185",
"text_no_label": "7148945185",
"value": "7148945185"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Jennifer Tackney",
"text_no_label": "Jennifer Tackney",
"value": "Jennifer Tackney"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(714) 894-5185",
"text_no_label": "7148945185",
"value": "7148945185"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "Geoffrey Tackney",
"text_no_label": "Geoffrey Tackney",
"value": "Geoffrey Tackney"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "d7f48d71-99ac-49ef-bf26-bf7cd7551d72",
"mls": "CRMLS",
"created_at": 1698424100.977697,
"updated_at": 1700339069.703164,
"deleted_at": null,
"close_date": null,
"price": 689840,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "EV23200410",
"list_office_name": "RICHMOND AMERICAN HOMES",
"selling_office_name": null,
"list_agent_mls_id": "EVANDERAN",
"list_agent_email": "[email protected]",
"list_agent_full_name": "RANDY ANDERSON",
"list_agent_direct_work_phone": "800 852-9714",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 33.768778,
"longitude": -117.453142,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "24087",
"street_name": "Vantage",
"city": "Corona",
"state": "CA",
"postal_code": "92883",
"neighborhood": null,
"street_suffix": "Road",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1698424100.800121,
"updated_at": 1700339069.636527,
"street_address": "24087 Vantage Road"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 3,
"square_meters": 187.10672255999515,
"bedroom_count": 4,
"bathroom_count": 3.1,
"year_built": 2023,
"number_of_units": 162,
"lot_size_dimensions": null,
"lot_square_meters": 247.67950463999358,
"lot_size_area": 0.06120293847566575,
"description": "Our best selling Citrine Duo home, 4 bedrooms with 3 full bathrooms. 1 bedroom and 1 full bathroom downstairs! This homesite is a corner location. Additional features include; an open dining area; a well-appointed kitchen offering quartz countertops, white cabinets, a roomy pantry, a center island and stainless-steel appliances; a convenient laundry; a lavish primary suite showcasing an expansive walk-in closet and a private bath and a 2-car garage. This home also offers additional windows and ceiling fan prewiring in all rooms. Estimated Move-In is last week of March 2024.Tour today!",
"created_at": 1698424100.930371,
"updated_at": 1700339069.668409
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/d7f48d71-99ac-49ef-bf26-bf7cd7551d72",
"dom": 931,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$689,840",
"text_no_label": "689,840",
"value": 689840
},
"original_price": {
"type": "formatted_attribute",
"text": "$689,840",
"text_no_label": "689,840",
"value": 689840
},
"area": {
"type": "formatted_attribute",
"text": "2,014 SQFT",
"text_no_label": "2,014",
"value": 2014
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,014 SQFT",
"text_no_label": "2,014",
"value": 2014
},
"square_meters": {
"type": "formatted_attribute",
"text": "187 SQM",
"text_no_label": "187",
"value": 187
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "2,666 SQFT",
"text_no_label": "2,666",
"value": 2666
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.06 Acres",
"text_no_label": "0.06",
"value": 0.06
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.06 Acres",
"text_no_label": "0.06",
"value": 0.06
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "247.68 SQM",
"text_no_label": "247.68",
"value": 247.68
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "4 Bedrooms",
"text_no_label": "4",
"value": 4
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3.1 Bathrooms",
"text_no_label": "3.1",
"value": "3.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "4 Bathrooms",
"text_no_label": "4",
"value": "4"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "24087 Vantage Road",
"text_no_label": "24087 Vantage Road",
"value": "24087 Vantage Road"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Corona, CA 92883",
"text_no_label": "Corona, CA 92883",
"value": "Corona, CA 92883"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Corona",
"text_no_label": "Corona",
"value": "Corona"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of RANDY ANDERSON of RICHMOND AMERICAN HOMES ([email protected] | (800) 852-9714)",
"text_no_label": "Listing courtesy of RANDY ANDERSON of RICHMOND AMERICAN HOMES ([email protected] | (800) 852-9714)",
"value": "Listing courtesy of RANDY ANDERSON of RICHMOND AMERICAN HOMES ([email protected] | (800) 852-9714)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: RANDY ANDERSON | RICHMOND AMERICAN HOMES",
"text_no_label": "RANDY ANDERSON | RICHMOND AMERICAN HOMES",
"value": "RANDY ANDERSON | RICHMOND AMERICAN HOMES"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(800) 852-9714",
"text_no_label": "800 852-9714",
"value": "800 852-9714"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "RANDY ANDERSON",
"text_no_label": "RANDY ANDERSON",
"value": "RANDY ANDERSON"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(800) 852-9714",
"text_no_label": "800 852-9714",
"value": "800 852-9714"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "724a948c-0fab-11ed-9e81-0aa41e28002f",
"mls": "CRMLS",
"created_at": 1659146454.966802,
"updated_at": 1668229814.15749,
"deleted_at": 1672425948.37568,
"close_date": null,
"price": 440000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "SW22167548",
"list_office_name": "New Palace Realty",
"selling_office_name": null,
"list_agent_mls_id": "TLOPANGE",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Angelica Henry",
"list_agent_direct_work_phone": null,
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 34.108734,
"longitude": -117.352384,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "2883",
"street_name": "Spruce",
"city": "Rialto",
"state": "CA",
"postal_code": "92376",
"neighborhood": null,
"street_suffix": "Street",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1659146454.618873,
"updated_at": 1668229814.095473,
"street_address": "2883 Spruce Street"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 2,
"square_meters": 111.48364799999712,
"bedroom_count": 4,
"bathroom_count": 2,
"year_built": 1958,
"number_of_units": 1,
"lot_size_dimensions": null,
"lot_square_meters": 678.1921919999825,
"lot_size_area": 0.16758494031221305,
"description": "This home offers so much! As you drive up you are greeted by the beautifully aligned shade trees that adorn the front of the home. A huge front yard and raised brick flower beds decorate the entry. The over sized drive way offers extra parking and even RV potential parking on either side. There is 4 bedrooms with 2 full bathrooms, A/C Cooling System, hardwood flooring in living room, dining room, and bedrooms. The kitchen is spacious with lots of cabinets. The washer / dryer hook ups are inside the home for your convenience. The 2 car garage is big and there is extra storage space on the exterior of it. The living room slider opens up to the pleasant backyard with a covered patio plus garden areas and more open space. There are no neighbors behind the home for extra privacy. This home is centrally located just minutes to the freeways for an easy commute, schools and shopping.",
"created_at": 1659146454.929509,
"updated_at": 1668229814.119992
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/724a948c-0fab-11ed-9e81-0aa41e28002f",
"dom": 1385,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$440,000",
"text_no_label": "440,000",
"value": 440000
},
"original_price": {
"type": "formatted_attribute",
"text": "$440,000",
"text_no_label": "440,000",
"value": 440000
},
"area": {
"type": "formatted_attribute",
"text": "1,200 SQFT",
"text_no_label": "1,200",
"value": 1200
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,200 SQFT",
"text_no_label": "1,200",
"value": 1200
},
"square_meters": {
"type": "formatted_attribute",
"text": "111 SQM",
"text_no_label": "111",
"value": 111
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "7,300 SQFT",
"text_no_label": "7,300",
"value": 7300
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.17 Acres",
"text_no_label": "0.17",
"value": 0.17
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.17 Acres",
"text_no_label": "0.17",
"value": 0.17
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "678.19 SQM",
"text_no_label": "678.19",
"value": 678.19
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "4 Bedrooms",
"text_no_label": "4",
"value": 4
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "2883 Spruce Street",
"text_no_label": "2883 Spruce Street",
"value": "2883 Spruce Street"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Rialto, CA 92376",
"text_no_label": "Rialto, CA 92376",
"value": "Rialto, CA 92376"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Rialto",
"text_no_label": "Rialto",
"value": "Rialto"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Angelica Henry of New Palace Realty ([email protected])",
"text_no_label": "Listing courtesy of Angelica Henry of New Palace Realty ([email protected])",
"value": "Listing courtesy of Angelica Henry of New Palace Realty ([email protected])"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Angelica Henry | New Palace Realty",
"text_no_label": "Angelica Henry | New Palace Realty",
"value": "Angelica Henry | New Palace Realty"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Angelica Henry",
"text_no_label": "Angelica Henry",
"value": "Angelica Henry"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "f9fdaf36-4b3d-11ed-b8cf-0e4bb9531bd9",
"mls": "CRMLS",
"created_at": 1665696507.759395,
"updated_at": 1670546872.613799,
"deleted_at": 1674536447.195585,
"close_date": null,
"price": 1100000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "OC22216232",
"list_office_name": "Coldwell Banker Realty",
"selling_office_name": null,
"list_agent_mls_id": "OCCHASJAC",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Jacqueline Chase",
"list_agent_direct_work_phone": "949-439-2315",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 33.579341,
"longitude": -117.729095,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "51",
"street_name": "Vantis",
"city": "Aliso Viejo",
"state": "CA",
"postal_code": "92656",
"neighborhood": null,
"street_suffix": "Drive",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1665696507.64906,
"updated_at": 1670546872.550775,
"street_address": "51 Vantis Drive"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 215.07053759999442,
"bedroom_count": 2,
"bathroom_count": 2.1,
"year_built": 2007,
"number_of_units": 1,
"lot_size_dimensions": null,
"lot_square_meters": 92.9030399999976,
"lot_size_area": 0.02295684113865932,
"description": "Newly listed END unit at City Walk at Vantis is rarely on the market. This townhome with commercial business space on the street level is great for someone who needs office space or has a business and wants to work from home. This spacious, modern townhome is filled with natural light and vaulted ceilings. Both home and office have their own private separate entrances for convenience and privacy. This modern, designer home features living area of approximately 1851 sf complemented by a professional workspace of 462sf for a total of 2,313 sf. This model features a large kitchen and nook with oversized deck directly off the kitchen. This modern, upgraded kitchen features granite counter tops and high-profile GE stainless steel appliances. Other features include wood flooring, inside laundry room and 2-car oversized attached garage. A state of art club house that includes exercise room, activity room, outdoor BBQ and fireplace, full kitchen, pool and spa. This is a one-of-a-kind end unit that does not come on the market often. Conveniently located 3 minutes to the 73 FWY, 12 mins to John Wayne Airport, and 17 mins to Fashion Island or South Coast Plaza. NO MELLO ROOS and low tax basis make it a smart investment.",
"created_at": 1665696507.730534,
"updated_at": 1670546872.583758
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/f9fdaf36-4b3d-11ed-b8cf-0e4bb9531bd9",
"dom": 1309,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$1,100,000",
"text_no_label": "1,100,000",
"value": 1100000
},
"original_price": {
"type": "formatted_attribute",
"text": "$1,100,000",
"text_no_label": "1,100,000",
"value": 1100000
},
"area": {
"type": "formatted_attribute",
"text": "2,315 SQFT",
"text_no_label": "2,315",
"value": 2315
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,315 SQFT",
"text_no_label": "2,315",
"value": 2315
},
"square_meters": {
"type": "formatted_attribute",
"text": "215 SQM",
"text_no_label": "215",
"value": 215
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "1,000 SQFT",
"text_no_label": "1,000",
"value": 1000
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.02 Acres",
"text_no_label": "0.02",
"value": 0.02
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.02 Acres",
"text_no_label": "0.02",
"value": 0.02
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "92.9 SQM",
"text_no_label": "92.9",
"value": 92.9
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "51 Vantis Drive",
"text_no_label": "51 Vantis Drive",
"value": "51 Vantis Drive"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Aliso Viejo, CA 92656",
"text_no_label": "Aliso Viejo, CA 92656",
"value": "Aliso Viejo, CA 92656"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Aliso Viejo",
"text_no_label": "Aliso Viejo",
"value": "Aliso Viejo"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Jacqueline Chase of Coldwell Banker Realty ([email protected] | (949) 439-2315)",
"text_no_label": "Listing courtesy of Jacqueline Chase of Coldwell Banker Realty ([email protected] | (949) 439-2315)",
"value": "Listing courtesy of Jacqueline Chase of Coldwell Banker Realty ([email protected] | (949) 439-2315)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Jacqueline Chase | Coldwell Banker Realty",
"text_no_label": "Jacqueline Chase | Coldwell Banker Realty",
"value": "Jacqueline Chase | Coldwell Banker Realty"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(949) 439-2315",
"text_no_label": "949-439-2315",
"value": "949-439-2315"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Jacqueline Chase",
"text_no_label": "Jacqueline Chase",
"value": "Jacqueline Chase"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(949) 439-2315",
"text_no_label": "949-439-2315",
"value": "949-439-2315"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "e62efa5e-ee69-11ec-be43-0271a4acc769",
"mls": "CRMLS",
"created_at": 1655489914.245799,
"updated_at": 1664027801.790911,
"deleted_at": 1664211131.585522,
"close_date": null,
"price": 590000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "BB22129321",
"list_office_name": "Compass",
"selling_office_name": null,
"list_agent_mls_id": "B36938",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Robin McCary",
"list_agent_direct_work_phone": "818-974-0613",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 34.196852,
"longitude": -118.328137,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "1809",
"street_name": "Peyton",
"city": "Burbank",
"state": "CA",
"postal_code": "91504",
"neighborhood": null,
"street_suffix": "Avenue",
"unit_number": "102",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1655489914.021232,
"updated_at": 1664027801.657761,
"street_address": "1809 Peyton Avenue Unit 102"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 1,
"square_meters": 102.10044095999736,
"bedroom_count": 2,
"bathroom_count": 1.1,
"year_built": 1981,
"number_of_units": 42,
"lot_size_dimensions": null,
"lot_square_meters": 4121.8291756798935,
"lot_size_area": 1.0185261707988982,
"description": "Welcome to this beautiful 2-bedroom, 2-bathroom Burbank condo located just minutes away from the Burbank Airport, Downtown Burbank, Empire Center, parks, local shopping/restaurants, easy freeway access, and the well-rated Burbank school district. The unit is situated on the ground floor, tucked away in a corner for the ultimate privacy, and is conveniently located near the elevator. The living room offers a decorative fireplace and is filled with natural light through the glass sliding doors leading to a large private balcony patio, the perfect space to gather and entertain. The separate dining room area supports a full-size dining table adjacent to the kitchen. Rich, warm hardwood flooring connects the two spaces, creating an open feel. Preparing and cooking meals is a breeze with the ample counter space in the kitchen. The main bedroom suite is oversized featuring a customized walk-in closet. The spacious bathroom has a shower/tub combination, updated wall tiles, and a pedestal sink. The second ensuite bedroom is located off the living room, the perfect place for that home office. Gated community garage with two side-by-side parking spaces an extra storage room and an elevator. HOA fee of $505/month includes water, trash, insurance, maintenance of the grounds, earthquake insurance, elevator, and gym.",
"created_at": 1655489914.159565,
"updated_at": 1664027801.753902
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/e62efa5e-ee69-11ec-be43-0271a4acc769",
"dom": 1428,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$590,000",
"text_no_label": "590,000",
"value": 590000
},
"original_price": {
"type": "formatted_attribute",
"text": "$590,000",
"text_no_label": "590,000",
"value": 590000
},
"area": {
"type": "formatted_attribute",
"text": "1,099 SQFT",
"text_no_label": "1,099",
"value": 1099
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,099 SQFT",
"text_no_label": "1,099",
"value": 1099
},
"square_meters": {
"type": "formatted_attribute",
"text": "102 SQM",
"text_no_label": "102",
"value": 102
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "44,367 SQFT",
"text_no_label": "44,367",
"value": 44367
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "1.02 Acres",
"text_no_label": "1.02",
"value": 1.02
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "1.02 Acres",
"text_no_label": "1.02",
"value": 1.02
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "4,121.83 SQM",
"text_no_label": "4,121.83",
"value": 4121.83
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "1.1 Bathrooms",
"text_no_label": "1.1",
"value": "1.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "1809 Peyton Avenue Unit 102",
"text_no_label": "1809 Peyton Avenue Unit 102",
"value": "1809 Peyton Avenue Unit 102"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Burbank, CA 91504",
"text_no_label": "Burbank, CA 91504",
"value": "Burbank, CA 91504"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Burbank",
"text_no_label": "Burbank",
"value": "Burbank"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Robin McCary of Compass ([email protected] | (818) 974-0613)",
"text_no_label": "Listing courtesy of Robin McCary of Compass ([email protected] | (818) 974-0613)",
"value": "Listing courtesy of Robin McCary of Compass ([email protected] | (818) 974-0613)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Robin McCary | Compass",
"text_no_label": "Robin McCary | Compass",
"value": "Robin McCary | Compass"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(818) 974-0613",
"text_no_label": "818-974-0613",
"value": "818-974-0613"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Robin McCary",
"text_no_label": "Robin McCary",
"value": "Robin McCary"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(818) 974-0613",
"text_no_label": "818-974-0613",
"value": "818-974-0613"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "433249d8-427e-11ec-aea0-0271a4acc769",
"mls": "CRMLS",
"created_at": 1636587060.232447,
"updated_at": 1644430265.796768,
"deleted_at": 1645668454.78018,
"close_date": null,
"price": 1000000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "OC21242440",
"list_office_name": "Harcourts Prime Properties",
"selling_office_name": null,
"list_agent_mls_id": "OCWILLWES",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Westley Williams",
"list_agent_direct_work_phone": "949-290-7995",
"co_list_agent_full_name": "Aideen Makky",
"co_list_agent_mls_id": "OCMAKKAID",
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 33.603606,
"longitude": -116.609388,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "36521",
"street_name": "Butterfly Peak",
"city": "Mountain Center",
"state": "CA",
"postal_code": "92561",
"neighborhood": null,
"street_suffix": "Road",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1636587059.959723,
"updated_at": 1644430265.718003,
"street_address": "36521 Butterfly Peak Road"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 2,
"full_bathroom_count": 6,
"square_meters": 502.326737279987,
"bedroom_count": 6,
"bathroom_count": 8,
"year_built": 1989,
"number_of_units": 1,
"lot_size_dimensions": null,
"lot_square_meters": 19789.09074431949,
"lot_size_area": 4.889990817263545,
"description": "Luxury Live Auction! Bidding to start from $1,000,000! Escape to the eloquent horse community of Garner Valley here at 36521 Butterfly Peak. This custom equestrian estate home is built on a bountiful 5 acres, built with natural wood on site. This home features 6 bedrooms, 6 baths (in home), 2 baths in pool and barn, 4 fire places, double bevel granite counters in Kitchen, built in GE monogram appliances (refrigerator, oven, stove, dishwasher, and trash compactor). Living room features large wall windows and deck which contributes to a warm and inviting entertainment space. The upstairs master bedroom contains its own separate top floor deck supplied with hot tub hook up and fireplace. Bathrooms equipped with granite shower stalls and luxury spa bath tubs. Enter into the lower half of the home equipped with 3 bedrooms, 2 bathrooms and theatre area along with custom natural edge cedar game room and hand carved bar. Outside features of this home include: Lap pool (8ft deep, 4ft shallow), Fire pits, Built on site tree house with bunk beds built inside! Custom, 60X60 Barn with 4 stalls, sliding doors and feed storage with river rock post cover breeze walkway, chicken coup. Enjoy the seasonal stream and permitted bridge and a gazebo with multiple bird houses. Great location located minutes from lake hemet, Idyllwild. 35 minutes from Coachella Valley and an Hour in driving to Temecula and Palm Springs. Grocery, Gas, Dr offices all within 5 miles. Large lake for boating and swimming park within 5 miles!!",
"created_at": 1636587060.181021,
"updated_at": 1644430265.75923
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/433249d8-427e-11ec-aea0-0271a4acc769",
"dom": 1646,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$1,000,000",
"text_no_label": "1,000,000",
"value": 1000000
},
"original_price": {
"type": "formatted_attribute",
"text": "$1,000,000",
"text_no_label": "1,000,000",
"value": 1000000
},
"area": {
"type": "formatted_attribute",
"text": "5,407 SQFT",
"text_no_label": "5,407",
"value": 5407
},
"square_feet": {
"type": "formatted_attribute",
"text": "5,407 SQFT",
"text_no_label": "5,407",
"value": 5407
},
"square_meters": {
"type": "formatted_attribute",
"text": "502 SQM",
"text_no_label": "502",
"value": 502
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "213,008 SQFT",
"text_no_label": "213,008",
"value": 213008
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "4.89 Acres",
"text_no_label": "4.89",
"value": 4.89
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "4.89 Acres",
"text_no_label": "4.89",
"value": 4.89
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "19,789.11 SQM",
"text_no_label": "19,789.11",
"value": 19789.11
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "6 Bedrooms",
"text_no_label": "6",
"value": 6
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "6.2 Bathrooms",
"text_no_label": "6.2",
"value": "6.2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "8 Bathrooms",
"text_no_label": "8",
"value": "8"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "36521 Butterfly Peak Road",
"text_no_label": "36521 Butterfly Peak Road",
"value": "36521 Butterfly Peak Road"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Mountain Center, CA 92561",
"text_no_label": "Mountain Center, CA 92561",
"value": "Mountain Center, CA 92561"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Mountain Center",
"text_no_label": "Mountain Center",
"value": "Mountain Center"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Westley Williams of Harcourts Prime Properties ([email protected] | (949) 290-7995)\nAideen Makky",
"text_no_label": "Listing courtesy of Westley Williams of Harcourts Prime Properties ([email protected] | (949) 290-7995)\nAideen Makky",
"value": "Listing courtesy of Westley Williams of Harcourts Prime Properties ([email protected] | (949) 290-7995)\nAideen Makky"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Westley Williams | Harcourts Prime Properties",
"text_no_label": "Westley Williams | Harcourts Prime Properties",
"value": "Westley Williams | Harcourts Prime Properties"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(949) 290-7995",
"text_no_label": "949-290-7995",
"value": "949-290-7995"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Westley Williams",
"text_no_label": "Westley Williams",
"value": "Westley Williams"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(949) 290-7995",
"text_no_label": "949-290-7995",
"value": "949-290-7995"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "Aideen Makky",
"text_no_label": "Aideen Makky",
"value": "Aideen Makky"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "595c5134-8d70-11ed-9466-0e4bb9531bd9",
"mls": "CRMLS",
"created_at": 1672974919.342934,
"updated_at": 1688848652.59014,
"deleted_at": null,
"close_date": null,
"price": 15995000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "223000060",
"list_office_name": "RE/MAX ONE",
"selling_office_name": null,
"list_agent_mls_id": "VCR-C159094153",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Jordan Cohen",
"list_agent_direct_work_phone": "(818) 435-5220",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 34.176769,
"longitude": -118.806153,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "4994",
"street_name": "Summit View",
"city": "Westlake Village",
"state": "CA",
"postal_code": "91362",
"neighborhood": null,
"street_suffix": "Drive",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1672974919.216844,
"updated_at": 1688848652.456533,
"street_address": "4994 Summit View Drive"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 3,
"full_bathroom_count": 8,
"square_meters": 1596.3529363199586,
"bedroom_count": 4,
"bathroom_count": 8.3,
"year_built": 1996,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 49169.30553215873,
"lot_size_area": 12.15,
"description": "The absolute crown jewel of guard gated North Ranch Country Club Estates. A world class Italian villa set behind private gates atop an astonishing 12 acre promontory boasting the most magnificent views in Westlake Village! A true masterpiece designed and built with the finest finishes. A magnificent long private tree lined driveway incorporates two separate legal lots which leads to this distinguished estate of importance. The over 17,000 square foot floorplan lives as a single story with an additional massive lower level entertainment center boasting a two lane bowling alley, game room with pub style bar and a separate chauffer's quarters. Interior features include imported limestone flooring and accents, soaring detailed custom ceilings, theater, two office/libraries, fitness center with steam and dry sauna and much more. The resort quality grounds are simply breathtaking. Infinity pool, covered verandas, barbecue center, firepit, approximately 1000 imported oak trees and manicured lawns all with jet liner explosive views and complete privacy. Other amenities include an elevator, 25 car finished garage with CO2 recirculating system, smart home and security cameras, radon mitigation system, fountains and water features a tremendous motor court. This is one of Southern California's most distinguished estates!",
"created_at": 1672974919.302991,
"updated_at": 1688848652.537318
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/595c5134-8d70-11ed-9466-0e4bb9531bd9",
"dom": 1225,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$15,995,000",
"text_no_label": "15,995,000",
"value": 15995000
},
"original_price": {
"type": "formatted_attribute",
"text": "$15,995,000",
"text_no_label": "15,995,000",
"value": 15995000
},
"area": {
"type": "formatted_attribute",
"text": "17,183 SQFT",
"text_no_label": "17,183",
"value": 17183
},
"square_feet": {
"type": "formatted_attribute",
"text": "17,183 SQFT",
"text_no_label": "17,183",
"value": 17183
},
"square_meters": {
"type": "formatted_attribute",
"text": "1,596 SQM",
"text_no_label": "1,596",
"value": 1596
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "529,254 SQFT",
"text_no_label": "529,254",
"value": 529254
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "12.15 Acres",
"text_no_label": "12.15",
"value": 12.15
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "12.15 Acres",
"text_no_label": "12.15",
"value": 12.15
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "49,169.35 SQM",
"text_no_label": "49,169.35",
"value": 49169.35
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "4 Bedrooms",
"text_no_label": "4",
"value": 4
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "8.3 Bathrooms",
"text_no_label": "8.3",
"value": "8.3"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "11 Bathrooms",
"text_no_label": "11",
"value": "11"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "4994 Summit View Drive",
"text_no_label": "4994 Summit View Drive",
"value": "4994 Summit View Drive"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Westlake Village, CA 91362",
"text_no_label": "Westlake Village, CA 91362",
"value": "Westlake Village, CA 91362"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Westlake Village",
"text_no_label": "Westlake Village",
"value": "Westlake Village"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Jordan Cohen of RE/MAX ONE ([email protected] | (818) 435-5220)",
"text_no_label": "Listing courtesy of Jordan Cohen of RE/MAX ONE ([email protected] | (818) 435-5220)",
"value": "Listing courtesy of Jordan Cohen of RE/MAX ONE ([email protected] | (818) 435-5220)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Jordan Cohen | RE/MAX ONE",
"text_no_label": "Jordan Cohen | RE/MAX ONE",
"value": "Jordan Cohen | RE/MAX ONE"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(818) 435-5220",
"text_no_label": "(818) 435-5220",
"value": "(818) 435-5220"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Jordan Cohen",
"text_no_label": "Jordan Cohen",
"value": "Jordan Cohen"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(818) 435-5220",
"text_no_label": "(818) 435-5220",
"value": "(818) 435-5220"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "848b8e71-3d30-4a85-9fb3-319177ffb7e1",
"mls": "CRMLS",
"created_at": 1699599893.488493,
"updated_at": 1700541013.61617,
"deleted_at": null,
"close_date": null,
"price": 2695000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "219102725DA",
"list_office_name": "Bennion Deville Homes",
"selling_office_name": null,
"list_agent_mls_id": "CDAR-d84348",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Bomgardner Blenkinsop and As...",
"list_agent_direct_work_phone": "(760) 799-5785",
"co_list_agent_full_name": "John Bomgardner",
"co_list_agent_mls_id": "CDAR-D76977",
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 33.791572,
"longitude": -116.418385,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "12159",
"street_name": "Saint Andrews",
"city": "Rancho Mirage",
"state": "CA",
"postal_code": "92270",
"neighborhood": null,
"street_suffix": "Drive",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1699599893.468463,
"updated_at": 1700541013.525743,
"street_address": "12159 Saint Andrews Drive"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 2,
"full_bathroom_count": 3,
"square_meters": 477.7074316799876,
"bedroom_count": 3,
"bathroom_count": 3.2,
"year_built": 1995,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 1821.085390079953,
"lot_size_area": 0.45,
"description": "Stunning Custom Contemporary Architecture, High Quality Finishes and Lakefront Location with Mountain Views in Coveted Fairway Estates. Great curb appeal with circular driveway, custom landscaping and entry gate. Enter through a large courtyard with outdoor living to spectacular custom entry doors and stone tiled Entry Hall. Large Great Room features fireplace, entertainer's bar, Dining area, custom built-ins and walls of glass with clerestory windows all overlooking amazing lake and mountain views. Open Chef's Kitchen with granite countertops, stainless appliances, island and counter seating. Informal Dining off of Kitchen has a unique rounded window and those great views. A large Media Room/Den/Office features wood built-ins and ceiling treatment, fireplace, wet bar, built-in entertainment center and office area with stone finishes. Primary Suite features custom built-ins, amazing views with dual sliders to the pool terrace and a massive bathroom with barrel vaulted ceiling, dual vanities and toilet rooms, spa tub and large granite shower as well as its own laundry room. 2 substantial guest suites with ensuite granite finished bathrooms, walk-in closets and sliders to outdoor patios. Expansive back entertaining area on the lakefront with pool, spa, waterfalls, built-in BBQ area with granite countertop and covered outdoor living and dining areas - a true desert resort with spectacular lake and mountain views. Come home to your Contemporary Desert Oasis!",
"created_at": 1699599893.481394,
"updated_at": 1700541013.568872
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/848b8e71-3d30-4a85-9fb3-319177ffb7e1",
"dom": 917,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$2,695,000",
"text_no_label": "2,695,000",
"value": 2695000
},
"original_price": {
"type": "formatted_attribute",
"text": "$2,695,000",
"text_no_label": "2,695,000",
"value": 2695000
},
"area": {
"type": "formatted_attribute",
"text": "5,142 SQFT",
"text_no_label": "5,142",
"value": 5142
},
"square_feet": {
"type": "formatted_attribute",
"text": "5,142 SQFT",
"text_no_label": "5,142",
"value": 5142
},
"square_meters": {
"type": "formatted_attribute",
"text": "478 SQM",
"text_no_label": "478",
"value": 478
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "19,602 SQFT",
"text_no_label": "19,602",
"value": 19602
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.45 Acres",
"text_no_label": "0.45",
"value": 0.45
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.45 Acres",
"text_no_label": "0.45",
"value": 0.45
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "1,821.09 SQM",
"text_no_label": "1,821.09",
"value": 1821.09
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3.2 Bathrooms",
"text_no_label": "3.2",
"value": "3.2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "5 Bathrooms",
"text_no_label": "5",
"value": "5"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "12159 Saint Andrews Drive",
"text_no_label": "12159 Saint Andrews Drive",
"value": "12159 Saint Andrews Drive"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Rancho Mirage, CA 92270",
"text_no_label": "Rancho Mirage, CA 92270",
"value": "Rancho Mirage, CA 92270"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Rancho Mirage",
"text_no_label": "Rancho Mirage",
"value": "Rancho Mirage"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Bomgardner Blenkinsop and As... of Bennion Deville Homes ([email protected] | (760) 799-5785)\nJohn Bomgardner",
"text_no_label": "Listing courtesy of Bomgardner Blenkinsop and As... of Bennion Deville Homes ([email protected] | (760) 799-5785)\nJohn Bomgardner",
"value": "Listing courtesy of Bomgardner Blenkinsop and As... of Bennion Deville Homes ([email protected] | (760) 799-5785)\nJohn Bomgardner"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Bomgardner Blenkinsop and As... | Bennion Deville Homes",
"text_no_label": "Bomgardner Blenkinsop and As... | Bennion Deville Homes",
"value": "Bomgardner Blenkinsop and As... | Bennion Deville Homes"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(760) 799-5785",
"text_no_label": "(760) 799-5785",
"value": "(760) 799-5785"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Bomgardner Blenkinsop and As...",
"text_no_label": "Bomgardner Blenkinsop and As...",
"value": "Bomgardner Blenkinsop and As..."
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(760) 799-5785",
"text_no_label": "(760) 799-5785",
"value": "(760) 799-5785"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "John Bomgardner",
"text_no_label": "John Bomgardner",
"value": "John Bomgardner"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "f197d2da-10ac-11ec-93bc-0271a4acc769",
"mls": "CRMLS",
"created_at": 1631109551.532109,
"updated_at": 1633591671.935304,
"deleted_at": 1645668452.997768,
"close_date": null,
"price": 890000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "40965106",
"list_office_name": "Merrill Signature Properties",
"selling_office_name": null,
"list_agent_mls_id": "BMLS-R01520715",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Donna Sapienza-Gutridge",
"list_agent_direct_work_phone": null,
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 37.950428,
"longitude": -121.715001,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "1130",
"street_name": "Jordan Ct",
"city": "Brentwood",
"state": "CA",
"postal_code": "94513",
"neighborhood": null,
"street_suffix": null,
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1631109551.221167,
"updated_at": 1633591671.806776,
"street_address": "1130 Jordan Ct"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 3,
"square_meters": 259.2923846399933,
"bedroom_count": 4,
"bathroom_count": 3,
"year_built": 2000,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 730.682409599981,
"lot_size_area": 0.18055555555555555,
"description": "The Beautiful Heritage Home built by Morrison Homes, APPLE BLOSSOM MODEL has so much to offer, 4 Bedrooms, 3 full Baths and a very large Office/Den, ( potential 5th bedroom) Sparkling solar heated pool (owned )Views of Mount Diablo, Wood Plantation Shutters, 2 Fire places located in the Family room and Primary Bedroom, Stunning remodeled Kitchen with gorgeous counters and backsplash, 3 Car garage All Nestled in a Quiet court location not far from downtown Brentwood and the Amazing Brentwood schools.",
"created_at": 1631109551.427797,
"updated_at": 1633591671.87632
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/f197d2da-10ac-11ec-93bc-0271a4acc769",
"dom": 1710,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$890,000",
"text_no_label": "890,000",
"value": 890000
},
"original_price": {
"type": "formatted_attribute",
"text": "$890,000",
"text_no_label": "890,000",
"value": 890000
},
"area": {
"type": "formatted_attribute",
"text": "2,791 SQFT",
"text_no_label": "2,791",
"value": 2791
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,791 SQFT",
"text_no_label": "2,791",
"value": 2791
},
"square_meters": {
"type": "formatted_attribute",
"text": "259 SQM",
"text_no_label": "259",
"value": 259
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "7,865 SQFT",
"text_no_label": "7,865",
"value": 7865
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.18 Acres",
"text_no_label": "0.18",
"value": 0.18
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.18 Acres",
"text_no_label": "0.18",
"value": 0.18
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "730.68 SQM",
"text_no_label": "730.68",
"value": 730.68
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "4 Bedrooms",
"text_no_label": "4",
"value": 4
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "1130 Jordan Ct",
"text_no_label": "1130 Jordan Ct",
"value": "1130 Jordan Ct"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Brentwood, CA 94513",
"text_no_label": "Brentwood, CA 94513",
"value": "Brentwood, CA 94513"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Brentwood",
"text_no_label": "Brentwood",
"value": "Brentwood"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Donna Sapienza-Gutridge of Merrill Signature Properties ([email protected])",
"text_no_label": "Listing courtesy of Donna Sapienza-Gutridge of Merrill Signature Properties ([email protected])",
"value": "Listing courtesy of Donna Sapienza-Gutridge of Merrill Signature Properties ([email protected])"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Donna Sapienza-Gutridge | Merrill Signature Properties",
"text_no_label": "Donna Sapienza-Gutridge | Merrill Signature Properties",
"value": "Donna Sapienza-Gutridge | Merrill Signature Properties"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Donna Sapienza-Gutridge",
"text_no_label": "Donna Sapienza-Gutridge",
"value": "Donna Sapienza-Gutridge"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "4c120758-07c4-11ed-b8af-1207d8a269df",
"mls": "CRMLS",
"created_at": 1658277518.958784,
"updated_at": 1665523384.32573,
"deleted_at": 1668314031.669777,
"close_date": null,
"price": 645000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "41002252",
"list_office_name": "Bay Realty",
"selling_office_name": null,
"list_agent_mls_id": "BMLS-R01002323",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Cynthia Johnson",
"list_agent_direct_work_phone": null,
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 37.76030643,
"longitude": -122.18441218,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "1603",
"street_name": "74Th Ave",
"city": "Oakland",
"state": "CA",
"postal_code": "94621",
"neighborhood": null,
"street_suffix": null,
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1658277518.631673,
"updated_at": 1665523384.143498,
"street_address": "1603 74Th Ave"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 2,
"square_meters": 137.21779007999646,
"bedroom_count": 3,
"bathroom_count": 2,
"year_built": 1983,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 498.8893247999871,
"lot_size_area": 0.12327823691460055,
"description": "Turnkey. Unique, Beautiful and Spacious 3 bed 2 bath home on huge lot with many possibilities and very recently updated. There is new paint inside and out. Updated bathrooms. Carpets and floors replaced. New Recessed lighting throughout. New heaters and thermostats installed recently. Front and Back porch stairs rebuilt and painted. Upper deck rebuilt and painted. Room enough to build a property in the rear. Close to BART, 580 13, and 880, Zoo Amtrak and Oakland Airport. Don't miss this one.",
"created_at": 1658277518.861517,
"updated_at": 1665523384.234877
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/4c120758-07c4-11ed-b8af-1207d8a269df",
"dom": 1395,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$645,000",
"text_no_label": "645,000",
"value": 645000
},
"original_price": {
"type": "formatted_attribute",
"text": "$645,000",
"text_no_label": "645,000",
"value": 645000
},
"area": {
"type": "formatted_attribute",
"text": "1,477 SQFT",
"text_no_label": "1,477",
"value": 1477
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,477 SQFT",
"text_no_label": "1,477",
"value": 1477
},
"square_meters": {
"type": "formatted_attribute",
"text": "137 SQM",
"text_no_label": "137",
"value": 137
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "5,370 SQFT",
"text_no_label": "5,370",
"value": 5370
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.12 Acres",
"text_no_label": "0.12",
"value": 0.12
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.12 Acres",
"text_no_label": "0.12",
"value": 0.12
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "498.89 SQM",
"text_no_label": "498.89",
"value": 498.89
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "1603 74Th Ave",
"text_no_label": "1603 74Th Ave",
"value": "1603 74Th Ave"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Oakland, CA 94621",
"text_no_label": "Oakland, CA 94621",
"value": "Oakland, CA 94621"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Oakland",
"text_no_label": "Oakland",
"value": "Oakland"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Cynthia Johnson of Bay Realty ([email protected])",
"text_no_label": "Listing courtesy of Cynthia Johnson of Bay Realty ([email protected])",
"value": "Listing courtesy of Cynthia Johnson of Bay Realty ([email protected])"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Cynthia Johnson | Bay Realty",
"text_no_label": "Cynthia Johnson | Bay Realty",
"value": "Cynthia Johnson | Bay Realty"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Cynthia Johnson",
"text_no_label": "Cynthia Johnson",
"value": "Cynthia Johnson"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "8550958c-c964-11ec-90be-0271a4acc769",
"mls": "CRMLS",
"created_at": 1651419411.220626,
"updated_at": 1651891481.979134,
"deleted_at": 1651955618.348831,
"close_date": null,
"price": 479000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "TR22089380",
"list_office_name": "Homecoin.com",
"selling_office_name": null,
"list_agent_mls_id": "TRMINEJON",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Jonathan Minerick",
"list_agent_direct_work_phone": "888-400-2513",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 34.239653,
"longitude": -116.864742,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "42976",
"street_name": "Sunset",
"city": "Big Bear Lake",
"state": "CA",
"postal_code": "92315",
"neighborhood": null,
"street_suffix": "Drive",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1651419411.197865,
"updated_at": 1651891481.925147,
"street_address": "42976 Sunset Drive"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 2,
"square_meters": 90.48756095999767,
"bedroom_count": 2,
"bathroom_count": 2,
"year_built": 1975,
"number_of_units": 1,
"lot_size_dimensions": null,
"lot_square_meters": 473.80550399998776,
"lot_size_area": 0.11707988980716254,
"description": "Charming cabin in desirable lower Mooonridge. Located by Bear Mountain and Snow Summit. Good Long term rental history and has great potential as a vacation rental. 2 bedroom, 2 Bath. ski slope views, deck, partially fenced backyard. New Vinyl Milgard windows. Perfect Airbnb Location",
"created_at": 1651419411.209219,
"updated_at": 1651891481.951682
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/8550958c-c964-11ec-90be-0271a4acc769",
"dom": 1475,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$479,000",
"text_no_label": "479,000",
"value": 479000
},
"original_price": {
"type": "formatted_attribute",
"text": "$479,000",
"text_no_label": "479,000",
"value": 479000
},
"area": {
"type": "formatted_attribute",
"text": "974 SQFT",
"text_no_label": "974",
"value": 974
},
"square_feet": {
"type": "formatted_attribute",
"text": "974 SQFT",
"text_no_label": "974",
"value": 974
},
"square_meters": {
"type": "formatted_attribute",
"text": "90 SQM",
"text_no_label": "90",
"value": 90
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "5,100 SQFT",
"text_no_label": "5,100",
"value": 5100
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.12 Acres",
"text_no_label": "0.12",
"value": 0.12
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.12 Acres",
"text_no_label": "0.12",
"value": 0.12
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "473.81 SQM",
"text_no_label": "473.81",
"value": 473.81
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "42976 Sunset Drive",
"text_no_label": "42976 Sunset Drive",
"value": "42976 Sunset Drive"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Big Bear Lake, CA 92315",
"text_no_label": "Big Bear Lake, CA 92315",
"value": "Big Bear Lake, CA 92315"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Big Bear Lake",
"text_no_label": "Big Bear Lake",
"value": "Big Bear Lake"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Jonathan Minerick of Homecoin.com ([email protected] | (888) 400-2513)",
"text_no_label": "Listing courtesy of Jonathan Minerick of Homecoin.com ([email protected] | (888) 400-2513)",
"value": "Listing courtesy of Jonathan Minerick of Homecoin.com ([email protected] | (888) 400-2513)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Jonathan Minerick | Homecoin.com",
"text_no_label": "Jonathan Minerick | Homecoin.com",
"value": "Jonathan Minerick | Homecoin.com"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(888) 400-2513",
"text_no_label": "888-400-2513",
"value": "888-400-2513"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Jonathan Minerick",
"text_no_label": "Jonathan Minerick",
"value": "Jonathan Minerick"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(888) 400-2513",
"text_no_label": "888-400-2513",
"value": "888-400-2513"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "6e6a1514-f339-4bc9-982d-788f0feca873",
"mls": "CRMLS",
"created_at": 1700004906.410443,
"updated_at": 1700566382.285526,
"deleted_at": null,
"close_date": null,
"price": 470000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "41044422",
"list_office_name": "Golden Gate Real Estate",
"selling_office_name": null,
"list_agent_mls_id": "BMLS-R01118101",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Jonathan Franich",
"list_agent_direct_work_phone": null,
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 37.94528,
"longitude": -122.04649,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "1376",
"street_name": "Tree Garden Pl",
"city": "Concord",
"state": "CA",
"postal_code": "94518",
"neighborhood": null,
"street_suffix": null,
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1700004906.373055,
"updated_at": 1700566382.279871,
"street_address": "1376 Tree Garden Pl"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 1,
"square_meters": 101.07850751999739,
"bedroom_count": 2,
"bathroom_count": 1.1,
"year_built": 1975,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": null,
"lot_size_area": null,
"description": "Don't miss out on this beautifully remodeled 2 bedroom, 1.5 bathroom townhouse in Concord. Updated kitchen features stainless steel appliances, quartz counter tops, upgraded cabinets and tile backsplash. Bathrooms feature new vanities with granite counters and brushed nickel fixtures. Stylish Luxury Vinyl Plank Flooring in common areas and wall-to-wall carpeting in bedrooms. Ceiling fans to help keep the unit comfortable. Central heating and air conditioning.. Spacious closets with mirrored doors and built-in organizers. Private back patio. Community Pool, laundry room and lush greenbelt in complex. Water and trash included in HOA Dues. One assigned parking space. One additional unassigned space can be used with parking permit. And use of up to one unassigned parking space. Close to schools, shopping, restaurants, Iron Horse Trail, and freeway.",
"created_at": 1700004906.396435,
"updated_at": 1700566382.282632
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/6e6a1514-f339-4bc9-982d-788f0feca873",
"dom": 912,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$470,000",
"text_no_label": "470,000",
"value": 470000
},
"original_price": {
"type": "formatted_attribute",
"text": "$470,000",
"text_no_label": "470,000",
"value": 470000
},
"area": {
"type": "formatted_attribute",
"text": "1,088 SQFT",
"text_no_label": "1,088",
"value": 1088
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,088 SQFT",
"text_no_label": "1,088",
"value": 1088
},
"square_meters": {
"type": "formatted_attribute",
"text": "101 SQM",
"text_no_label": "101",
"value": 101
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_area": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "1.1 Bathrooms",
"text_no_label": "1.1",
"value": "1.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "1376 Tree Garden Pl",
"text_no_label": "1376 Tree Garden Pl",
"value": "1376 Tree Garden Pl"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Concord, CA 94518",
"text_no_label": "Concord, CA 94518",
"value": "Concord, CA 94518"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Concord",
"text_no_label": "Concord",
"value": "Concord"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Jonathan Franich of Golden Gate Real Estate ([email protected])",
"text_no_label": "Listing courtesy of Jonathan Franich of Golden Gate Real Estate ([email protected])",
"value": "Listing courtesy of Jonathan Franich of Golden Gate Real Estate ([email protected])"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Jonathan Franich | Golden Gate Real Estate",
"text_no_label": "Jonathan Franich | Golden Gate Real Estate",
"value": "Jonathan Franich | Golden Gate Real Estate"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Jonathan Franich",
"text_no_label": "Jonathan Franich",
"value": "Jonathan Franich"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "f0841490-2a7b-11ee-8e7b-0e4bb9531bd9",
"mls": "CRMLS",
"created_at": 1690242229.959596,
"updated_at": 1695767555.47697,
"deleted_at": null,
"close_date": null,
"price": 1190000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "TR23135390",
"list_office_name": "Good Harvest Investment Group",
"selling_office_name": null,
"list_agent_mls_id": "HLEEJANE",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Jane Lee",
"list_agent_direct_work_phone": "909-636-4297",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 33.790422,
"longitude": -117.941519,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "11862",
"street_name": "Mahogany",
"city": "Garden Grove",
"state": "CA",
"postal_code": "92840",
"neighborhood": null,
"street_suffix": "Drive",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1690242229.89253,
"updated_at": 1695767555.39768,
"street_address": "11862 Mahogany Drive"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 242.94144959999372,
"bedroom_count": 3,
"bathroom_count": 2.1,
"year_built": 2003,
"number_of_units": 1,
"lot_size_dimensions": null,
"lot_square_meters": 387.59148287999,
"lot_size_area": 0.09577594123048669,
"description": "Beautiful 3-4 bedrooms home with a large master bedroom, 3 bedrooms and a nice loft upstairs. The living room with high ceiling and the office downstairs can be the 4th bedroom. This single family house is inside a small gated community with 5 houses total. Backyard has many mature tropical fruits trees and palm trees. The garage was newly painted and an A/C unit was installed. This home is conveniently located close to everything Garden Grove has to offer, 2.4 Miles to Disneyland and 26 Miles to the Huntington Beach.",
"created_at": 1690242229.939084,
"updated_at": 1695767555.439903
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/f0841490-2a7b-11ee-8e7b-0e4bb9531bd9",
"dom": 1025,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$1,190,000",
"text_no_label": "1,190,000",
"value": 1190000
},
"original_price": {
"type": "formatted_attribute",
"text": "$1,190,000",
"text_no_label": "1,190,000",
"value": 1190000
},
"area": {
"type": "formatted_attribute",
"text": "2,615 SQFT",
"text_no_label": "2,615",
"value": 2615
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,615 SQFT",
"text_no_label": "2,615",
"value": 2615
},
"square_meters": {
"type": "formatted_attribute",
"text": "243 SQM",
"text_no_label": "243",
"value": 243
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "4,172 SQFT",
"text_no_label": "4,172",
"value": 4172
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.1 Acres",
"text_no_label": "0.1",
"value": 0.1
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.1 Acres",
"text_no_label": "0.1",
"value": 0.1
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "387.59 SQM",
"text_no_label": "387.59",
"value": 387.59
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "11862 Mahogany Drive",
"text_no_label": "11862 Mahogany Drive",
"value": "11862 Mahogany Drive"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Garden Grove, CA 92840",
"text_no_label": "Garden Grove, CA 92840",
"value": "Garden Grove, CA 92840"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Garden Grove",
"text_no_label": "Garden Grove",
"value": "Garden Grove"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Jane Lee of Good Harvest Investment Group ([email protected] | (909) 636-4297)",
"text_no_label": "Listing courtesy of Jane Lee of Good Harvest Investment Group ([email protected] | (909) 636-4297)",
"value": "Listing courtesy of Jane Lee of Good Harvest Investment Group ([email protected] | (909) 636-4297)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Jane Lee | Good Harvest Investment Group",
"text_no_label": "Jane Lee | Good Harvest Investment Group",
"value": "Jane Lee | Good Harvest Investment Group"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(909) 636-4297",
"text_no_label": "909-636-4297",
"value": "909-636-4297"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Jane Lee",
"text_no_label": "Jane Lee",
"value": "Jane Lee"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(909) 636-4297",
"text_no_label": "909-636-4297",
"value": "909-636-4297"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "81f0df99-a2b4-4ea4-b575-e7e87fc9e859",
"mls": "CRMLS",
"created_at": 1705951007.016396,
"updated_at": 1706226590.485211,
"deleted_at": null,
"close_date": null,
"price": 320000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "219105703DA",
"list_office_name": "Coldwell Banker Realty",
"selling_office_name": null,
"list_agent_mls_id": "CDAR-d84459",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Ariana Lopez",
"list_agent_direct_work_phone": "(760) 601-5137",
"co_list_agent_full_name": "",
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 33.817731,
"longitude": -116.487572,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "43",
"street_name": "Lakeview",
"city": "Cathedral City",
"state": "CA",
"postal_code": "92234",
"neighborhood": null,
"street_suffix": "Circle",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1705951006.810723,
"updated_at": 1706226590.389633,
"street_address": "43 Lakeview Circle"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Condo",
"half_bathroom_count": 1,
"full_bathroom_count": 1,
"square_meters": 107.02430207999723,
"bedroom_count": 2,
"bathroom_count": 1.1,
"year_built": 1981,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 40.505725439998955,
"lot_size_area": 0.010009182736455464,
"description": "TAKE ADVANTAGE OF THIS GREAT DEAL! Priced perfectly for its new owner. Two Story unit at Ramon Lakeview Villas! This Beautiful condo is perfectly located just 5 mins to the Palm Springs Airport and downtown Palm Springs. The recent updates in the kitchen and baths have added a great touch to a great living space. 2 bedrooms upstairs, stacked washer and dryer in hall, powder room, 1 full bath with 2 sinks and beautiful renovated shower. Both patio and balcony have glass sliding doors that overlook a lovely small lake with mountain views. This is a fee land ( No land lease )!!! The amenities and low HOA dues in this gated community make it even more appealing! It includes trash, roof, water, landscape and exterior maintenance. If you're interested, come see the place for yourself!",
"created_at": 1705951006.958509,
"updated_at": 1706226590.437833
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/81f0df99-a2b4-4ea4-b575-e7e87fc9e859",
"dom": 843,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$320,000",
"text_no_label": "320,000",
"value": 320000
},
"original_price": {
"type": "formatted_attribute",
"text": "$320,000",
"text_no_label": "320,000",
"value": 320000
},
"area": {
"type": "formatted_attribute",
"text": "1,152 SQFT",
"text_no_label": "1,152",
"value": 1152
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,152 SQFT",
"text_no_label": "1,152",
"value": 1152
},
"square_meters": {
"type": "formatted_attribute",
"text": "107 SQM",
"text_no_label": "107",
"value": 107
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "436 SQFT",
"text_no_label": "436",
"value": 436
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.01 Acres",
"text_no_label": "0.01",
"value": 0.01
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.01 Acres",
"text_no_label": "0.01",
"value": 0.01
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "40.51 SQM",
"text_no_label": "40.51",
"value": 40.51
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "1.1 Bathrooms",
"text_no_label": "1.1",
"value": "1.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "43 Lakeview Circle",
"text_no_label": "43 Lakeview Circle",
"value": "43 Lakeview Circle"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Cathedral City, CA 92234",
"text_no_label": "Cathedral City, CA 92234",
"value": "Cathedral City, CA 92234"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Cathedral City",
"text_no_label": "Cathedral City",
"value": "Cathedral City"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Ariana Lopez of Coldwell Banker Realty ([email protected] | (760) 601-5137)",
"text_no_label": "Listing courtesy of Ariana Lopez of Coldwell Banker Realty ([email protected] | (760) 601-5137)",
"value": "Listing courtesy of Ariana Lopez of Coldwell Banker Realty ([email protected] | (760) 601-5137)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Ariana Lopez | Coldwell Banker Realty",
"text_no_label": "Ariana Lopez | Coldwell Banker Realty",
"value": "Ariana Lopez | Coldwell Banker Realty"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(760) 601-5137",
"text_no_label": "(760) 601-5137",
"value": "(760) 601-5137"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Ariana Lopez",
"text_no_label": "Ariana Lopez",
"value": "Ariana Lopez"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(760) 601-5137",
"text_no_label": "(760) 601-5137",
"value": "(760) 601-5137"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "273b676a-0644-11ee-9734-0e4bb9531bd9",
"mls": "CRMLS",
"created_at": 1686260028.081141,
"updated_at": 1702050717.176522,
"deleted_at": null,
"close_date": null,
"price": 129900,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "219096065DA",
"list_office_name": "Desert Elite Properties, Inc.",
"selling_office_name": null,
"list_agent_mls_id": "CDAR-D74259",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Kara Moscato",
"list_agent_direct_work_phone": "(760) 670-9703",
"co_list_agent_full_name": "Valerie Leuthold",
"co_list_agent_mls_id": "CDAR-D77589",
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": "",
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 33.902639,
"longitude": -116.359235,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "74711",
"street_name": "Dillon",
"city": "Desert Hot Springs",
"state": "CA",
"postal_code": "92241",
"neighborhood": null,
"street_suffix": "Road",
"unit_number": "513",
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1686260028.027935,
"updated_at": 1702050717.067155,
"street_address": "74711 Dillon Road Unit 513"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 0,
"full_bathroom_count": 2,
"square_meters": 115.942993919997,
"bedroom_count": 2,
"bathroom_count": 2,
"year_built": 1989,
"number_of_units": null,
"lot_size_dimensions": "Buyer to verify lot size",
"lot_square_meters": 185.8060799999952,
"lot_size_area": 0.04591368227731864,
"description": "Welcome to Family Friendly Sky Valley Resort! This 2 bedroom, 2 bathroom, plus den boasts laminate flooring throughout, open concept living/kitchen area, individual laundry room, covered front porch, covered patio, shed and is light and bright! Enjoy the rare and healing hot-mineral water in the pools and spas, pickle ball, tennis, dog park, chapel, open Desert hiking under the beautiful skies of Sky Valley Resort, This home is a perfect full-time home or vacation get-a-way!",
"created_at": 1686260028.064082,
"updated_at": 1702050717.136166
},
"user_listing_notification_setting": null,
"mls_display_name": "CRMLS",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/273b676a-0644-11ee-9734-0e4bb9531bd9",
"dom": 1071,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$129,900",
"text_no_label": "129,900",
"value": 129900
},
"original_price": {
"type": "formatted_attribute",
"text": "$129,900",
"text_no_label": "129,900",
"value": 129900
},
"area": {
"type": "formatted_attribute",
"text": "1,248 SQFT",
"text_no_label": "1,248",
"value": 1248
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,248 SQFT",
"text_no_label": "1,248",
"value": 1248
},
"square_meters": {
"type": "formatted_attribute",
"text": "116 SQM",
"text_no_label": "116",
"value": 116
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "2,000 SQFT",
"text_no_label": "2,000",
"value": 2000
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.05 Acres",
"text_no_label": "0.05",
"value": 0.05
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.05 Acres",
"text_no_label": "0.05",
"value": 0.05
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "185.81 SQM",
"text_no_label": "185.81",
"value": 185.81
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "2 Bedrooms",
"text_no_label": "2",
"value": 2
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "74711 Dillon Road Unit 513",
"text_no_label": "74711 Dillon Road Unit 513",
"value": "74711 Dillon Road Unit 513"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Desert Hot Springs, CA 92241",
"text_no_label": "Desert Hot Springs, CA 92241",
"value": "Desert Hot Springs, CA 92241"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Desert Hot Springs",
"text_no_label": "Desert Hot Springs",
"value": "Desert Hot Springs"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Kara Moscato of Desert Elite Properties, Inc. ([email protected] | (760) 670-9703)\nValerie Leuthold",
"text_no_label": "Listing courtesy of Kara Moscato of Desert Elite Properties, Inc. ([email protected] | (760) 670-9703)\nValerie Leuthold",
"value": "Listing courtesy of Kara Moscato of Desert Elite Properties, Inc. ([email protected] | (760) 670-9703)\nValerie Leuthold"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Kara Moscato | Desert Elite Properties, Inc.",
"text_no_label": "Kara Moscato | Desert Elite Properties, Inc.",
"value": "Kara Moscato | Desert Elite Properties, Inc."
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(760) 670-9703",
"text_no_label": "(760) 670-9703",
"value": "(760) 670-9703"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Kara Moscato",
"text_no_label": "Kara Moscato",
"value": "Kara Moscato"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(760) 670-9703",
"text_no_label": "(760) 670-9703",
"value": "(760) 670-9703"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": "Valerie Leuthold",
"text_no_label": "Valerie Leuthold",
"value": "Valerie Leuthold"
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "e26649b4-ed28-11ec-9a3c-0271a4acc769",
"mls": "HAR",
"created_at": 1655352039.44719,
"updated_at": 1658907813.27908,
"deleted_at": 1658909723.305659,
"close_date": null,
"price": 224999,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "68861746",
"list_office_name": "JLA Realty",
"selling_office_name": null,
"list_agent_mls_id": "Cbarham",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Chad Barham",
"list_agent_direct_work_phone": "281-772-8350",
"co_list_agent_full_name": null,
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": null,
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 29.375257,
"longitude": -94.981166,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "1912",
"street_name": "Bellview",
"city": "La Marque",
"state": "TX",
"postal_code": "77568",
"neighborhood": "",
"street_suffix": null,
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1655352039.401652,
"updated_at": 1658907813.272339,
"street_address": "1912 Bellview"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 150.50307044844342,
"bedroom_count": 3,
"bathroom_count": 2.1,
"year_built": 2022,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 596.3451908694805,
"lot_size_area": null,
"description": "This beautiful Censeo homes is under construction and is an energy efficient home. Absolutely charming, with open concept kitchen overlooking the large living-dining combo, which makes it perfect for entertaining. Beautiful black appliance package. Moen plumbing fixtures. Fully sheetrocked garage, Rounded sheetrock corners, Engineered and inspected by Third Party Engineer, 14.5 Seer Hvac System. Double pane insulated low E windows, Continuous soffit vents and air hawk ventilation system, LP Tech shield radiant barrier decking, James hardi siding. Warranty 1 year workmanship 2 year all systems Plumbing and Electrical. 10 year structural and Hvac and appliance warrant's. Do not let your client buy a resale with 300$ to 400$ energy bills. Our homes average 75$",
"created_at": 1655352039.432169,
"updated_at": 1658907813.274766
},
"user_listing_notification_setting": null,
"mls_display_name": "HAR",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/e26649b4-ed28-11ec-9a3c-0271a4acc769",
"dom": 1429,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$224,999",
"text_no_label": "224,999",
"value": 224999
},
"original_price": {
"type": "formatted_attribute",
"text": "$224,999",
"text_no_label": "224,999",
"value": 224999
},
"area": {
"type": "formatted_attribute",
"text": "1,620 SQFT",
"text_no_label": "1,620",
"value": 1620
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,620 SQFT",
"text_no_label": "1,620",
"value": 1620
},
"square_meters": {
"type": "formatted_attribute",
"text": "151 SQM",
"text_no_label": "151",
"value": 151
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_area": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "1912 Bellview",
"text_no_label": "1912 Bellview",
"value": "1912 Bellview"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "La Marque, TX 77568",
"text_no_label": "La Marque, TX 77568",
"value": "La Marque, TX 77568"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "La Marque",
"text_no_label": "La Marque",
"value": "La Marque"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Chad Barham of JLA Realty ([email protected] | (281) 772-8350)",
"text_no_label": "Listing courtesy of Chad Barham of JLA Realty ([email protected] | (281) 772-8350)",
"value": "Listing courtesy of Chad Barham of JLA Realty ([email protected] | (281) 772-8350)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Chad Barham | JLA Realty",
"text_no_label": "Chad Barham | JLA Realty",
"value": "Chad Barham | JLA Realty"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(281) 772-8350",
"text_no_label": "281-772-8350",
"value": "281-772-8350"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Chad Barham",
"text_no_label": "Chad Barham",
"value": "Chad Barham"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(281) 772-8350",
"text_no_label": "281-772-8350",
"value": "281-772-8350"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "33d75e93-1029-499f-8965-3673c86fd0ff",
"mls": "HAR",
"created_at": 1695253338.728306,
"updated_at": 1698011403.218374,
"deleted_at": null,
"close_date": null,
"price": 269000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "81459019",
"list_office_name": "JNR",
"selling_office_name": null,
"list_agent_mls_id": "LPimentel",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Liliana Pimentel",
"list_agent_direct_work_phone": "7138731155",
"co_list_agent_full_name": null,
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": null,
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 30.259106,
"longitude": -95.077494,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "527",
"street_name": "County Road 340",
"city": "Cleveland",
"state": "TX",
"postal_code": "77327",
"neighborhood": "Bella Vista Sec 2",
"street_suffix": null,
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1695253338.716437,
"updated_at": 1698011403.128652,
"street_address": "527 County Road 340"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": null,
"full_bathroom_count": 2,
"square_meters": 147.2514609017178,
"bedroom_count": 3,
"bathroom_count": 2,
"year_built": 2023,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": null,
"lot_size_area": 0.5,
"description": "Shiny and New Stunning 3Bed,2Bath Home that sits on 1/2 an Acre Corner Lot. Upon entrance you are greeted by high ceilings in the living area that leads into the dining room and kitchen. The kitchen includes the latest LG ThinQ Appliances, the stove has an oven that boasts a built in Air Fryer, the fridge features a Craft Ice Maker, the dishwasher accommodates with multiple settings. The backyard is great in size. Schedule your showing on this must see home. Please verify room sizes.",
"created_at": 1695253338.723838,
"updated_at": 1698011403.164195
},
"user_listing_notification_setting": null,
"mls_display_name": "HAR",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/33d75e93-1029-499f-8965-3673c86fd0ff",
"dom": 967,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$269,000",
"text_no_label": "269,000",
"value": 269000
},
"original_price": {
"type": "formatted_attribute",
"text": "$269,000",
"text_no_label": "269,000",
"value": 269000
},
"area": {
"type": "formatted_attribute",
"text": "1,585 SQFT",
"text_no_label": "1,585",
"value": 1585
},
"square_feet": {
"type": "formatted_attribute",
"text": "1,585 SQFT",
"text_no_label": "1,585",
"value": 1585
},
"square_meters": {
"type": "formatted_attribute",
"text": "147 SQM",
"text_no_label": "147",
"value": 147
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": "21,780 SQFT",
"text_no_label": "21,780",
"value": 21780
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": "0.5 Acres",
"text_no_label": "0.5",
"value": 0.5
},
"lot_size_area": {
"type": "formatted_attribute",
"text": "0.5 Acres",
"text_no_label": "0.5",
"value": 0.5
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": "2,023.43 SQM",
"text_no_label": "2,023.43",
"value": 2023.43
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "2 Bathrooms",
"text_no_label": "2",
"value": "2"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "527 County Road 340",
"text_no_label": "527 County Road 340",
"value": "527 County Road 340"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Bella Vista Sec 2, Cleveland, TX 77327",
"text_no_label": "Bella Vista Sec 2, Cleveland, TX 77327",
"value": "Bella Vista Sec 2, Cleveland, TX 77327"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Cleveland",
"text_no_label": "Cleveland",
"value": "Cleveland"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Liliana Pimentel of JNR ([email protected] | (713) 873-1155)",
"text_no_label": "Listing courtesy of Liliana Pimentel of JNR ([email protected] | (713) 873-1155)",
"value": "Listing courtesy of Liliana Pimentel of JNR ([email protected] | (713) 873-1155)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Liliana Pimentel | JNR",
"text_no_label": "Liliana Pimentel | JNR",
"value": "Liliana Pimentel | JNR"
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(713) 873-1155",
"text_no_label": "7138731155",
"value": "7138731155"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Liliana Pimentel",
"text_no_label": "Liliana Pimentel",
"value": "Liliana Pimentel"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(713) 873-1155",
"text_no_label": "7138731155",
"value": "7138731155"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
},
{
"type": "compact_listing",
"id": "2bdaee8e-2577-11ed-92e0-0e4bb9531bd9",
"mls": "HAR",
"created_at": 1661542928.545759,
"updated_at": 1665417094.09062,
"deleted_at": null,
"close_date": null,
"price": 680000,
"status": "Active",
"original_mls_status": "Active",
"currency": "USD",
"mls_number": "10559664",
"list_office_name": "Keller Williams Realty C. P.",
"selling_office_name": null,
"list_agent_mls_id": "emilydiec",
"list_agent_email": "[email protected]",
"list_agent_full_name": "Emily Dieckmann",
"list_agent_direct_work_phone": "512-645-4000",
"co_list_agent_full_name": null,
"co_list_agent_mls_id": null,
"selling_agent_mls_id": null,
"selling_agent_email": null,
"selling_agent_full_name": null,
"selling_agent_direct_work_phone": null,
"co_selling_agent_mls_id": null,
"favorited_in": null,
"location": {
"latitude": 30.434509,
"longitude": -98.010961,
"type": "location"
},
"gallery_image_urls": [],
"address": {
"type": "compact_address",
"street_number": "21200",
"street_name": "High",
"city": "Lago Vista",
"state": "TX",
"postal_code": "78645",
"neighborhood": "",
"street_suffix": "Drive",
"unit_number": null,
"country": "United States",
"country_code": "USA",
"street_dir_prefix": null,
"street_dir_suffix": null,
"created_at": 1661542928.525077,
"updated_at": 1665417094.077917,
"street_address": "21200 High Drive"
},
"open_houses": null,
"compact_property": {
"type": "compact_property",
"property_type": "Residential",
"property_subtype": "RES-Single Family",
"half_bathroom_count": 1,
"full_bathroom_count": 2,
"square_meters": 226.59073384182315,
"bedroom_count": 3,
"bathroom_count": 2.1,
"year_built": 1999,
"number_of_units": null,
"lot_size_dimensions": null,
"lot_square_meters": 2826.299018013917,
"lot_size_area": null,
"description": "VIEWS!! This beautiful homes sits on over half an acre and offers spectacular lake and hill country views! When you walk in you are greeted with amazing Hill country views, then once you venture out onto the large covered balcony you can take in views of lake Travis! This home has an open concept living and eat-in kitchen with a separate formal dining room for those special occasions. The master and laundry are located on the main level for convenience. Downstairs you have another living area and two more bedrooms with a full bathroom. You can also access the peaceful screened in porch, the perfect place to take in the breathtaking sunsets or sunrises!The lakeside community of Lago Vista includes 9 private waterfront parks, boat ramps, pool, tennis courts, gym, playgrounds and more!",
"created_at": 1661542928.538297,
"updated_at": 1665417094.084469
},
"user_listing_notification_setting": null,
"mls_display_name": "HAR",
"cover_image_url": null,
"_url": "https://irish.rechat.com/dashboard/mls/2bdaee8e-2577-11ed-92e0-0e4bb9531bd9",
"dom": 1357,
"formatted": {
"type": "formatted_listing",
"price": {
"type": "formatted_attribute",
"text": "$680,000",
"text_no_label": "680,000",
"value": 680000
},
"original_price": {
"type": "formatted_attribute",
"text": "$680,000",
"text_no_label": "680,000",
"value": 680000
},
"area": {
"type": "formatted_attribute",
"text": "2,439 SQFT",
"text_no_label": "2,439",
"value": 2439
},
"square_feet": {
"type": "formatted_attribute",
"text": "2,439 SQFT",
"text_no_label": "2,439",
"value": 2439
},
"square_meters": {
"type": "formatted_attribute",
"text": "227 SQM",
"text_no_label": "227",
"value": 227
},
"lot_size_square_feet": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_acres": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_area": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"lot_size_square_meters": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"building_area_total": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bedroom_count": {
"type": "formatted_attribute",
"text": "3 Bedrooms",
"text_no_label": "3",
"value": 3
},
"basement_bedroom_count": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"bathrooms": {
"type": "formatted_attribute",
"text": "2.1 Bathrooms",
"text_no_label": "2.1",
"value": "2.1"
},
"total_bathroom_count": {
"type": "formatted_attribute",
"text": "3 Bathrooms",
"text_no_label": "3",
"value": "3"
},
"parking_spaces": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"street_address": {
"type": "formatted_attribute",
"text": "21200 High Drive",
"text_no_label": "21200 High Drive",
"value": "21200 High Drive"
},
"full_address": {
"type": "formatted_attribute"
},
"address_line_2": {
"type": "formatted_attribute",
"text": "Lago Vista, TX 78645",
"text_no_label": "Lago Vista, TX 78645",
"value": "Lago Vista, TX 78645"
},
"region": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"city_and_region": {
"type": "formatted_attribute",
"text": "Lago Vista",
"text_no_label": "Lago Vista",
"value": "Lago Vista"
},
"courtesy": {
"type": "formatted_attribute",
"text": "Listing courtesy of Emily Dieckmann of Keller Williams Realty C. P. ([email protected] | (512) 645-4000)",
"text_no_label": "Listing courtesy of Emily Dieckmann of Keller Williams Realty C. P. ([email protected] | (512) 645-4000)",
"value": "Listing courtesy of Emily Dieckmann of Keller Williams Realty C. P. ([email protected] | (512) 645-4000)"
},
"listed_by": {
"type": "formatted_attribute",
"text": "Listed by: Emily Dieckmann | Keller Williams Realty C. P.",
"text_no_label": "Emily Dieckmann | Keller Williams Realty C. P.",
"value": "Emily Dieckmann | Keller Williams Realty C. P."
},
"listed_by_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"listed_by_phone": {
"type": "formatted_attribute",
"text": "(512) 645-4000",
"text_no_label": "512-645-4000",
"value": "512-645-4000"
},
"list_agent_name": {
"type": "formatted_attribute",
"text": "Emily Dieckmann",
"text_no_label": "Emily Dieckmann",
"value": "Emily Dieckmann"
},
"list_agent_email": {
"type": "formatted_attribute",
"text": "[email protected]",
"text_no_label": "[email protected]",
"value": "[email protected]"
},
"list_agent_phone": {
"type": "formatted_attribute",
"text": "(512) 645-4000",
"text_no_label": "512-645-4000",
"value": "512-645-4000"
},
"co_list_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_list_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_name": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_email": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"co_selling_agent2_phone": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"unexempt_taxes": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
},
"land_tenure": {
"type": "formatted_attribute",
"text": null,
"text_no_label": null,
"value": null
}
}
}
],
"info": {
"count": 50,
"total": 0
}
}Filter micro listings ¶
Filter micro listingsPOST/portals/:id/listings/micro/filter
Stateless listing search returning matching listings in the
micro_listing shape (used by map clusters). Mirrors the agent-facing
POST /listings/micro/filter.
id (uuid) ID of the portal
Example URI
- id
string(required) Example: 996a4087-4141-40f3-94cd-49d6462af666
Body
{
"property_types": [
"Residential"
],
"listing_statuses": [
"Active"
],
"minimum_price": 0,
"maximum_price": 9223372036854776000
}200Body
{
"code": "OK",
"data": [
{
"type": "micro_listing",
"id": "7ff2fad0-cc63-11e5-913f-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$1,350,000",
"text_no_label": "1,350,000",
"value": 1350000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.7884951,
"longitude": -96.80921389999999,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "033840ba-a9c0-11e5-8893-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$599,990",
"text_no_label": "599,990",
"value": 599990
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.8215487,
"longitude": -96.8026835,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "8e6d1eea-9ecf-11e5-8199-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$265,000",
"text_no_label": "265,000",
"value": 265000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.82235,
"longitude": -96.8130061,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "d4e99ca0-a40f-11e5-a8b8-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$725,000",
"text_no_label": "725,000",
"value": 725000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.8215487,
"longitude": -96.8026835,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "69fb7e54-b88c-11e5-a56f-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$599,000",
"text_no_label": "599,000",
"value": 599000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.820951,
"longitude": -96.81188499999999,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "5a96928a-a50b-11e5-89c6-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$719,000",
"text_no_label": "719,000",
"value": 719000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.8215487,
"longitude": -96.8026835,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "06d1cdc2-be10-11e5-a85f-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$575,000",
"text_no_label": "575,000",
"value": 575000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.8198,
"longitude": -96.8123449,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "d6d79d92-d41a-11e5-bf12-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$739,000",
"text_no_label": "739,000",
"value": 739000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.787755,
"longitude": -96.8091541,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "33836686-d0db-11e5-b351-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$770,000",
"text_no_label": "770,000",
"value": 770000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.7884951,
"longitude": -96.80921389999999,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "fd2f7bea-be12-11e5-a1cd-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$500,000",
"text_no_label": "500,000",
"value": 500000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.8198,
"longitude": -96.8123449,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "cdaef89c-cb9a-11e5-b4c2-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$7,995,000",
"text_no_label": "7,995,000",
"value": 7995000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.7884951,
"longitude": -96.80921389999999,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "33f97c1a-b88d-11e5-9634-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$525,000",
"text_no_label": "525,000",
"value": 525000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.820951,
"longitude": -96.81188499999999,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "73525c44-b48a-11e5-b2ad-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$255,900",
"text_no_label": "255,900",
"value": 255900
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.818868,
"longitude": -96.81230599999999,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "7fd296ce-b326-11e5-9d3c-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$279,900",
"text_no_label": "279,900",
"value": 279900
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.7860229,
"longitude": -96.8091183,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "3a603d2a-9eb9-11e5-a82d-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$450,000",
"text_no_label": "450,000",
"value": 450000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.787755,
"longitude": -96.8091541,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "7e84d768-a814-11e5-8e1e-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$399,900",
"text_no_label": "399,900",
"value": 399900
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.7884951,
"longitude": -96.80921389999999,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "52f2ba0a-af4b-11e5-a878-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$695,000",
"text_no_label": "695,000",
"value": 695000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.819992,
"longitude": -96.8060579,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "58a718e4-9f54-11e5-a0f8-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$999,000",
"text_no_label": "999,000",
"value": 999000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.7884951,
"longitude": -96.80921389999999,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "a24c374a-b88b-11e5-9643-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$550,000",
"text_no_label": "550,000",
"value": 550000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.820951,
"longitude": -96.81188499999999,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "8e3c7b1c-be11-11e5-aac7-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$575,000",
"text_no_label": "575,000",
"value": 575000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.8198,
"longitude": -96.8123449,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "839acca8-ba34-11e5-849e-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$479,000",
"text_no_label": "479,000",
"value": 479000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.818763,
"longitude": -96.809533,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "ff96cf30-d36d-11e5-89e7-f23c91c841bd",
"price": {
"type": "formatted_attribute",
"text": "$649,000",
"text_no_label": "649,000",
"value": 649000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.819487,
"longitude": -96.80943300000001,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "4d3aa6a2-379e-11ee-bf0d-0e4bb9531bd9",
"price": {
"type": "formatted_attribute",
"text": "$2,440,000",
"text_no_label": "2,440,000",
"value": 2440000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.85481,
"longitude": -96.840389,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "f3872a89-0713-4c58-bc00-235bf3ab10f8",
"price": {
"type": "formatted_attribute",
"text": "$189,999",
"text_no_label": "189,999",
"value": 189999
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.540779,
"longitude": -93.753739,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "6ac26582-4e70-4f70-9128-c38e7e12db0a",
"price": {
"type": "formatted_attribute",
"text": "$1,779,000",
"text_no_label": "1,779,000",
"value": 1779000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.968945,
"longitude": -96.976808,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "3202806c-d259-11ed-9a61-0e4bb9531bd9",
"price": {
"type": "formatted_attribute",
"text": "$409,996",
"text_no_label": "409,996",
"value": 409996
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.891061,
"longitude": -97.557085,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "fef90368-fedb-11ec-ae42-0aa41e28002f",
"price": {
"type": "formatted_attribute",
"text": "$579,999",
"text_no_label": "579,999",
"value": 579999
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 33.657421,
"longitude": -117.164273,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "e8a75e72-64aa-11ed-b489-0e4bb9531bd9",
"price": {
"type": "formatted_attribute",
"text": "$722,888",
"text_no_label": "722,888",
"value": 722888
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 33.893957,
"longitude": -117.232176,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "c31fa034-fae0-11ed-8506-0e4bb9531bd9",
"price": {
"type": "formatted_attribute",
"text": "$125,000",
"text_no_label": "125,000",
"value": 125000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 34.024094,
"longitude": -117.053562,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "2a3569c6-f375-11ec-9ed1-0271a4acc769",
"price": {
"type": "formatted_attribute",
"text": "$825,000",
"text_no_label": "825,000",
"value": 825000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 32.85421341,
"longitude": -116.96181192,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "5b326623-c8bc-413b-8bfe-89cf32454af2",
"price": {
"type": "formatted_attribute",
"text": "$1,358,200",
"text_no_label": "1,358,200",
"value": 1358200
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 34.418847,
"longitude": -118.523181,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "bb499242-5259-11ec-935d-0271a4acc769",
"price": {
"type": "formatted_attribute",
"text": "$379,000",
"text_no_label": "379,000",
"value": 379000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 39.533217,
"longitude": -122.205399,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "4377486c-b83d-4087-b023-def7686e9747",
"price": {
"type": "formatted_attribute",
"text": "$998,000",
"text_no_label": "998,000",
"value": 998000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 33.77936,
"longitude": -118.017865,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "d7f48d71-99ac-49ef-bf26-bf7cd7551d72",
"price": {
"type": "formatted_attribute",
"text": "$689,840",
"text_no_label": "689,840",
"value": 689840
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 33.768778,
"longitude": -117.453142,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "724a948c-0fab-11ed-9e81-0aa41e28002f",
"price": {
"type": "formatted_attribute",
"text": "$440,000",
"text_no_label": "440,000",
"value": 440000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 34.108734,
"longitude": -117.352384,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "f9fdaf36-4b3d-11ed-b8cf-0e4bb9531bd9",
"price": {
"type": "formatted_attribute",
"text": "$1,100,000",
"text_no_label": "1,100,000",
"value": 1100000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 33.579341,
"longitude": -117.729095,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "e62efa5e-ee69-11ec-be43-0271a4acc769",
"price": {
"type": "formatted_attribute",
"text": "$590,000",
"text_no_label": "590,000",
"value": 590000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 34.196852,
"longitude": -118.328137,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "433249d8-427e-11ec-aea0-0271a4acc769",
"price": {
"type": "formatted_attribute",
"text": "$1,000,000",
"text_no_label": "1,000,000",
"value": 1000000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 33.603606,
"longitude": -116.609388,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "595c5134-8d70-11ed-9466-0e4bb9531bd9",
"price": {
"type": "formatted_attribute",
"text": "$15,995,000",
"text_no_label": "15,995,000",
"value": 15995000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 34.176769,
"longitude": -118.806153,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "848b8e71-3d30-4a85-9fb3-319177ffb7e1",
"price": {
"type": "formatted_attribute",
"text": "$2,695,000",
"text_no_label": "2,695,000",
"value": 2695000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 33.791572,
"longitude": -116.418385,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "f197d2da-10ac-11ec-93bc-0271a4acc769",
"price": {
"type": "formatted_attribute",
"text": "$890,000",
"text_no_label": "890,000",
"value": 890000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 37.950428,
"longitude": -121.715001,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "4c120758-07c4-11ed-b8af-1207d8a269df",
"price": {
"type": "formatted_attribute",
"text": "$645,000",
"text_no_label": "645,000",
"value": 645000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 37.76030643,
"longitude": -122.18441218,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "8550958c-c964-11ec-90be-0271a4acc769",
"price": {
"type": "formatted_attribute",
"text": "$479,000",
"text_no_label": "479,000",
"value": 479000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 34.239653,
"longitude": -116.864742,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "6e6a1514-f339-4bc9-982d-788f0feca873",
"price": {
"type": "formatted_attribute",
"text": "$470,000",
"text_no_label": "470,000",
"value": 470000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 37.94528,
"longitude": -122.04649,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "f0841490-2a7b-11ee-8e7b-0e4bb9531bd9",
"price": {
"type": "formatted_attribute",
"text": "$1,190,000",
"text_no_label": "1,190,000",
"value": 1190000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 33.790422,
"longitude": -117.941519,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "81f0df99-a2b4-4ea4-b575-e7e87fc9e859",
"price": {
"type": "formatted_attribute",
"text": "$320,000",
"text_no_label": "320,000",
"value": 320000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 33.817731,
"longitude": -116.487572,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "273b676a-0644-11ee-9734-0e4bb9531bd9",
"price": {
"type": "formatted_attribute",
"text": "$129,900",
"text_no_label": "129,900",
"value": 129900
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 33.902639,
"longitude": -116.359235,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "e26649b4-ed28-11ec-9a3c-0271a4acc769",
"price": {
"type": "formatted_attribute",
"text": "$224,999",
"text_no_label": "224,999",
"value": 224999
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 29.375257,
"longitude": -94.981166,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "33d75e93-1029-499f-8965-3673c86fd0ff",
"price": {
"type": "formatted_attribute",
"text": "$269,000",
"text_no_label": "269,000",
"value": 269000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 30.259106,
"longitude": -95.077494,
"is_favorited": false,
"has_open_house": false
},
{
"type": "micro_listing",
"id": "2bdaee8e-2577-11ed-92e0-0e4bb9531bd9",
"price": {
"type": "formatted_attribute",
"text": "$680,000",
"text_no_label": "680,000",
"value": 680000
},
"status": {
"type": "formatted_attribute",
"text": "Active",
"text_no_label": "Active",
"value": "Active"
},
"latitude": 30.434509,
"longitude": -98.010961,
"is_favorited": false,
"has_open_house": false
}
],
"info": {
"count": 50,
"total": 0
}
}Count listings ¶
Count listingsPOST/portals/:id/listings/count
Stateless count of listings matching the criteria. Returns the total in
info.total; no listing rows are returned.
id (uuid) ID of the portal
Example URI
- id
string(required) Example: 996a4087-4141-40f3-94cd-49d6462af666
Body
{
"property_types": [
"Residential"
],
"listing_statuses": [
"Active"
],
"minimum_price": 0,
"maximum_price": 9223372036854776000
}200Body
{
"code": "OK",
"info": {
"total": 238
}
}Count listings for a saved search ¶
Count listings for a saved searchGET/portals/:id/saved-searches/:saved_search/listings/count
Returns the total number of listings currently matching a persisted
saved search. The saved search’s brand must match the portal’s brand.
id (uuid) ID of the portal
saved_search (uuid) ID of the saved search
Example URI
- id
string(required) Example: 996a4087-4141-40f3-94cd-49d6462af666- saved_search
string(required) Example: aa11c353-8ee3-41db-b0e2-c0f3dc512daa
200Body
{
"code": "OK",
"info": {
"total": 469
}
}Portal Contact Attributes ¶
Authenticated by the portal’s own token (X-RECHAT-PORTAL-TOKEN), like the
saved-search endpoints above.
Add attributes to a contact ¶
Add attributes to a contactPOST/portals/:id/contacts/:contact/attributes
Adds one or more attributes (tag, phone_number, email, etc.) to a contact
owned by the portal’s brand. Mirrors POST /contacts/:id/attributes but is
scoped to a portal and does not require a bearer token. The request is
recorded with no user_id (the caller is the portal, not an agent).
id (uuid) ID of the portal
contact (uuid) ID of the contact. The contact’s brand must match the
portal’s brand or the request fails.
attributes (array, required) Attribute objects to add — same shape
consumed by POST /contacts/:id/attributes.
Example URI
- id
string(required) Example: 996a4087-4141-40f3-94cd-49d6462af666- contact
string(required) Example: c9547e48-062a-4277-a9d0-b23e551c66d9
Body
{
"attributes": [
{
"attribute_type": "tag",
"text": "PortalLead"
},
{
"attribute_type": "phone_number",
"text": "+15555550123",
"label": "Mobile"
}
]
}200Body
{
"code": "OK",
"data": [
{
"id": "69d67de7-defb-4d88-9ec8-39cfaea7b081",
"contact": "c9547e48-062a-4277-a9d0-b23e551c66d9",
"created_at": 1778872279.773458,
"updated_at": 1778872279.773458,
"deleted_at": null,
"label": null,
"is_primary": false,
"is_partner": false,
"index": null,
"created_by": null,
"updated_by": null,
"attribute_type": "tag",
"text": "PortalLead",
"date": null,
"address": null,
"type": "contact_attribute"
},
{
"id": "bc6fe9ff-c032-46c1-b1ee-92f7a44f7633",
"contact": "c9547e48-062a-4277-a9d0-b23e551c66d9",
"created_at": 1778872279.773606,
"updated_at": 1778872279.773606,
"deleted_at": null,
"label": "Mobile",
"is_primary": false,
"is_partner": false,
"index": null,
"created_by": null,
"updated_by": null,
"attribute_type": "phone_number",
"text": "+15555550123",
"date": null,
"address": null,
"type": "contact_attribute"
}
],
"info": {
"count": 2,
"total": 0
}
}Portal Contact Timeline ¶
Authenticated by the portal’s own token (X-RECHAT-PORTAL-TOKEN), like the
saved-search endpoints above.
Record a contact activity ¶
Record a contact activityPOST/portals/:id/contacts/:contact/timeline
Records a timeline activity against a contact owned by the portal’s brand.
Mirrors POST /leads/:id/timeline but is scoped to a portal and does not
require a bearer token.
id (uuid) ID of the portal
contact (uuid) ID of the contact. The contact’s brand must match the
portal’s brand or the request fails.
The body is the same shape consumed by the lead timeline endpoint —
action, plus optional listing / lead / object / search fields.
Payload normalization (object_class/object_sa branching, MLS-number and
listing-id resolution) is shared via Activity.preparePayload.
Example URI
- id
string(required) Example: 996a4087-4141-40f3-94cd-49d6462af666- contact
string(required) Example: c9547e48-062a-4277-a9d0-b23e551c66d9
Body
{
"action": "ContactLoggedIn",
"object_class": "contact_lead",
"object_sa": {}
}200Body
{
"code": "OK",
"data": {
"id": "4d27c9ea-4540-4443-a512-091a9fce4eec",
"reference": "c9547e48-062a-4277-a9d0-b23e551c66d9",
"reference_type": "Contact",
"created_at": 1778872281.904612,
"updated_at": 1778872281.904612,
"deleted_at": null,
"object": {},
"action": "ContactLoggedIn",
"is_visible": true,
"brand": null,
"created_by": null,
"description": null,
"type": "activity"
}
}