School Search
Search for Sale or for Rent. Residential or Commercial.
Price
Beds
Baths
Save Search
Advanced Search


Luxury Proprety Solutions, LLC. (LPS)
Real Estate Brokerage
Luxury Assets Management & Acquisitions (LAMA)

info@lpslama.com
+1(866)577-5262

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Save
Ask
Tour
Hide
Share
$2,000
New Listing

7516 NE 1st Ave 302
Miami, FL 33138

For Rent|Condominium|Active
1
Bed
1
Total Bath
1
Full Bath
720
SqFt
$3
/SqFt
2007
Built
Subdivision:
LE TERRACE CONDO
County:
Miami-Dade
Call Now: (866)577-5262
Is this the listing for you? We can help make it yours.
(866)577-5262
7516 NE 1st Ave 3027516 NE 1st Ave 3027516 NE 1st Ave 3027516 NE 1st Ave 302
Save
Ask
Tour
Hide
Share

Mortgage Calculator

Monthly Payment (Est.)

$9
Calculator powered by Showcase IDX, a Constellation1 Company. Copyright ©2025 Information is deemed reliable but not guaranteed.

Nicely updated 1/1 with contemporary flooring and vaulted ceilings for a spacious open concept feel. New appliances (fridge, stove, dishwasher) as well as a Washer and Dryer inside the unit for added convenience! Hurricane Impact windows and doors throughout as well as central AC and a digital Smart Thermostat that allows you to control the temperature from your phone for added peace and comfort! Updated bathroom with nice contemporary tile and LED vanity mirror. Enjoy the Downtown Miami skyline view from your bedroom! Gated assigned parking space with remote access. Close to all the Miami hotspots: the super trendy Citadel, Upper Buena Vista, The Design District, Little River Business District, Wynwood, Midtown, and Brickell! Minutes to I-95, the Miami Airport, Downtown and Miami Beach!

Save
Ask
Tour
Hide
Share
Listing Snapshot
Price 
$2,000
Days On Site 
0 Days
Bedrooms 
1
Inside Area (SqFt) 
720 sqft
Total Baths 
1
Full Baths 
1
Partial Baths 
N/A
Lot Size 
N/A
Year Built 
2007
MLS® Number 
A11839130
Status 
Active
Property Tax 
N/A
HOA/Condo/Coop Fees 
N/A
Sq Ft Source 
N/A
Friends & Family
Recent Activity
10 hours agoListing first seen on site
14 hours agoListing updated with changes from the MLS®
General Features
Available on 
2025-08-11
Direction Faces 
South
Home Warranty 
Yes
Number Of Stories 
3
Pets 
No
Property Sub Type 
Condominium
Security 
Security Fence
Zoning 
4600
Interior Features
Cooling 
Central Air
Flooring 
Tile
Furnished 
Unfurnished
Heating 
Central
Save
Ask
Tour
Hide
Share
Exterior Features
Construction Details 
Block
Pool Features 
None
View 
GardenOther
Waterview 
GardenOther
Community Features
Building Access 
3
MLS Area 
32
Listing courtesy of EXP Realty LLC

The data relating to real estate for sale on this web site comes in part from the Miami Association of Realtors, Realtor Association of Greater Ft. Lauderdale, and the South Broward Board of Realtors. Information is deemed reliable but not guaranteed. Copyright © 2025, Miami Association of Realtors, Realtor Association of Greater Ft. Lauderdale, and the South Broward Board of Realtors. All rights reserved. The information being provided is for consumers' personal, non-commercial use and may not be used for any purpose other than to identify prospective properties consumers may be interested in purchasing. The use of search facilities of data on the site, other than a consumer looking to purchase real estate, is prohibited.

Neighborhood & Commute
Source: Walkscore
Community information and market data Powered by ATTOM Data Solutions. Copyright ©2019 ATTOM Data Solutions. Information is deemed reliable but not guaranteed.
Save
Ask
Tour
Hide
Share
Scroll to Top
Address

Luxury Property Solutions, LLC.
2200 N. Commerce Parkway
Suite 200
Weston, FL 33326

Phone
+1(866)577-5262

info@lpslama.com

© 2022 Luxury Property Solutions, LLC. All rights reserved

prefix . 'schools'; if ( $wpdb->get_var( "SHOW TABLES LIKE '$table'" ) != $table ) { $sql = "CREATE TABLE $table ( id mediumint(9) NOT NULL AUTO_INCREMENT, SCHOOL varchar(255) NOT NULL, OFFR_DISTRICT varchar(255), SCHOOL_NAME_LONG varchar(255), DISTRICT_NAME varchar(255), GRADE_CODE varchar(255), TYPE varchar(255), PHYSICAL_ADDRESS varchar(255), PHYSICAL_CITY varchar(255), PHYSICAL_STATE varchar(2), PHYSICAL_ZIP varchar(10), PHONE_NUMBER varchar(20), WEB_ADDRESS varchar(255), EMAIL_ADDRESS_PRI varchar(255), PRINCIPAL_TITLE varchar(10), PRINCIPAL_FIRST varchar(255), PRINCIPAL_LAST varchar(255), PRINCIPAL_MI varchar(10), MAGNET_STATUS varchar(10), MAGNET_SPECIALTY varchar(10), MAGNET_PURPOSE varchar(10), CS_SCHOOL_CHOICE varchar(10), CHARTER_SCHL_STAT varchar(10), PRIMARY_SERV_TYPE varchar(255), COMMENTS text, report_grade_2024 varchar(1), LATITUDE float, LONGITUDE float, PRIMARY KEY (id) );"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); dbDelta( $sql ); } } } /** * Determine if plugin should load (only on SEF property listing pages). */ if ( ! function_exists( 'lps_should_load' ) ) { function lps_should_load() { $uri = esc_url_raw( $_SERVER['REQUEST_URI'] ?? '' ); return strpos( $uri, '/properties/listing/SEF/' ) !== false; } } /** * Calculate Haversine distance (miles) between two points. */ if ( ! function_exists( 'lps_haversine' ) ) { function lps_haversine( float $lat1, float $lon1, float $lat2, float $lon2 ): float { $R = 3958.8; $toRad = fn( $deg ) => $deg * M_PI / 180; $dLat = $toRad( $lat2 - $lat1 ); $dLon = $toRad( $lon2 - $lon1 ); $a = sin( $dLat / 2 ) ** 2 + cos( $toRad( $lat1 ) ) * cos( $toRad( $lat2 ) ) * sin( $dLon / 2 ) ** 2; return $R * 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) ); } } /** * Fetch subject property by MLS ID. */ if ( ! function_exists( 'lps_fetch_subject_property' ) ) { function lps_fetch_subject_property( string $listing_id ) { if ( empty( MIAMIRE_BRIDGE_API_TOKEN ) ) { return new WP_Error( 'no_token', 'API token not configured', [ 'status' => 500 ] ); } $listing_id = sanitize_text_field( $listing_id ); if ( ! preg_match( '/^[A-Za-z0-9]+$/', $listing_id ) ) { return new WP_Error( 'invalid_id', 'Invalid MLS ID format', [ 'status' => 400 ] ); } $token = MIAMIRE_BRIDGE_API_TOKEN; $endpoint = 'https://api.bridgedataoutput.com/api/v2/OData/miamire/Property'; $query = "?%24filter=ListingId eq '{$listing_id}'" . '&%24select=ListingId,ListPrice,ClosePrice,LivingArea,LotSizeSquareFeet,YearBuilt,' . 'BedroomsTotal,BathroomsTotalDecimal,Latitude,Longitude,DaysOnMarket,OnMarketDate,CloseDate,' . 'City,PostalCode,PropertyType,WaterfrontYN,PoolPrivateYN,ListOfficeName,ListAgentFullName' . "&%24top=1&access_token={$token}"; $response = wp_remote_get( $endpoint . $query, [ 'timeout' => 30 ] ); if ( is_wp_error( $response ) ) { return new WP_Error( 'subject_error', 'Subject fetch failed', [ 'status' => 500 ] ); } $code = wp_remote_retrieve_response_code( $response ); $body = wp_remote_retrieve_body( $response ); if ( 200 !== $code ) { return new WP_Error( 'subject_error', "Subject fetch failed: HTTP {$code}", [ 'status' => $code ] ); } $data = json_decode( $body, true ); if ( json_last_error() ) { return new WP_Error( 'subject_error', 'Invalid JSON from subject API', [ 'status' => 500 ] ); } if ( empty( $data['value'][0] ) ) { return new WP_Error( 'no_data', 'Subject not found', [ 'status' => 404 ] ); } return $data['value'][0]; } } /** * Fetch comparables (Active, Closed or Rental) with LivingArea ±20% and matching WaterfrontYN. */ if ( ! function_exists( 'lps_fetch_comparables' ) ) { function lps_fetch_comparables( string $status, string $listing_id ) { $subject = lps_fetch_subject_property( $listing_id ); if ( is_wp_error( $subject ) ) { return $subject; } if ( empty( MIAMIRE_BRIDGE_API_TOKEN ) ) { return new WP_Error( 'no_token', 'API token not configured', [ 'status' => 500 ] ); } $token = MIAMIRE_BRIDGE_API_TOKEN; $dataset = defined( 'MIAMIRE_DATASET' ) ? MIAMIRE_DATASET : 'miamire'; $radii = ( 'Rental' === $status ) ? [5,10,15,20] : [2,5,10,15]; $max_radius_miles = end($radii); $max_radius_m = $max_radius_miles * 1609.34; // convert to meters $point = "POINT({$subject['Longitude']} {$subject['Latitude']})"; // fetch 50, then client-side filter $endpoint = "https://api.bridgedataoutput.com/api/v2/OData/{$dataset}/Property"; $fields = 'ListingId,UnparsedAddress,ListPrice,ClosePrice,BedroomsTotal,BathroomsTotalDecimal,' . 'LivingArea,LotSizeSquareFeet,Latitude,Longitude,StandardStatus,' . 'Media,DaysOnMarket,OnMarketDate,CloseDate,ListOfficeName,ListAgentFullName,WaterfrontYN'; $url = "{$endpoint}?%24filter=StandardStatus%20eq%20'{$status}'%20and%20ListingId%20ne%20'{$listing_id}'" . "%20and%20PropertyType%20eq%20'{$subject['PropertyType']}'" . "%20and%20BedroomsTotal%20ge%20" . max(1, $subject['BedroomsTotal'] ?? 0) . "%20and%20geo.distance(Coordinates,{$point})%20le%20{$max_radius_m}" . "&%24orderby=" . ( $status==='Active'?'ListPrice desc':'CloseDate desc' ) . "&%24select={$fields}&%24top=50&access_token={$token}"; $resp = wp_remote_get( $url, [ 'timeout' => 30 ] ); if ( is_wp_error( $resp ) ) { return []; } $code = wp_remote_retrieve_response_code( $resp ); $body = wp_remote_retrieve_body( $resp ); if ( 200 !== $code ) { return []; } $data = json_decode( $body, true ); if ( json_last_error() || empty( $data['value'] ) ) { return []; } // client-side filter $comps = array_filter( $data['value'], function( $p ) use ( $subject ) { if ( empty( $p['LivingArea'] ) || ! isset( $p['WaterfrontYN'] ) ) { return false; } $areaOK = $p['LivingArea'] >= $subject['LivingArea'] * 0.8 && $p['LivingArea'] <= $subject['LivingArea'] * 1.2; $waterOK = $p['WaterfrontYN'] === $subject['WaterfrontYN']; // distOK removed since filtered in query return $areaOK && $waterOK; } ); // dedupe closed if ( 'Closed' === $status ) { $uniq = []; foreach ( $comps as $c ) { $addr = $c['UnparsedAddress'] ?? ''; if ( ! isset( $uniq[ $addr ] ) || strtotime($c['CloseDate']) > strtotime($uniq[$addr]['CloseDate']) ) { $uniq[ $addr ] = $c; } } $comps = array_values($uniq); } return array_values($comps); } } /** * Rentals endpoint: subset of comparables + zip filter */ if ( ! function_exists( 'lps_fetch_rentals' ) ) { function lps_fetch_rentals( WP_REST_Request $r ) { $listing_id = sanitize_text_field($r->get_param('listing_id')); $subject = lps_fetch_subject_property($listing_id); if ( is_wp_error($subject) ) { return $subject; } $all = lps_fetch_comparables('Rental', $listing_id); if ( is_wp_error($all) ) { return $all; } $zip = $subject['PostalCode'] ?? ''; if ( $zip ) { $filtered = array_filter($all, fn($p) => str_ends_with($p['UnparsedAddress'] ?? '', $zip)); return array_values($filtered); } return $all; } } /** * Compute estimate */ if ( ! function_exists( 'lps_compute_estimate' ) ) { function lps_compute_estimate( array $comps, float $area, array $activeComps ): array { if ( empty($comps) ) { $comps = $activeComps; } $pps = array_map(fn($c) => (( 'Closed'===$c['StandardStatus'] ) ? $c['ClosePrice'] : $c['ListPrice']) / max(1, $c['LivingArea']), $comps ); sort($pps); if ( empty($pps) ) { return ['low'=>0,'high'=>0,'ppsqft'=>0]; } $n = count($pps); $q1 = $pps[floor($n/4)]; $q3 = $pps[floor(3*$n/4)]; $iqr = $q3 - $q1; $filtered = array_filter($pps, fn($p) => $p >= ($q1-1.5*$iqr) && $p <= ($q3+1.5*$iqr)); $avg = array_sum($filtered)/max(1,count($filtered)); return [ 'low'=>round($avg*$area*0.9), 'high'=>round($avg*$area*1.1), 'ppsqft'=>round($avg,2) ]; } } /** * Get Bridge estimate for a listing. */ if ( ! function_exists( 'lps_get_bridge_estimate' ) ) { function lps_get_bridge_estimate( WP_REST_Request $r ) { $listing_id = sanitize_text_field( $r->get_param( 'listing_id' ) ); if ( empty( $listing_id ) ) { return new WP_Error( 'no_id', 'Listing ID required', [ 'status' => 400 ] ); } $subject = lps_fetch_subject_property( $listing_id ); if ( is_wp_error( $subject ) ) { return $subject; } $closed = lps_fetch_comparables( 'Closed', $listing_id ); if ( is_wp_error( $closed ) ) { return $closed; } $active = lps_fetch_comparables( 'Active', $listing_id ); if ( is_wp_error( $active ) ) { return $active; } $area = (float) ( $subject['LivingArea'] ?? 1 ); $estimate = lps_compute_estimate( $closed, $area, $active ); return $estimate; } } /** * Fetch schools */ if ( ! function_exists( 'fetch_schools' ) ) { function fetch_schools(WP_REST_Request $req) { global $wpdb; $lat = $req->get_param('lat'); $lon = $req->get_param('lon'); $limit = $req->get_param('limit'); $deg = 50 / 69; // Increased to 50 miles to match JS radius $min_lat = $lat - $deg; $max_lat = $lat + $deg; $min_lon = $lon - ($deg / cos(deg2rad($lat))); $max_lon = $lon + ($deg / cos(deg2rad($lat))); $table = $wpdb->prefix . 'schools'; // Changed to use WP prefix $sql = " SELECT id, SCHOOL, OFFR_DISTRICT, SCHOOL_NAME_LONG, DISTRICT_NAME, GRADE_CODE, TYPE, PHYSICAL_ADDRESS, PHYSICAL_CITY, PHYSICAL_STATE, PHYSICAL_ZIP, PHONE_NUMBER, WEB_ADDRESS, EMAIL_ADDRESS_PRI, PRINCIPAL_TITLE, PRINCIPAL_FIRST, PRINCIPAL_LAST, PRINCIPAL_MI, MAGNET_STATUS, MAGNET_SPECIALTY, MAGNET_PURPOSE, CS_SCHOOL_CHOICE, CHARTER_SCHL_STAT, PRIMARY_SERV_TYPE, COMMENTS,report_grade_2024, LATITUDE AS lat, LONGITUDE AS lon, (3958.8 * ACOS( COS(RADIANS(%f)) * COS(RADIANS(LATITUDE)) * COS(RADIANS(LONGITUDE) - RADIANS(%f)) + SIN(RADIANS(%f)) * SIN(RADIANS(LATITUDE)) )) AS dist FROM {$table} WHERE LATITUDE BETWEEN %f AND %f AND LONGITUDE BETWEEN %f AND %f HAVING dist <= 50 ORDER BY dist LIMIT %d "; $prepared = $wpdb->prepare($sql, $lat, $lon, $lat, $min_lat, $max_lat, $min_lon, $max_lon, $limit); $results = $wpdb->get_results($prepared, ARRAY_A); if ($wpdb->last_error) { error_log('School lookup error: ' . $wpdb->last_error . ' | Query: ' . $prepared); return new WP_Error('db_error', 'Database query failed: ' . $wpdb->last_error, ['status' => 500]); } if (empty($results)) { error_log('No schools found for lat: ' . $lat . ', lon: ' . $lon . ' | Query: ' . $prepared); } error_log('Schools API: Successfully fetched ' . count($results) . ' schools'); return rest_ensure_response(['schools' => $results]); } } /** * REST routes */ add_action('rest_api_init', function(){ register_rest_route('valuation/v1','/token',[ 'methods'=>'GET', 'permission_callback'=>fn()=>true, 'callback'=>fn()=> empty(MIAMIRE_BRIDGE_API_TOKEN) ? new WP_Error('no_token','API token not configured',['status'=>500]) : ['miamire_token'=>sanitize_text_field(MIAMIRE_BRIDGE_API_TOKEN)] ]); register_rest_route('valuation/v1','/subject/(?P[A-Za-z0-9]+)',[ 'methods'=>'GET','permission_callback'=>fn()=>true,'callback'=>'lps_fetch_subject_property' ]); register_rest_route('valuation/v1','/comps/(?PActive|Closed|Rental)/(?P[A-Za-z0-9]+)',[ 'methods'=>'GET','permission_callback'=>fn()=>true, 'callback'=>fn(WP_REST_Request $r)=>lps_fetch_comparables($r->get_param('status'),$r->get_param('listing_id')) ]); register_rest_route('valuation/v1','/rentals/(?P[A-Za-z0-9]+)',[ 'methods'=>'GET','permission_callback'=>fn()=>true,'callback'=>'lps_fetch_rentals' ]); register_rest_route('valuation/v1','/estimate',[ 'methods'=>'GET','permission_callback'=>fn()=>true,'callback'=>'lps_get_bridge_estimate' ]); register_rest_route('schools/v1', '/schools', [ 'methods' => WP_REST_Server::READABLE, 'callback' => 'fetch_schools', 'permission_callback' => '__return_true', 'args' => [ 'lat' => [ 'required' => true, 'validate_callback' => function($param) { return is_numeric($param) && $param >= -90 && $param <= 90; }, 'sanitize_callback' => function($param) { return floatval($param); } ], 'lon' => [ 'required' => true, 'validate_callback' => function($param) { return is_numeric($param) && $param >= -180 && $param <= 180; }, 'sanitize_callback' => function($param) { return floatval($param); } ], 'limit' => [ 'default' => 50, 'validate_callback' => function($param) { return is_numeric($param) && $param > 0 && $param <= 100; }, 'sanitize_callback' => function($param) { return absint($param); } ] ] ]); }); /** * Inject JS config into head */ add_action('wp_head', function(){ if (!lps_should_load()) return; echo ''; echo ''; }); /** * Enqueue assets */ add_action('wp_enqueue_scripts', function(){ if (!lps_should_load()) return; $base = plugin_dir_url(__FILE__) . 'assets/leaflet'; wp_enqueue_script('jquery', false, [], null, false); wp_enqueue_style('leaflet-css', "{$base}/leaflet.min.css", [], '1.9.4'); wp_enqueue_script('leaflet-js', "{$base}/leaflet.min.js", ['jquery'], '1.9.4', true); add_action('wp_footer', function() { echo ""; }); // Add the school search frontend in wp_footer add_action('wp_footer', 'lps_add_school_search_frontend'); }); /** * Add school search frontend HTML and JS */ if ( ! function_exists( 'lps_add_school_search_frontend' ) ) { function lps_add_school_search_frontend() { if (!lps_should_load()) return; ?>
School Search
Image of a school building