1966 Chevrolet Impala
What we know:
1966
Chevrolet
This appears to be a JSON object with details about an auction listing for a 1966 Chevrolet Impala SS Sport Coupe. Here's a breakdown of the information it contains:
1. **Images**: The `images` key has sub-keys for different screen ratios (`full`, `4:3`, `16:9`) and screen sizes (`xs`, others). Each sub-key value is an URL to an image with the specified aspect ratio/size.
2. **Title**: The vehicle's title is "1966 Chevrolet Impala SS Sport Coupe With a Four-Speed".
3. **Auction Details**:
- `start_date`: The auction starts on July 18, 2024 at 7:00 AM (ET).
- `current_bid`: The current highest bid is $26,500.
- `has_reserve`: There is a reserve price set by the seller.
- `is_featured`: This listing is not featured.
- `reserve_met`: Since there's a reserved price that hasn't been met yet, this value is `false`.
- `listing_date`: The listing was created on July 12, 2024 at 3:32:45 PM.
4. **Listing Type**: This is an auction-based listing (`auctions`).
However, there are a couple of irregularities:
- The key `offer_count` has no corresponding value.
- For some keys like `current_price`, despite having the same value as `current_bid`, it's redundant to include them both.
Here's how you might access the current highest bid using JavaScript:
```javascript
const data = /* your JSON object here */;
const currentBid = data.current_bid; // '$26,500'
console.log(`The current highest bid is: ${currentBid}`);
```
Last bid:
$26,500