1984 Lincoln Town Car

Ended: 8 months ago — 21:00 UTC on 8 / Oct / 2024
What we know: 1984 Lincoln
1984 Lincoln Town Car
1984 Lincoln Town Car
The provided JSON data represents a listing for an auction, specifically for a 1984 Lincoln Town Car Signature Series. Here's a breakdown of the information given: 1. **Image URLs**: The auction has images available in five different sizes ("xs", "xmd", "md", "lg", and "xl"). Each size has a specific URL to fetch the image. 2. **Title**: The title of the listing is "Me-Decade Luxury: 1984 Lincoln Town Car Signature Series". 3. **Auction Details**: - The auction starts on October 1, 2024 at 7:00 AM (Eastern Time). - As of the data provided, there's no current bid or current price yet. - There is a reserve price set for this auction (has_reserve: true), but it hasn't been met by any bid yet (reserve_met: false). - It was listed on September 26, 2024 at 8:45:01 AM. 4. ** Listing Type**: This is an auction listing type. Here's how you might access and display this data in Python: ```python import json data = ''' ... (the provided JSON data) ... ''' auction_data = json.loads(data) # Accessing some of the data: print("Listing Title: ", auction_data['title']) print("Auction Start Date:", auction_data['start_date']) print("Has Reserve:", auction_data['has_reserve']) # You can also access image URLs like this: xs_image_url = auction_data['images']['xs'] print("XS Image URL:", xs_image_url) ``` This script will print out the listing title, start date, and the status of whether there's a reserve price or not. Additionally, it prints out an example XS image URL.
Last bid: $3,500

Bids