Created
January 23, 2024 17:38
-
-
Save anjalbinayak/3e5dde1d7baece7d3c0358db664b4224 to your computer and use it in GitHub Desktop.
Cars List
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"supercars": [ | |
{ | |
"brand": "Ferrari", | |
"model": "LaFerrari", | |
"year": 2021, | |
"top_speed_mph": 217, | |
"acceleration_sec": 2.4, | |
"engine": "V12 Hybrid", | |
"horsepower": 950, | |
"price_usd": 1.5e6 | |
}, | |
{ | |
"brand": "Lamborghini", | |
"model": "Aventador SVJ", | |
"year": 2022, | |
"top_speed_mph": 220, | |
"acceleration_sec": 2.8, | |
"engine": "V12", | |
"horsepower": 770, | |
"price_usd": 2.0e6 | |
}, | |
{ | |
"brand": "Bugatti", | |
"model": "Chiron", | |
"year": 2020, | |
"top_speed_mph": 304, | |
"acceleration_sec": 2.5, | |
"engine": "Quad-Turbo W16", | |
"horsepower": 1500, | |
"price_usd": 3.5e6 | |
}, | |
{ | |
"brand": "McLaren", | |
"model": "P1", | |
"year": 2019, | |
"top_speed_mph": 217, | |
"acceleration_sec": 2.8, | |
"engine": "V8 Hybrid", | |
"horsepower": 903, | |
"price_usd": 1.8e6 | |
}, | |
{ | |
"brand": "Porsche", | |
"model": "918 Spyder", | |
"year": 2020, | |
"top_speed_mph": 214, | |
"acceleration_sec": 2.5, | |
"engine": "V8 Hybrid", | |
"horsepower": 887, | |
"price_usd": 1.7e6 | |
}, | |
{ | |
"brand": "Koenigsegg", | |
"model": "Jesko", | |
"year": 2023, | |
"top_speed_mph": 300, | |
"acceleration_sec": 2.9, | |
"engine": "Twin-Turbo V8", | |
"horsepower": 1600, | |
"price_usd": 2.8e6 | |
}, | |
{ | |
"brand": "Aston Martin", | |
"model": "Valkyrie", | |
"year": 2022, | |
"top_speed_mph": 250, | |
"acceleration_sec": 2.5, | |
"engine": "Cosworth V12", | |
"horsepower": 1160, | |
"price_usd": 3.2e6 | |
}, | |
{ | |
"brand": "Pagani", | |
"model": "Huayra Roadster", | |
"year": 2021, | |
"top_speed_mph": 230, | |
"acceleration_sec": 2.8, | |
"engine": "Twin-Turbo V12", | |
"horsepower": 754, | |
"price_usd": 2.6e6 | |
}, | |
{ | |
"brand": "Lotus", | |
"model": "Evija", | |
"year": 2023, | |
"top_speed_mph": 200, | |
"acceleration_sec": 2.5, | |
"engine": "Electric", | |
"horsepower": 1972, | |
"price_usd": 2.5e6 | |
}, | |
{ | |
"brand": "Rimac", | |
"model": "C_Two", | |
"year": 2022, | |
"top_speed_mph": 258, | |
"acceleration_sec": 1.85, | |
"engine": "Electric", | |
"horsepower": 1914, | |
"price_usd": 2.4e6 | |
}, | |
{ | |
"brand": "Hennessey", | |
"model": "Venom F5", | |
"year": 2023, | |
"top_speed_mph": 311, | |
"acceleration_sec": 2.6, | |
"engine": "Twin-Turbo V8", | |
"horsepower": 1817, | |
"price_usd": 2.1e6 | |
}, | |
{ | |
"brand": "Ford", | |
"model": "GT", | |
"year": 2021, | |
"top_speed_mph": 216, | |
"acceleration_sec": 2.8, | |
"engine": "EcoBoost V6", | |
"horsepower": 660, | |
"price_usd": 500000 | |
}, | |
{ | |
"brand": "Maserati", | |
"model": "MC20", | |
"year": 2022, | |
"top_speed_mph": 202, | |
"acceleration_sec": 2.9, | |
"engine": "V6 Nettuno", | |
"horsepower": 621, | |
"price_usd": 200000 | |
}, | |
{ | |
"brand": "Audi", | |
"model": "R8 V10 Performance", | |
"year": 2021, | |
"top_speed_mph": 205, | |
"acceleration_sec": 3.1, | |
"engine": "V10", | |
"horsepower": 620, | |
"price_usd": 200000 | |
}, | |
{ | |
"brand": "Chevrolet", | |
"model": "Corvette Z06", | |
"year": 2022, | |
"top_speed_mph": 212, | |
"acceleration_sec": 2.7, | |
"engine": "V8", | |
"horsepower": 670, | |
"price_usd": 120000 | |
}, | |
{ | |
"brand": "Nissan", | |
"model": "GT-R Nismo", | |
"year": 2021, | |
"top_speed_mph": 205, | |
"acceleration_sec": 2.5, | |
"engine": "V6 Twin-Turbo", | |
"horsepower": 600, | |
"price_usd": 210000 | |
}, | |
{ | |
"brand": "Porsche", | |
"model": "911 Turbo S", | |
"year": 2023, | |
"top_speed_mph": 205, | |
"acceleration_sec": 2.5, | |
"engine": "Flat-6 Twin-Turbo", | |
"horsepower": 640, | |
"price_usd": 200000 | |
}, | |
{ | |
"brand": "BMW", | |
"model": "i8", | |
"year": 2021, | |
"top_speed_mph": 155, | |
"acceleration_sec": 4.2, | |
"engine": "Plug-in Hybrid", | |
"horsepower": 369, | |
"price_usd": 160000 | |
}, | |
{ | |
"brand": "Jaguar", | |
"model": "F-Type SVR", | |
"year": 2022, | |
"top_speed_mph": 200, | |
"acceleration_sec": 3.5, | |
"engine": "V8 Supercharged", | |
"horsepower": 575, | |
"price_usd": 130000 | |
}, | |
{ | |
"brand": "Mercedes-AMG", | |
"model": "GT Black Series", | |
"year": 2023, | |
"top_speed_mph": 202, | |
"acceleration_sec": 3.2, | |
"engine": "V8 Twin-Turbo", | |
"horsepower": 730, | |
"price_usd": 350000 | |
}, | |
{ | |
"brand": "Lexus", | |
"model": "LFA", | |
"year": 2022, | |
"top_speed_mph": 202, | |
"acceleration_sec": 3.6, | |
"engine": "V10", | |
"horsepower": 562, | |
"price_usd": 450000 | |
}, | |
{ | |
"brand": "Alfa Romeo", | |
"model": "8C Competizione", | |
"year": 2021, | |
"top_speed_mph": 181, | |
"acceleration_sec": 3.8, | |
"engine": "V8", | |
"horsepower": 444, | |
"price_usd": 300000 | |
}, | |
{ | |
"brand": "Tesla", | |
"model": "Roadster", | |
"year": 2022, | |
"top_speed_mph": 250, | |
"acceleration_sec": 1.9, | |
"engine": "Electric", | |
"horsepower": 1000, | |
"price_usd": 250000 | |
}, | |
{ | |
"brand": "Bentley", | |
"model": "Continental GT Speed", | |
"year": 2023, | |
"top_speed_mph": 208, | |
"acceleration_sec": 3.5, | |
"engine": "W12", | |
"horsepower": 650, | |
"price_usd": 250000 | |
}, | |
{ | |
"brand": "Rolls-Royce", | |
"model": "Wraith Black Badge", | |
"year": 2022, | |
"top_speed_mph": 155, | |
"acceleration_sec": 4.1, | |
"engine": "V12 Twin-Turbo", | |
"horsepower": 624, | |
"price_usd": 400000 | |
}, | |
{ | |
"brand": "Acura", | |
"model": "NSX", | |
"year": 2021, | |
"top_speed_mph": 191, | |
"acceleration_sec": 2.7, | |
"engine": "V6 Hybrid", | |
"horsepower": 573, | |
"price_usd": 160000 | |
}, | |
{ | |
"brand": "Infiniti", | |
"model": "Q60 Red Sport 400", | |
"year": 2022, | |
"top_speed_mph": 155, | |
"acceleration_sec": 4.5, | |
"engine": "V6 Twin-Turbo", | |
"horsepower": 400, | |
"price_usd": 60000 | |
}, | |
{ | |
"brand": "Subaru", | |
"model": "WRX STI", | |
"year": 2021, | |
"top_speed_mph": 155, | |
"acceleration_sec": 5.3, | |
"engine": "Flat-4 Turbo", | |
"horsepower": 310, | |
"price_usd": 38000 | |
}, | |
{ | |
"brand": "Toyota", | |
"model": "Supra", | |
"year": 2022, | |
"top_speed_mph": 155, | |
"acceleration_sec": 3.9, | |
"engine": "Inline-6 Turbo", | |
"horsepower": 382, | |
"price_usd": 52000 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment