1940 Ford Tudor
What we know:
1940
Ford

Here's a simplified version of the given JSON data:
```json
{
"id": 1,
"title": "1940 Ford Tudor Sedan Street Rod",
"images": {
"large": "https://example.com/large.jpg",
"medium": "https://example.com/medium.jpg",
"small": "https://example.com/small.jpg"
},
"description": "With a Corvette LS6 V8 engine.",
"status": {
"start_date": "2024-12-05T07:00:00-05:00",
"current_bid": "$9,000",
"has_reserve": true,
"reserve_met": false
},
"listing_details": {
"listing_date": "2024-11-25T15:26:47",
"listing_type": "auctions"
}
}
```
And here's how you can access the data using JavaScript:
```javascript
const data = {
// ... your JSON data here ...
};
// Accessing image URLs
console.log(data.images.large); // "https://example.com/large.jpg"
// Accessing current bid
console.log(data.status.current_bid); // "$9,000"
// Checking if there's a reserve price
console.log(data.status.has_reserve); // true
// Getting the listing type
console.log(data.listing_details.listing_type); // "auctions"
```
Last bid:
$25,000