GET
/
{vin}
curl --request GET \
  --url https://historical.photos.vin/{vin}
{
  "data": [
    "https://historical.photos.vin/1HGCM82633A004352-1.jpg",
    "https://historical.photos.vin/1HGCM82633A004352-2.jpg"
  ]
}

Description:
Fetches a list of historical photo URLs associated with the given VIN. Each returned URL points to a specific image that can be retrieved in a subsequent request.

Example Request:

GET https://historical.photos.vin/1HGCM82633A004352
{
  "data": [
    "https://historical.photos.vin/1HGCM82633A004352-1.jpg",
    "https://historical.photos.vin/1HGCM82633A004352-2.jpg"
  ]
}

The data array contains URLs to individual photos that can be fetched directly.