Carvana Reviews API

Overview

This API endpoint allows you to retrieve reviews from Carvana. Here are some important things to know:

  • The Carvana API returns 10 reviews per request.
  • The order in which reviews are returned is by descending date(from newest to oldest).
  • You can get all reviews from a single car by using the offset parameter.

Endpoint

GET https://wextractor.com/api/v1/reviews/carvana

Parameters

Parameter Required Description Example
auth_token Required Your API token for authentication. Once you register to Wextractor you can extract this key from your account's setting page. -
id Required The full url of the car. https://www.carvana.com/vehicle/3483971
offset Optional This parameter defines the result offset. It skips the given number of reviews. It's used for pagination. (e.g., 0 (default) is the first page of results, 10 is the 2nd page of results, 20 is the 3rd page of results, etc.). 10

Example Request

https://wextractor.com/api/v1/reviews/carvana?id=https%3A%2F%2Fwww.carvana.com%2Fvehicle%2F3483971&auth_token=your_auth_token&offset=0

Example Response


{
    "totals": {
        "review_count": 64,
        "average_rating": "4.18",
        "rating_count": 357
    },
    "reviews": [
        {
            "id": "56528670",
            "datetime": "2024-08-13T00:00:00",
            "rating": "4",
            "text": "Great vehicle with not so great mileage for a hybrid. Good things first: 1. Quiet cabin 2. Panoramic sunroof 3. Grey interior leather seats 4. Cooled and heated seats 5. Adjustable back seats 6. Overall comfort. What I don't like: 1. Mileage is not as advertised. My gas sedan I had before gave much better mileage than Tucson hybrid. The highway mileage was less than 28 when going over 70 mph. City mileage depends but have to change driving style. City mileage averages around 36. 2. The visibility on the sides from the driver seat is not great for a driver who is short. 3. I'm 5'2\" and I really have trouble pushing the gas pedal unless I wear high heels. 4. The headlights do not go very far out and are not bright enough at night. 5. The audio is only so-so for BOSE.",
            "reviewer": "Soumya S."
        },
        {
            "id": "56584272",
            "datetime": "2024-07-04T00:00:00",
            "rating": "3",
            "text": "Comfort, safety, reliability, and warranty are great. However, the fuel efficiency is not nearly as good as advertised. I'm averaging 26-29 mpg, when it's advertised at 38 mpg.",
            "reviewer": "Sherrie M."
        },
        {
            "id": "56572700",
            "datetime": "2024-07-03T00:00:00",
            "rating": "5",
            "text": "If you're considering a Hyundai Tucson, I would highly recommend it for its impressive range of features and reliability. It's a great choice if you need a versatile, well-equipped vehicle that offers excellent value for the price. Additionally, the Tucson is equipped with advanced safety systems like adaptive cruise control, lane-keeping assist, and automatic emergency braking, making it a reliable and secure choice for you and your family.",
            "reviewer": "Mohammad S."
        },
        {
            "id": "56584331",
            "datetime": "2024-06-28T00:00:00",
            "rating": "4",
            "text": "The factory rack does not accept major brand attachments, Thule etc. I thought I could adapt it, but that has not worked. My only real solution is to purchase a different rack.",
            "reviewer": "Gregory K."
        },
        {
            "id": "56584255",
            "datetime": "2024-06-25T00:00:00",
            "rating": "5",
            "text": "Solid build, comfortable for driver & passenger. I like the hybrid idea. when we travel we drive over 1000 miles on our shortest trip, so economical and comfort is very important -- that plus all wheel drive!",
            "reviewer": "Jill K."
        },
        {
            "id": "56584334",
            "datetime": "2024-06-25T00:00:00",
            "rating": "5",
            "text": "Great balance of excellent milage, nice design, advanced features, and quiet, secure performance.",
            "reviewer": "Timothy W."
        },
        {
            "id": "56584238",
            "datetime": "2024-06-24T00:00:00",
            "rating": "4",
            "text": "The passenger seat does not have electricity adjustment features. The driver door is a bit low and there are blind spots.",
            "reviewer": "Marianne B."
        },
        {
            "id": "56528715",
            "datetime": "2024-06-11T00:00:00",
            "rating": "5",
            "text": "the overall appearance of this vehicle it's always turning heads",
            "reviewer": "Robert C."
        },
        {
            "id": "56528600",
            "datetime": "2024-06-07T00:00:00",
            "rating": "3",
            "text": "This car is quiet and smooth, has good ground clearance, and has plenty of power for normal driving. The gas mileage is as advertised, about 38 mpg. Fancy styling makes the car hard to wash. The design seems new and has wrinkles that should be worked out: The steering is heavy, making straight-ahead driving hard work. The electronics are too complicated; touch-screen controls are hard to use and the keyless door locks are unreliable. The catalytic converter is exposed and seems vulnerable to theft.",
            "reviewer": "Antonin G."
        },
        {
            "id": "56362617",
            "datetime": "2024-05-15T00:00:00",
            "rating": "5",
            "text": "The Hyundai Tucson plug in hybrid far exceeds other automobile makers. Hyundais quality is exceptional from the interior, engine and exterior.",
            "reviewer": "Loreli C."
        }
    ]
}

Error Codes

Status Code Error Type Description
400 InvalidRequest The request parameters are invalid or missing
401 Unauthorized Invalid or missing API key
403 Forbidden Your account is out of credits
429 RateLimitExceeded You've exceeded the API rate limit(10 requests per second)
500 ServerError An unexpected error occurred on our servers. In these cases we recommend to retry the request for a couple of times. If the error subsists you can reach us to open a ticket.