For a list of domains, we offer a parameter that parses the data and returns structured JSON format instead of raw HTML.
You enable the parsing simply by adding autoparse=true to your request.
We recommend using our Structured Data Endpoints instead of the autoparse parameter.
import requeststarget_url ='https://www.amazon.com/dp/B07V1PHM66'# Replace the value for api_key with your actual API Key.api_key ='API_KEY'request_url = (f'https://api.scraperapi.com?'f'api_key={api_key}'f'&autoparse=true'f'&url={target_url}')response = requests.get(request_url)print(response.text)
import request from'node-fetch';// Replace the value for api_key with your actual API Key.consturl='http://api.scraperapi.com/?api_key=API_KEY&autoparse=true&url=https://www.amazon.com/dp/B07V1PHM66';request(url).then(response => {console.log(response); }).catch(error => {console.error(error); });
import requestsr = requests.post( url='https://async.scraperapi.com/jobs', json={# Replace the value for api_key with your actual API Key.'apiKey': 'API_KEY','autoparse': 'true','url': 'https://www.amazon.com/dp/B07V1PHM66' })print(r.text)
PROXY MODE
Output Format
In addition to parsing the data, you can choose between two different formats how you want to receive your structured response.
output_format=json
output_format=csv
Both options are available for the listed results above and can be used with the API in combination with autoparse=true parameter or with the Structured Data Endpoints.
<?php
// Replace the value for api_key with your actual API Key.
$url = "https://api.scraperapi.com?api_key=API_KEY&autoparse=true&url=https://www.amazon.com/dp/B07V1PHM66";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$response = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Curl error: ' . curl_error($ch);
} else {
print_r($response);
}
curl_close($ch);
require 'net/http'
params = {
# Replace the value for api_key with your actual API Key.
api_key: "API_KEY",
autoparse: "true",
url: "https://www.amazon.com/dp/B07V1PHM66"
}
uri = URI('https://api.scraperapi.com/')
uri.query = URI.encode_www_form(params)
website_content = Net::HTTP.get(uri)
puts website_content
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
public class Main {
public static void main(String[] args) throws Exception {
// Replace the value for api_key with your actual API Key.
String apiKey = "API_KEY";
String targetUrl = "https://www.amazon.com/dp/B07V1PHM66";
String scraperApiUrl =
"https://api.scraperapi.com?api_key=" + apiKey
+ "&autoparse=true"
+ "&url=" + targetUrl;
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create(scraperApiUrl))
.GET()
.build();
HttpResponse<String> response =
client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
import axios from 'axios';
(async () => {
try {
const { data } = await axios({
method: 'POST',
url: 'https://async.scraperapi.com/jobs',
headers: { 'Content-Type': 'application/json' },
data: {
// Replace the value for api_key with your actual API Key.
apiKey: 'API_KEY',
url: 'https://www.amazon.com/dp/B07V1PHM66',
apiParams: {
autoparse: 'true'
}
}
});
console.log(data);
} catch (error) {
console.error(error);
}
})();
<?php
$payload = json_encode([
// Replace the value for api_key with your actual API Key.
"apiKey" => "API_KEY",
"url" => "https://www.amazon.com/dp/B07V1PHM66",
"apiParams" => [
"autoparse" => "true"
]
]);
$ch = curl_init("https://async.scraperapi.com/jobs");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["Content-Type: application/json"]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
print_r($response);
require 'net/http'
require 'json'
uri = URI('https://async.scraperapi.com/jobs')
payload = {
# Replace the value for api_key with your actual API Key.
"apiKey" => "API_KEY",
"url" => "https://www.amazon.com/dp/B07V1PHM66",
"apiParams" => {
"autoparse" => "true"
}
}
response = Net::HTTP.post(uri, payload.to_json, "Content-Type" => "application/json")
puts response.body
import java.io.*;
import java.net.*;
import java.nio.charset.StandardCharsets;
public class Main {
public static void main(String[] args) {
try {
URL url = new URL("https://async.scraperapi.com/jobs");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "application/json");
conn.setDoOutput(true);
String payload = "{"
// Replace the value for api_key with your actual API Key.
+ "\"apiKey\": \"API_KEY\","
+ "\"url\": \"https://www.amazon.com/dp/B07V1PHM66\","
+ "\"apiParams\": {"
+ "\"autoparse\": \"true\""
+ "}"
+ "}";
try (OutputStream os = conn.getOutputStream()) {
os.write(payload.getBytes(StandardCharsets.UTF_8));
}
try (BufferedReader in = new BufferedReader(new InputStreamReader(
conn.getResponseCode() == 200 ? conn.getInputStream() : conn.getErrorStream()
))) {
StringBuilder response = new StringBuilder();
String line;
while ((line = in.readLine()) != null) response.append(line);
System.out.println(response);
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
import requests
# Replace the value for api_key with your actual API Key.
proxies = {
"http": "http://scraperapi.autoparse=true:[email protected]:8001"
}
r = requests.get('https://www.amazon.com/dp/B07V1PHM66', proxies=proxies, verify=False)
print(r.text)
import axios from 'axios';
axios.get('https://www.amazon.com/dp/B07V1PHM66', {
method: 'GET',
proxy: {
host: 'proxy-server.scraperapi.com',
port: 8001,
auth: {
username: 'scraperapi.autoparse=true',
// Replace the value for password with your actual API Key.
password: 'API_KEY'
},
protocol: 'http'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://www.amazon.com/dp/B07V1PHM66");
curl_setopt($ch, CURLOPT_PROXY,
// Replace the value for api_key with your actual API Key.
"http://scraperapi.autoparse=true:[email protected]:8001"
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
curl_close($ch);
var_dump($response);
require 'httparty'
HTTParty::Basement.default_options.update(verify: false)
response = HTTParty.get('https://www.amazon.com/dp/B07V1PHM66', {
http_proxyaddr: "proxy-server.scraperapi.com",
http_proxyport: 8001,
http_proxyuser: "scraperapi.autoparse=true",
# Replace the value for http_proxypass with your actual API Key.
http_proxypass: "API_KEY"
})
results = response.body
puts results
import java.io.*;
import java.net.*;
import javax.net.ssl.*;
import java.security.cert.X509Certificate;
public class Main {
public static void main(String[] args) {
try {
SSLContext sc = SSLContext.getInstance("TLS");
sc.init(null, new TrustManager[]{
new X509TrustManager() {
public X509Certificate[] getAcceptedIssuers() { return null; }
public void checkClientTrusted(X509Certificate[] certs, String authType) {}
public void checkServerTrusted(X509Certificate[] certs, String authType) {}
}
}, new java.security.SecureRandom());
HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
HttpsURLConnection.setDefaultHostnameVerifier((hostname, session) -> true);
String apiKey = "API_KEY"; // Replace with your actual API Key.
Authenticator.setDefault(new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(
"scraperapi.autoparse=true", apiKey.toCharArray()
);
}
});
System.setProperty("jdk.http.auth.tunneling.disabledSchemes", "");
System.setProperty("https.proxyHost", "proxy-server.scraperapi.com");
System.setProperty("https.proxyPort", "8001");
HttpsURLConnection conn = (HttpsURLConnection) new URL("https://www.amazon.com/dp/B07V1PHM66").openConnection();
conn.setRequestMethod("GET");
BufferedReader in;
if (conn.getResponseCode() >= 400) {
in = new BufferedReader(new InputStreamReader(conn.getErrorStream()));
} else {
in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
}
StringBuilder resp = new StringBuilder();
String line;
while ((line = in.readLine()) != null) {
resp.append(line).append("\n");
}
in.close();
System.out.println(resp);
} catch (Exception e) {
e.printStackTrace();
}
}
}
{
"name": "Apple MacBook Air (13-inch, 8GB RAM, 128GB Storage, 1.6GHz Intel Core i5) - Gold (Previous Model)",
"product_information": {
"product_dimensions": "8.36 x 11.97 x 0.61 inches",
"item_weight": "5.24 pounds",
"manufacturer": "Apple",
"asin": "B07V1PHM66",
"item_model_number": "MVFM2LL/A",
"batteries": "1 Lithium Polymer batteries required. (included)",
"date_first_available": "July 9, 2019"
},
"brand": "Visit the Apple Store",
"brand_url": "https://www.amazon.com/stores/Apple/page/77D9E1F7-0337-4282-9DB6-B6B8FB2DC98D?lp_asin=B07V1PHM66&ref_=ast_bln",
"availability_status": "Currently unavailable. We don't know when or if this item will be back in stock.",
"is_coupon_exists": false,
"images": [
"https://m.media-amazon.com/images/I/41Kp8-ILkYL._AC_.jpg",
"https://m.media-amazon.com/images/I/41mb7IKbevL._AC_.jpg",
"https://m.media-amazon.com/images/I/41ylYkx8lJL._AC_.jpg",
"https://m.media-amazon.com/images/I/21NSNFwRHaL._AC_.jpg",
"https://m.media-amazon.com/images/I/21crc7La49L._AC_.jpg",
"https://m.media-amazon.com/images/I/31VGv0DOdbL._AC_.jpg"
],
"high_res_images": [
"https://m.media-amazon.com/images/I/71thf1SYnGL._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/81e1YAr8YlL._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/91hZ-+9pqjL._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/61FqAww3phL._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/71fe7xzEI3L._AC_SL1500_.jpg",
"https://m.media-amazon.com/images/I/71p1u5qhgmL._AC_SL1500_.jpg"
],
"product_category": "",
"average_rating": 4.7,
"feature_bullets": [
"Stunning 13.3-Inch Retina Display with True Tone",
"Touch ID",
"Dual-core 8th-Generation Intel Core i5 Processor",
"Intel UHD Graphics 617",
"Fast SSD Storage",
"8GB memory",
"Stereo speakers with wider Stereo sound",
"Two Thunderbolt 3 (USB-C) ports"
],
"total_reviews": 2587,
"model": "MVFM2LL/A",
"aplus_present": false,
"total_ratings": 2587,
"5_star_percentage": 85,
"4_star_percentage": 8,
"3_star_percentage": 3,
"2_star_percentage": 1,
"1_star_percentage": 3,
"reviews": [
{
"stars": 5,
"date": "Reviewed in the United States on March 15, 2020",
"verified_purchase": false,
"manufacturer_replied": false,
"username": "M. K. Sherwood",
"user_url": "https://www.amazon.com/gp/profile/amzn1.account.AEESINTUZUHXFMXNHJFA4GM6HTWQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"title": "5.0 out of 5 stars\n\n\n\n\n\n\n\n \n \n Pleasantly surprised...then blown away",
"review": "My last MacBook Pro was purchased in 2009 and is still working albeit very slowly as compared to the speed of this miracle book! I was very careful to read the reviews and listen to other's comments before pulling the trigger on this one. I have retired since my last purchase so my needs changed and that is why I went with the Air version. I am very glad I did. It is very robust, very fast, lightweight, runs cool and can be set up with the user's needs in mind (I pulled several of the native apps off to make room for grandkid photos, travel data, iPhone contacts and to install 2019 Office for Mac).You can buy a lot of lightweight tablets but I prefer a true OS and the installed Catalina 10.15.3 is a great choice. The 256GB SSI drive is my first and I am blown away by the speed. The Pro Air runs cool and quiet and ALL DAY on a single charge.When it arrived it asked to be placed on the same wifi as my 2009 model and I gave it permission to harvest the passwords, login info, iCloud downloads, photos, etc. Seamlessly it was completed in 1 hour. Imagine my delight to not have to go to every favorite site and log in again and install my info. Did I say blown away?I bought the USB/HDMI/USB C conversion pigtail so that I could continue to use my 1TB external hard drive and attach to multi media output. It is something you need to consider. Well worth the modest price.I am happy to recommend this awesome laptop. No out-of-the-box flaws were experienced. Nothing but seamless, quiet, very fast, and dependable operation. I would give it 6 stars if I could...\n \nRead more",
"review_url": "https://www.amazon.com/gp/customer-reviews/RGSAQAJX8OOQ/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"total_found_helpful": 1,
"images": [],
"variation": {}
},
{
"stars": 5,
"date": "Reviewed in the United States on December 2, 2019",
"verified_purchase": false,
"manufacturer_replied": false,
"username": "Paul",
"user_url": "https://www.amazon.com/gp/profile/amzn1.account.AH5D3F5Z46AAXL3TS7LEAQ5MA6VA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"title": "5.0 out of 5 stars\n\n\n\n\n\n\n\n \n \n Fantastic system",
"review": "This is my third macbook and my second macbook air over 15 years. I love it. Light weight, fast and beautiful in space grey, which looks like gunmetal. Migrating from my old one, which I had for over 8 years, was painless and only required setting the old and new systems next to each other and entering a passcode. The only thing I need to get used to is the keyboard travel is less than my old system and is slightly nosier. My son has been using my original macbook for the past few years, He took it off to college giving me an excuse to buy my first macbook air and it is still running, I did do some upgrades, memory and SSD. The only failure I have ever had on any of the 3 systems has been the power cord breaking after years of use. Three times. In the same timeframe my wife has gone through at least 5 PC laptops from Dell, Lenovo and Asus. All died! I use Parallels virtualization to run MS office and other apps on the macbook air and they run fine. My last macbook air is still in use in my home office but it is becoming resource limited with the newer software, 4GB of RAM is no longer enough.. I am a committed mac laptop user, although I normally use my Intel NUC for my daily work flow. The macbook air is my mobile work station. The lack of ports isn't a problem for me. I use a small USB hub when I need more than 2 ports which is pretty rare. These 3 systems are the best and most reliable laptops I have ever had.\n \nRead more",
"review_url": "https://www.amazon.com/gp/customer-reviews/R1TBRTW7A28IG0/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"total_found_helpful": 5,
"images": [],
"variation": {}
},
{
"stars": 5,
"date": "Reviewed in the United States on March 18, 2025",
"verified_purchase": false,
"manufacturer_replied": false,
"username": "Christina Gutierrez",
"user_url": "https://www.amazon.com/gp/profile/amzn1.account.AFJNTNWK4OLUI44U2VY2HWIESHJA/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"title": "5.0 out of 5 stars\n\n\n\n\n\n\n\n \n \n Great laptop for the price and quality",
"review": "I love this laptop. It is lightweight and very easy to handle. It has great features. It was a great value. I have had no issues with it.\n \nRead more",
"review_url": "https://www.amazon.com/gp/customer-reviews/R3JMP4GX0FF7LW/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"images": [],
"variation": {}
},
{
"stars": 5,
"date": "Reviewed in the United States on November 21, 2019",
"verified_purchase": false,
"manufacturer_replied": false,
"username": "Hannah3",
"user_url": "https://www.amazon.com/gp/profile/amzn1.account.AHMI3TTEBEYHDETWDZQB343ZUEUQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8",
"title": "5.0 out of 5 stars\n\n\n\n\n\n\n\n \n \n LOVE the laptop!",
"review": "I bought this laptop back in September and it is absolutely amazing and I felt like I had to speak up because of the comments people have been saying about this laptop. Some people might just love the old laptop and don't like change. I had the old MacBook air and while it may be nice with USB ports and I don't know how long ago you had a laptop with a CD drive in it, but it doesn't need it, because hate to break it to you guys, but no one uses CDs anymore. If you want the CD portion, just buy the add on. The new ports make charging your phone and your laptop much faster and if you really want those USB ports back, just buy a 10$ extender port for your USB ports(which I did). If you don't like the USB ports not being there why would you buy the laptop. And this laptop is totally portable and is extremely light! S I get this laptop is expensive(which is why I bought it with payments) but I think it was totally worth it! I needed a good laptop that I could rely on with school. You can never really have a perfect laptop, but I am telling you I really like this one and it is the best one that I have bought.\n \nRead more",
"review_url": "https://www.amazon.com/gp/customer-reviews/R1J4BV7ZNMW9O5/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8",
"total_found_helpful": 6,
"images": [],
"variation": {}
},
{
"stars": 5,
"date": "Reviewed in Canada on January 9, 2020",
"verified_purchase": false,
"manufacturer_replied": false,
"username": "Grimhammer",
"title": "light an d beautiful.",
"review": "great purchase\n \nRead more",
"total_found_helpful": 10,
"images": [],
"variation": {}
},
{
"stars": 1,
"date": "Reviewed in Mexico on May 29, 2020",
"verified_purchase": false,
"manufacturer_replied": false,
"username": "Victoria Castaqsn G.",
"title": "Me siguen cobrando algo que ya entregue",
"review": "Venía golpeada la computadora\n \n \nRead more",
"images": [],
"variation": {}
},
{
"stars": 5,
"date": "Reviewed in Brazil on March 26, 2021",
"verified_purchase": false,
"manufacturer_replied": false,
"username": "Bruno Noronha Ribeiro Martini Vieira",
"title": "Produto espetacular",
"review": "Original, lavrador, vendedor honesto e pontual.\n \n \nRead more",
"images": [],
"variation": {}
},
{
"stars": 5,
"date": "Reviewed in the United Arab Emirates on June 9, 2020",
"verified_purchase": false,
"manufacturer_replied": false,
"username": "Nitin girish",
"title": "A no compromise laptop",
"review": "I think it has got a neat configuration and fits the requirements of a day to day user..\n \nRead more",
"images": [],
"variation": {}
},
{
"stars": 4,
"date": "Reviewed in the United Arab Emirates on June 24, 2020",
"verified_purchase": false,
"manufacturer_replied": false,
"username": "rey",
"title": "Excellent product, I liked.",
"review": "Product was delivered in expected spec.Performanace is in acceptable level with 8 GB ram. Great product.\n \nRead more",
"images": [],
"variation": {}
}
]
}
name product_information dimensions item_weight brand brand_url full_description pricing variants list_price prime_price shipping_price availability_quantity availability_status is_coupon_exists coupon_text images product_category average_rating small_description feature_bullets total_reviews reviews total_answered_questions model customization_options seller_id seller_name ships_from sold_by sold_by_link fulfilled_by_amazon fast_track_message aplus_present customers_say
Apple MacBook Air (13-inch, 8GB RAM, 128GB Storage, 1.6GHz Intel Core i5) - Gold (Previous Model) {"Product Dimensions":"8.36 x 11.97 x 0.61 inches","Item Weight":"5.24 pounds","Manufacturer":"Apple","ASIN":"B07V1PHM66","Item model number":"MVFM2LL/A","Batteries":"1 Lithium Polymer batteries required. (included)","Date First Available":"July 9, 2019"} Visit the Apple Store https://www.amazon.com/stores/Apple/page/77D9E1F7-0337-4282-9DB6-B6B8FB2DC98D?lp_asin=B07V1PHM66&ref_=ast_bln Currently unavailable. We don't know when or if this item will be back in stock. ["https://m.media-amazon.com/images/I/41Kp8-ILkYL._AC_.jpg","https://m.media-amazon.com/images/I/41mb7IKbevL._AC_.jpg","https://m.media-amazon.com/images/I/41ylYkx8lJL._AC_.jpg","https://m.media-amazon.com/images/I/21NSNFwRHaL._AC_.jpg","https://m.media-amazon.com/images/I/21crc7La49L._AC_.jpg","https://m.media-amazon.com/images/I/31VGv0DOdbL._AC_.jpg"] 4.7 ["Stunning 13.3-Inch Retina Display with True Tone","Touch ID","Dual-core 8th-Generation Intel Core i5 Processor","Intel UHD Graphics 617","Fast SSD Storage","8GB memory","Stereo speakers with wider Stereo sound","Two Thunderbolt 3 (USB-C) ports"] 2587 [{"stars":5,"date":"Reviewed in the United States on March 15, 2020","verified_purchase":false,"manufacturer_replied":false,"username":"M. K. Sherwood","userUrl":"https://www.amazon.com/gp/profile/amzn1.account.AEESINTUZUHXFMXNHJFA4GM6HTWQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8","title":"5.0 out of 5 stars\n\n\n\n\n\n\n\n \n \n Pleasantly surprised...then blown away","review":"My last MacBook Pro was purchased in 2009 and is still working albeit very slowly as compared to the speed of this miracle book! I was very careful to read the reviews and listen to other's comments before pulling the trigger on this one. I have retired since my last purchase so my needs changed and that is why I went with the Air version. I am very glad I did. It is very robust, very fast, lightweight, runs cool and can be set up with the user's needs in mind (I pulled several of the native apps off to make room for grandkid photos, travel data, iPhone contacts and to install 2019 Office for Mac).You can buy a lot of lightweight tablets but I prefer a true OS and the installed Catalina 10.15.3 is a great choice. The 256GB SSI drive is my first and I am blown away by the speed. The Pro Air runs cool and quiet and ALL DAY on a single charge.When it arrived it asked to be placed on the same wifi as my 2009 model and I gave it permission to harvest the passwords, login info, iCloud downloads, photos, etc. Seamlessly it was completed in 1 hour. Imagine my delight to not have to go to every favorite site and log in again and install my info. Did I say blown away?I bought the USB/HDMI/USB C conversion pigtail so that I could continue to use my 1TB external hard drive and attach to multi media output. It is something you need to consider. Well worth the modest price.I am happy to recommend this awesome laptop. No out-of-the-box flaws were experienced. Nothing but seamless, quiet, very fast, and dependable operation. I would give it 6 stars if I could...\n \nRead more","reviewUrl":"https://www.amazon.com/gp/customer-reviews/RGSAQAJX8OOQ/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8","total_found_helpful":1,"images":[],"variation":{}},{"stars":5,"date":"Reviewed in the United States on December 2, 2019","verified_purchase":false,"manufacturer_replied":false,"username":"Paul","userUrl":"https://www.amazon.com/gp/profile/amzn1.account.AH5D3F5Z46AAXL3TS7LEAQ5MA6VA/ref=cm_cr_dp_d_gw_tr?ie=UTF8","title":"5.0 out of 5 stars\n\n\n\n\n\n\n\n \n \n Fantastic system","review":"This is my third macbook and my second macbook air over 15 years. I love it. Light weight, fast and beautiful in space grey, which looks like gunmetal. Migrating from my old one, which I had for over 8 years, was painless and only required setting the old and new systems next to each other and entering a passcode. The only thing I need to get used to is the keyboard travel is less than my old system and is slightly nosier. My son has been using my original macbook for the past few years, He took it off to college giving me an excuse to buy my first macbook air and it is still running, I did do some upgrades, memory and SSD. The only failure I have ever had on any of the 3 systems has been the power cord breaking after years of use. Three times. In the same timeframe my wife has gone through at least 5 PC laptops from Dell, Lenovo and Asus. All died! I use Parallels virtualization to run MS office and other apps on the macbook air and they run fine. My last macbook air is still in use in my home office but it is becoming resource limited with the newer software, 4GB of RAM is no longer enough.. I am a committed mac laptop user, although I normally use my Intel NUC for my daily work flow. The macbook air is my mobile work station. The lack of ports isn't a problem for me. I use a small USB hub when I need more than 2 ports which is pretty rare. These 3 systems are the best and most reliable laptops I have ever had.\n \nRead more","reviewUrl":"https://www.amazon.com/gp/customer-reviews/R1TBRTW7A28IG0/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8","total_found_helpful":5,"images":[],"variation":{}},{"stars":5,"date":"Reviewed in the United States on March 18, 2025","verified_purchase":false,"manufacturer_replied":false,"username":"Christina Gutierrez","userUrl":"https://www.amazon.com/gp/profile/amzn1.account.AFJNTNWK4OLUI44U2VY2HWIESHJA/ref=cm_cr_dp_d_gw_tr?ie=UTF8","title":"5.0 out of 5 stars\n\n\n\n\n\n\n\n \n \n Great laptop for the price and quality","review":"I love this laptop. It is lightweight and very easy to handle. It has great features. It was a great value. I have had no issues with it.\n \nRead more","reviewUrl":"https://www.amazon.com/gp/customer-reviews/R3JMP4GX0FF7LW/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8","images":[],"variation":{}},{"stars":5,"date":"Reviewed in the United States on November 21, 2019","verified_purchase":false,"manufacturer_replied":false,"username":"Hannah3","userUrl":"https://www.amazon.com/gp/profile/amzn1.account.AHMI3TTEBEYHDETWDZQB343ZUEUQ/ref=cm_cr_dp_d_gw_tr?ie=UTF8","title":"5.0 out of 5 stars\n\n\n\n\n\n\n\n \n \n LOVE the laptop!","review":"I bought this laptop back in September and it is absolutely amazing and I felt like I had to speak up because of the comments people have been saying about this laptop. Some people might just love the old laptop and don't like change. I had the old MacBook air and while it may be nice with USB ports and I don't know how long ago you had a laptop with a CD drive in it, but it doesn't need it, because hate to break it to you guys, but no one uses CDs anymore. If you want the CD portion, just buy the add on. The new ports make charging your phone and your laptop much faster and if you really want those USB ports back, just buy a 10$ extender port for your USB ports(which I did). If you don't like the USB ports not being there why would you buy the laptop. And this laptop is totally portable and is extremely light! S I get this laptop is expensive(which is why I bought it with payments) but I think it was totally worth it! I needed a good laptop that I could rely on with school. You can never really have a perfect laptop, but I am telling you I really like this one and it is the best one that I have bought.\n \nRead more","reviewUrl":"https://www.amazon.com/gp/customer-reviews/R1J4BV7ZNMW9O5/ref=cm_cr_dp_d_rvw_ttl?ie=UTF8","total_found_helpful":6,"images":[],"variation":{}},{"stars":5,"date":"Reviewed in Canada on January 9, 2020","verified_purchase":false,"manufacturer_replied":false,"username":"Grimhammer","title":"light an d beautiful.","review":"great purchase\n \nRead more","total_found_helpful":10,"images":[],"variation":{}},{"stars":1,"date":"Reviewed in Mexico on May 29, 2020","verified_purchase":false,"manufacturer_replied":false,"username":"Victoria Castaqsn G.","title":"Me siguen cobrando algo que ya entregue","review":"Venía golpeada la computadora\n \n \nRead more","images":[],"variation":{}},{"stars":5,"date":"Reviewed in Brazil on March 26, 2021","verified_purchase":false,"manufacturer_replied":false,"username":"Bruno Noronha Ribeiro Martini Vieira","title":"Produto espetacular","review":"Original, lavrador, vendedor honesto e pontual.\n \n \nRead more","images":[],"variation":{}},{"stars":5,"date":"Reviewed in the United Arab Emirates on June 9, 2020","verified_purchase":false,"manufacturer_replied":false,"username":"Nitin girish","title":"A no compromise laptop","review":"I think it has got a neat configuration and fits the requirements of a day to day user..\n \nRead more","images":[],"variation":{}},{"stars":4,"date":"Reviewed in the United Arab Emirates on June 24, 2020","verified_purchase":false,"manufacturer_replied":false,"username":"rey","title":"Excellent product, I liked.","review":"Product was delivered in expected spec.Performanace is in acceptable level with 8 GB ram. Great product.\n \nRead more","images":[],"variation":{}}] "MVFM2LL/A"
Preferences
online
Made withby Kong