-
Notifications
You must be signed in to change notification settings - Fork 0
/
driversfeed.json
1859 lines (1859 loc) · 110 KB
/
driversfeed.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"drivers": {
"driver": [
{
"seriesid": "55",
"name": "Marco Andretti",
"driverid": "3608",
"rc_entrant_id": null,
"rc_driver_id": "369",
"team": "Andretti Herta w/ Marco & Curb-Agajanian",
"teamid": "22614",
"rookie": "0",
"number": "98",
"engine": "Honda",
"primary_sponsor": "KULR",
"race_engineer": null,
"bio": {
"#cdata-section": "<p><strong>ON TRACK</strong></p>\r\n<ul>\r\n <li>Third-generation driver; grandfather, Mario, won 52 races (including the 1969 Indianapolis 500) and four INDYCAR SERIES championships; father, Michael, won 42 races and one championship.</li>\r\n <li>2021 was his 16th season competing in the NTT INDYCAR SERIES.</li>\r\n <li>Has competed in SRX, American Le Mans Series, the A1GP World Cup of Motorsport, 24 Hours of Le Mans\r\n and the FIA Formula E Championship.</li>\r\n <li>2006 Indianapolis 500 and NTT INDYCAR SERIES Rookie of the Year</li>\r\n <li>Two-time race winner, six-time pole sitter</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>Purchased his childhood home in Nazareth, Pa., where he spends most of his free time.</li>\r\n <li>Operates a burgeoning real estate business.</li>\r\n <li>Planned to compete in the 2020 New York City Marathon before COVID-19 Pandemic cancelled the event.</li>\r\n <li>Married his longtime girlfriend, Polish model and actress Marta Krupa in the fall of 2017</li>\r\n</ul>\r\n<div id=\"fpCE_version\" style=\"display:none;\">8.5.2</div>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/MarcoAndretti.jpg?dp=04-21-2022T07:10PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/MarcoAndretti.jpg?dp=03-03-2020T12:47AM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/98-Black-T.png?dp=04-19-2022T10:52PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/98-Black-T.png?dp=04-19-2022T10:52PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/Default-2022-SSW.png?dp=12-13-2021T02:53PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/USA.png?dp=03-10-2022T09:47PM",
"birthdate": "3/13/1987",
"height": "5-9",
"weight": "157",
"hometown": "Nazareth, Pennsylvania",
"residence": "Nazareth, Pennsylvania",
"website": "http://www.marcoandretti.com",
"twitterhandle": "MarcoAndretti",
"curatorfeedid": "0b04ffc2-3d4a-4948-a4c7-d1580597960f",
"stats": {
"starts": "--",
"poles": "--",
"wins": "--",
"top5": "--",
"top10": "--",
"avgstart": "--",
"avgfinish": "--",
"lapsled": "--",
"running": "--"
},
"career_stats": {
"starts": "249",
"poles": "6",
"wins": "2",
"top5": "42",
"top10": "107",
"avgstart": "12.43",
"avgfinish": "12.34",
"lapsled": "1032",
"running": "201"
}
},
{
"seriesid": "55",
"name": "Tatiana Calderon",
"driverid": "4243",
"rc_entrant_id": null,
"rc_driver_id": "596",
"team": "A.J. Foyt Enterprises",
"teamid": "1874",
"rookie": "1",
"number": "11",
"engine": "Chevrolet",
"primary_sponsor": "ROKiT",
"race_engineer": "Daniele Cucchiaroni",
"bio": {
"#cdata-section": "<p style=\"color: #000000; background-color: white; margin: 0in;\"><strong><span>ON TRACK</span></strong></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• Former Alfa Romeo/Sauber test driver will compete as a rookie in the NTT INDYCAR SERIES driving for AJ Foyt Racing on the road/street circuit events.</span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• Tatiana has competed in 28 countries and most recently raced in Japan's Super Formula Championship and the World Endurance Championship. </span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• She has also competed in Formula 2, GP3 (Now FIA Formula 3), European Le Mans Series, Formula V8 3.5, FIA Formula 3 Europe and Star Mazda.</span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><strong><span>OFF TRACK</span></strong></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• Enjoys watching all sports and uses running, cycling and swimming as part of her weekly training regimen. </span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• She is a fan of tennis and would like to meet Roger Federer or Serena Williams.</span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• Favorites – TV Show: Anything on Netflix; Race Car Driver: Juan Pablo Montoya; Band: Coldplay.</span></p>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/TatianaCalderon.jpg?dp=01-25-2022T01:09PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/TatianaCalderon.jpg?dp=01-17-2022T02:30PM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/11-White-T.png?dp=04-27-2022T06:25PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/11-White-T.png?dp=04-27-2022T06:25PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/11-ROKiT.png?dp=04-05-2022T11:45PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/Colombia.png?dp=03-10-2022T09:43PM",
"birthdate": "3/10/1993",
"height": "5-4",
"weight": "125",
"hometown": "Bogota, Colombia",
"residence": "Madrid, Spain",
"website": null,
"twitterhandle": "TataCalde",
"curatorfeedid": null,
"stats": {
"starts": "3",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "25.33",
"avgfinish": "22.00",
"lapsled": "0",
"running": "3"
},
"career_stats": {
"starts": "3",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "25.33",
"avgfinish": "22.00",
"lapsled": "0",
"running": "3"
}
},
{
"seriesid": "55",
"name": "Ed Carpenter",
"driverid": "3620",
"rc_entrant_id": null,
"rc_driver_id": "300",
"team": "Ed Carpenter Racing",
"teamid": "2259",
"rookie": "0",
"number": "33",
"engine": "Chevrolet",
"primary_sponsor": "Alzamend",
"race_engineer": null,
"bio": {
"#cdata-section": "<p style=\"font-weight: bold;\">\r\n<strong>ON TRACK</strong></p>\r\n<ul>\r\n <li>Three-time Indianapolis 500 pole winner.</li>\r\n <li>Oval-track specialist whose three career wins have all come on ovals; scheduled to drive the four ovals on\r\n the 2022 NTT INDYCAR SERIES schedule.</li>\r\n <li>Won the first-ever Indy Lights race at Indianapolis Motor Speedway, the 2003 Freedom 100.</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>Co-owner of Ed Carpenter Racing along with Tony George and Stuart Reed. He is also one of two owner/drivers competing in INDYCAR.</li>\r\n <li>Graduated from Butler University in Indianapolis and has been featured in the university’s advertising\r\n campaign.</li>\r\n <li>Is a fan of the Butler Bulldogs men’s basketball team, the NBA’s Indiana Pacers and NFL’s Indianapolis Colts.</li>\r\n</ul>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/EdCarpenter.jpg?dp=01-25-2022T01:11PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/EdCarpenter.jpg?dp=03-03-2020T12:46AM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/33-Purple-T.png?dp=04-27-2022T06:31PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/33-Purple-T.png?dp=04-27-2022T06:31PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/Default-2022-SSW.png?dp=12-13-2021T02:53PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/USA.png?dp=03-10-2022T09:47PM",
"birthdate": "3/3/1981",
"height": "5-9",
"weight": "165",
"hometown": "Indianapolis, Indiana",
"residence": "Indianapolis, Indiana",
"website": "http://www.edcarpenterracing.com",
"twitterhandle": "EdCarpenter20",
"curatorfeedid": "e75a77c3-7d49-4be7-a487-5e71a74b930e",
"stats": {
"starts": "1",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "21.00",
"avgfinish": "13.00",
"lapsled": "4",
"running": "1"
},
"career_stats": {
"starts": "192",
"poles": "3",
"wins": "3",
"top5": "17",
"top10": "53",
"avgstart": "15.60",
"avgfinish": "14.51",
"lapsled": "388",
"running": "146"
}
},
{
"seriesid": "55",
"name": "Helio Castroneves",
"driverid": "3622",
"rc_entrant_id": null,
"rc_driver_id": "254",
"team": "Meyer Shank Racing",
"teamid": "2260",
"rookie": "0",
"number": "06",
"engine": "Honda",
"primary_sponsor": "SiriusXM",
"race_engineer": "Mark Bryant",
"bio": {
"#cdata-section": "<strong>ON TRACK</strong>\r\n<ul>\r\n <li>Four-time Indianapolis 500 winner (2001, 2002, 2009, 2021).</li>\r\n <li>Tied for 10th all time in INDYCAR SERIES history with 31 race wins with Paul Tracy and Dario Franchitti.</li>\r\n <li>Fourth all time in INDYCAR SERIES pole positions with 50.</li>\r\n <li>Known as Spider-Man for his celebratory fence climbs after winning a race. The tradition began in 2000 at Belle Isle following his first INDYCAR SERIES win.</li>\r\n <li>Won the 2020 IMSA WeatherTech SportsCar Championship title in Daytona Prototype International class - his first championship in any series. Also part of the winning team overall in the 2021 and 2022 Rolex 24 At Daytona.</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>“Dancing With the Stars” Season 5 champion in 2007. The “Mirror Ball” trophy is displayed in his home alongside his racing trophies.</li>\r\n <li>Named People magazine’s “Sexiest Race Car Driver,” has appeared on “Late Show with David Letterman,” “Good Morning America,” “Today,” “Ellen” and “Celebrity Wife Swap.” Served as a correspondent for “Entertainment Tonight.”</li>\r\n <li>Works out six days a week during the offseason with a regimen including swimming, running and weightlifting.</li>\r\n <li>Fluent in Portuguese, English and Spanish.</li>\r\n</ul>\r\n<div id=\"fpCE_version\" style=\"display:none;\">10.1.1</div>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/HelioCastroneves.jpg?dp=02-24-2022T10:24PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/HelioCastroneves.jpg?dp=03-03-2020T12:46AM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/06-Pink-T.png?dp=04-27-2022T06:33PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/06-Pink-T.png?dp=04-27-2022T06:33PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/06-SiriusXM.png?dp=04-25-2022T11:02PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/Brazil.png?dp=03-10-2022T09:43PM",
"birthdate": "5/10/1975",
"height": "5-8",
"weight": "147",
"hometown": "Sao Paulo, Brazil",
"residence": "Fort Lauderdale, Florida",
"website": "http://www.heliocastroneves.com",
"twitterhandle": "H3lio",
"curatorfeedid": "199e91c3-4a8f-4c97-9938-0b8c7d14a8a0",
"stats": {
"starts": "4",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "1",
"avgstart": "13.25",
"avgfinish": "16.75",
"lapsled": "1",
"running": "3"
},
"career_stats": {
"starts": "361",
"poles": "50",
"wins": "31",
"top5": "142",
"top10": "229",
"avgstart": "5.35",
"avgfinish": "6.53",
"lapsled": "6073",
"running": "296"
}
},
{
"seriesid": "55",
"name": "Conor Daly",
"driverid": "4218",
"rc_entrant_id": null,
"rc_driver_id": "580",
"team": "Ed Carpenter Racing",
"teamid": "2259",
"rookie": "0",
"number": "20",
"engine": "Chevrolet",
"primary_sponsor": "Bitnile",
"race_engineer": "Peter Craik",
"bio": {
"#cdata-section": "<p><strong>ON TRACK</strong></p>\r\n<ul>\r\n <li>Joined Ed Carpenter Racing for the Road and Street courses in 2020.</li>\r\n <li>Joined Andretti Autosport for the 2019 Indianapolis 500, finishing 10th. Will join Andretti Autosport again for the season finale at WeatherTech Raceway Laguna Seca.</li>\r\n <li>Joined Carlin for four races and Arrow Schmidt Peterson Motorsports for Portland</li>\r\n <li>Has wins in both Star Mazda (now Indy Pro 2000) and Indy Lights competition and won the 2010 Indy Pro 2000 title</li>\r\n <li>Has tested an F1 car for Force India. Won at Barcelona in GP3 and was the inaugural MRF Challenge Series champion in India.</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>A second-generation race driver, Conor is the son of Derek Daly, who reached the pinnacle of the sport, competing in Formula 1 and Indy cars for well over a decade. His mother, Beth Boles, won a Novice Jet Ski World title in 1990 and his stepfather J. Douglas Boles is the president of Indianapolis Motor Speedway.</li>\r\n</ul>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/ConorDaly.jpg?dp=02-25-2022T12:25AM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/ConorDaly.jpg?dp=03-03-2020T12:45AM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/20-White-T.png?dp=04-27-2022T06:29PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/20-White-T.png?dp=04-27-2022T06:29PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/20-Bitnile.png?dp=04-05-2022T11:45PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/USA.png?dp=03-10-2022T09:47PM",
"birthdate": "12/15/1991",
"height": "5-10",
"weight": "160",
"hometown": "Noblesville, Indiana",
"residence": "Indianapolis, Indiana",
"website": "http://www.conordaly.net",
"twitterhandle": "conordaly22",
"curatorfeedid": "51fc9584-d021-4605-89e6-c0218616c275",
"stats": {
"starts": "4",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "18.75",
"avgfinish": "17.50",
"lapsled": "0",
"running": "4"
},
"career_stats": {
"starts": "84",
"poles": "1",
"wins": "0",
"top5": "3",
"top10": "16",
"avgstart": "16.95",
"avgfinish": "15.40",
"lapsled": "129",
"running": "69"
}
},
{
"seriesid": "55",
"name": "Simona De Silvestro",
"driverid": "3813",
"rc_entrant_id": null,
"rc_driver_id": "529",
"team": "Paretta Autosport",
"teamid": "22651",
"rookie": "0",
"number": "16",
"engine": "Chevrolet",
"primary_sponsor": "Paretta Autosport",
"race_engineer": null,
"bio": {
"#cdata-section": "<p>When she was young, Simona de Silvestro’s future looked to include anything but motorsports, especially because racing had been banned in her native Switzerland since 1955.</p>\r\n<p>But De Silvestro excelled at every sport she’s played growing up. She won her first ski race when she was 3 years old, was a top regional fencer and played championship youth tennis. So it wasn’t a surprise that she took to racing quickly, winning her first kart race.</p>\r\n<p>\"When I was a baby, my dad says I was quiet only when I watched Formula 1 on TV,\" she said. \"When I was 4, he did a go-kart demonstration, but I couldn't reach the pedals, so I cried the whole day. By the time I was 9 or 10, I knew that racing was what I wanted to do, and my whole life has been about it. Driving open-wheel race cars has always been my goal. I really never had anything else in my head.\"</p>\r\n<p>De Silvestro spent her early career honing her racing skills in European karting and junior formula series while racing under the Italian flag. In 2006, she crossed the Atlantic Ocean to pursue her open-wheel racing dreams.</p>\r\n<p>From success in the Formula BMW USA championship and the Atlantic Championship, de Silvestro joined the Verizon IndyCar Series in 2010 and was runner-up in Rookie of the Year standings.</p>\r\n<div id=\"fpCE_version\" style=\"display:none;\">8.7.3</div>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/SimonaDeSilvestro.jpg?dp=04-19-2022T05:24PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/SimonaDeSilvestro.jpg?dp=02-11-2021T02:44PM",
"endplatesmall": null,
"endplatelarge": null,
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/Default-2022-RS.png?dp=12-13-2021T02:53PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/Swiss.png?dp=03-10-2022T09:47PM",
"birthdate": "9/1/1988",
"height": "5-7",
"weight": "145",
"hometown": "Thun, Switzerland",
"residence": "Thun, Switzerland",
"website": "http://www.simonadesilvestro.com",
"twitterhandle": "SimDeSilvestro",
"curatorfeedid": null,
"stats": {
"starts": "--",
"poles": "--",
"wins": "--",
"top5": "--",
"top10": "--",
"avgstart": "--",
"avgfinish": "--",
"lapsled": "--",
"running": "--"
},
"career_stats": {
"starts": "70",
"poles": "0",
"wins": "0",
"top5": "4",
"top10": "15",
"avgstart": "19.04",
"avgfinish": "18.04",
"lapsled": "5",
"running": "47"
}
},
{
"seriesid": "55",
"name": "Devlin DeFrancesco",
"driverid": "4940",
"rc_entrant_id": null,
"rc_driver_id": "2020",
"team": "Andretti Steinbrenner Autosport",
"teamid": "22628",
"rookie": "1",
"number": "29",
"engine": "Honda",
"primary_sponsor": "Powertap Hydrogen",
"race_engineer": "Andy Listes",
"bio": {
"#cdata-section": "<p style=\"color: #000000; background-color: white; margin: 0in;\"><span><strong>ON TRACK</strong></span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• An Indy Lights Presented by Cooper Tires graduate who willl compete as a rookie in the NTT INDYCAR SERIES with Andretti Steinbrenner Autosport.</span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• Has raced karts and won in North American and European karting, the Spanish F3 title in 2017 and won the Rookie of the Year crown in Indy Pro 2000 in 2020.</span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span><strong>OFF TRACK</strong></span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• Was born 15 weeks premature and spent the first four months of his life in an incubator at Toronto’s Sunnybrook Hospital. He was issued last rites many times in the event he didn’t survive. Now, he and his family regularly support the hospital.</span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• Has four French bulldogs and enjoys cycling and boating near his family's South Florida home.</span></p>\r\n<p style=\"color: #000000; background-color: white; margin: 0in;\"><span>• Would work in private finance like his father, Andy, if he wasn’t a racing driver.</span></p>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/DevlinDeFrancesco.jpg?dp=01-25-2022T01:19PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/DevlinDeFrancesco.jpg?dp=10-12-2021T06:06PM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/29-Orange-T.png?dp=04-27-2022T06:30PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/29-Orange-T.png?dp=04-27-2022T06:30PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/29-PowerTap.png?dp=04-05-2022T11:46PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/Canada.png?dp=03-10-2022T09:43PM",
"birthdate": "1/17/2000",
"height": "5-5",
"weight": "130",
"hometown": "Toronto, Canada",
"residence": "Miami, Florida",
"website": "https://www.DevlinDeFrancesco.com",
"twitterhandle": null,
"curatorfeedid": null,
"stats": {
"starts": "4",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "19.50",
"avgfinish": "22.00",
"lapsled": "1",
"running": "2"
},
"career_stats": {
"starts": "4",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "19.50",
"avgfinish": "22.00",
"lapsled": "1",
"running": "2"
}
},
{
"seriesid": "55",
"name": "Scott Dixon",
"driverid": "3628",
"rc_entrant_id": null,
"rc_driver_id": "326",
"team": "Chip Ganassi Racing",
"teamid": "22607",
"rookie": "0",
"number": "9",
"engine": "Honda",
"primary_sponsor": "PNC Bank",
"race_engineer": "Mike Cannon",
"bio": {
"#cdata-section": "<p><strong>ON TRACK</strong></p>\r\n<ul>\r\n <li>Six-time NTT INDYCAR SERIES champion (2003, 2008, 2013, 2015, 2018, 2020).</li>\r\n <li>2008 Indianapolis 500 winner.</li>\r\n <li>Most wins of any active NTT INDYCAR SERIES driver (51), which ranks third all-time.</li>\r\n <li>2021 was his 20th season driving for Chip Ganassi Racing, the longest tenure for any driver in team history.</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>Was born in Australia but is a citizen of New Zealand.</li>\r\n <li>Known for love of his family. Dixon’s wife, Emma, is a former Welsh and British 800-meter track champion\r\n and they have two daughters, Poppy and Tilly, and a son, Kit.</li>\r\n <li>Appointed Member of the New Zealand Order of Merit in 2012 and was New Zealand’s Sportsman of the\r\n Year in 2008 and 2013.</li>\r\n <li>A six-time ESPY nominee for Best Driver, most recently in 2021.</li>\r\n</ul>\r\n<div id=\"fpCE_version\" style=\"display:none;\">8.5.2</div>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/ScottDixon.jpg?dp=01-25-2022T01:07PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/ScottDixon.jpg?dp=03-03-2020T12:49AM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/9-Blue-T.png?dp=04-27-2022T06:22PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/9-Blue-T.png?dp=04-27-2022T06:22PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/9-PNCBank.png?dp=02-19-2022T08:33PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/New-Zeland.png?dp=03-10-2022T09:45PM",
"birthdate": "7/22/1980",
"height": "5-10",
"weight": "150",
"hometown": "Auckland, New Zealand",
"residence": "Indianapolis, Indiana",
"website": "http://www.scottdixon.com",
"twitterhandle": "ScottDixon9",
"curatorfeedid": "dbf77326-8d80-45eb-a506-659050383d0e",
"stats": {
"starts": "4",
"poles": "0",
"wins": "0",
"top5": "2",
"top10": "4",
"avgstart": "10.25",
"avgfinish": "6.00",
"lapsled": "26",
"running": "4"
},
"career_stats": {
"starts": "355",
"poles": "27",
"wins": "51",
"top5": "185",
"top10": "259",
"avgstart": "6.02",
"avgfinish": "6.44",
"lapsled": "6368",
"running": "304"
}
},
{
"seriesid": "55",
"name": "Marcus Ericsson",
"driverid": "4905",
"rc_entrant_id": null,
"rc_driver_id": "1087",
"team": "Chip Ganassi Racing",
"teamid": "22607",
"rookie": "0",
"number": "8",
"engine": "Honda",
"primary_sponsor": "Huski Chocolate",
"race_engineer": "Brad Goldberg",
"bio": {
"#cdata-section": "<p><strong>ON TRACK</strong></p>\r\n<ul>\r\n <li>2021 was his third NTT INDYCAR SERIES season and second with Chip Ganassi Racing.</li>\r\n <li>Competed in Formula 1, racing with Sauber from 2015-2018.</li>\r\n <li>Won the British Formula BMW and Japanese F3 championships. Also competed in British F3 and GP2\r\n (now called Formula 2).</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>Enjoys watching professional hockey and cheering on the Swedish national team. He played goalie as a\r\n youth player before deciding on a racing career.</li>\r\n <li>Enjoys food and enjoys watching the Swedish version of “Master Chef.”</li>\r\n <li>Favorite foods are Mexican and Japanese</li>\r\n <li>Has a younger brother, Hampus, who is also a race driver.</li>\r\n</ul>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/MarcusEricsson.jpg?dp=01-25-2022T01:06PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/MarcusEricsson.jpg?dp=03-09-2021T10:45PM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/8-Red-T.png?dp=04-27-2022T06:22PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/8-Red-T.png?dp=04-27-2022T06:22PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/8-Huski.png?dp=05-09-2022T01:27PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/Sweden.png?dp=03-10-2022T09:46PM",
"birthdate": "9/2/1990",
"height": "5-11",
"weight": "165",
"hometown": "Kumla, Sweden",
"residence": "Indianapolis, Indiana",
"website": "http://www.MarcusEricsson.com",
"twitterhandle": "Ericsson_Marcus",
"curatorfeedid": "2463937e-db58-4e19-9859-1efbd6669c95",
"stats": {
"starts": "4",
"poles": "0",
"wins": "0",
"top5": "1",
"top10": "2",
"avgstart": "10.50",
"avgfinish": "11.50",
"lapsled": "10",
"running": "3"
},
"career_stats": {
"starts": "50",
"poles": "0",
"wins": "2",
"top5": "8",
"top10": "26",
"avgstart": "13.12",
"avgfinish": "11.94",
"lapsled": "65",
"running": "44"
}
},
{
"seriesid": "55",
"name": "Santino Ferrucci",
"driverid": "4897",
"rc_entrant_id": null,
"rc_driver_id": "1064",
"team": "Dreyer & Reinbold Racing",
"teamid": "1893",
"rookie": "0",
"number": "23",
"engine": "Chevrolet",
"primary_sponsor": null,
"race_engineer": null,
"bio": {
"#cdata-section": "<p><strong>ON TRACK</strong></p>\r\n<ul>\r\n <li>Returns to race in the U.S., with Dale Coyne Racing after climbing the Formula One ladder as a Haas F1\r\n development driver for the last three seasons.</li>\r\n <li>Was the youngest winner of a British Formula 3 race at age 16. Has also raced in GP3 Series (Now FIA\r\n Formula 3) and FIA Formula 2.</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>Enjoys golf, online gaming and the Marvel Cinematic Universe.</li>\r\n <li>Lists steak and Italian as his favorite foods, but his favorite place to eat is Diorio’s in Waterbury, CT, near his hometown.</li>\r\n <li>Featured in an article in GQ magazine when he was 11-year-old karting prodigy.</li>\r\n</ul>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/SantinoFerrucci.jpg?dp=01-27-2022T01:27PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/SantinoFerrucci.jpg?dp=03-03-2020T12:49AM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/23-WhiteRed-T.png?dp=04-27-2022T06:30PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/23-WhiteRed-T.png?dp=04-27-2022T06:30PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/Default-2022-SSW.png?dp=12-13-2021T02:53PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/USA.png?dp=03-10-2022T09:47PM",
"birthdate": "5/31/1998",
"height": "5-4",
"weight": "116",
"hometown": "Woodbury, Connecticut",
"residence": "Port St. Lucie, Florida",
"website": "http://www.SantinoFerrucci.com",
"twitterhandle": "santinoferrucci",
"curatorfeedid": "9c75ba8f-a03f-4270-8bba-7e8f0c5c5e0a",
"stats": {
"starts": "1",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "1",
"avgstart": "27.00",
"avgfinish": "9.00",
"lapsled": "0",
"running": "1"
},
"career_stats": {
"starts": "41",
"poles": "0",
"wins": "0",
"top5": "4",
"top10": "17",
"avgstart": "15.93",
"avgfinish": "12.76",
"lapsled": "124",
"running": "36"
}
},
{
"seriesid": "55",
"name": "Romain Grosjean",
"driverid": "4935",
"rc_entrant_id": null,
"rc_driver_id": "2047",
"team": "Andretti Autosport",
"teamid": "1876",
"rookie": "0",
"number": "28",
"engine": "Honda",
"primary_sponsor": "DHL",
"race_engineer": "Olivier Boisson",
"bio": {
"#cdata-section": "<p><strong>ON TRACK</strong></p>\r\n<p>• 2021 was his first season in the NTT INDYCAR SERIES. Joined Dale Coyne Racing with RWR after racing in Formula 1.</p>\r\n<p>• Made 180 starts in Formula One competition in which he scored 10 podiums, including two career-best second-place finishes, both coming in North America (Circuit Gilles Villeneuve in Montreal and Circuit of the Americas, Austin, Texas).</p>\r\n<p><strong>OFF TRACK</strong></p>\r\n<p>• Speaks French, English and Italian</p>\r\n<p>• Started his own eSports team during the lockdown in 2020, supporting sim racers in various series.</p>\r\n<p>• He and his wife Marion have three children (Sacha, Simon and Camille).</p>\r\n<p> </p>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/RomainGrosjean.jpg?dp=01-25-2022T01:18PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/RomainGrosjean.jpg?dp=03-09-2021T10:53PM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/28-Orange-T.png?dp=05-09-2022T02:15PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/28-Orange-T.png?dp=05-09-2022T02:15PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/28-Gleaners.png?dp=05-11-2022T06:21PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/France.png?dp=03-10-2022T09:44PM",
"birthdate": "4/17/1986",
"height": "5-11",
"weight": "163",
"hometown": "Geneva, Switzerland",
"residence": "Geneva, Switzerland",
"website": "https://www.romaingrosjean.com/",
"twitterhandle": null,
"curatorfeedid": null,
"stats": {
"starts": "4",
"poles": "0",
"wins": "0",
"top5": "2",
"top10": "3",
"avgstart": "8.00",
"avgfinish": "10.00",
"lapsled": "0",
"running": "3"
},
"career_stats": {
"starts": "17",
"poles": "1",
"wins": "0",
"top5": "6",
"top10": "9",
"avgstart": "9.00",
"avgfinish": "12.06",
"lapsled": "53",
"running": "13"
}
},
{
"seriesid": "55",
"name": "Jack Harvey",
"driverid": "4505",
"rc_entrant_id": null,
"rc_driver_id": "850",
"team": "Rahal Letterman Lanigan Racing",
"teamid": "1919",
"rookie": "0",
"number": "45",
"engine": "Honda",
"primary_sponsor": "Hy-Vee",
"race_engineer": "Michael Armbrester",
"bio": {
"#cdata-section": "<p><strong>ON TRACK</strong></p>\r\n<ul>\r\n <li>Finished as Indy Lights runner-up in both 2014 and 2015, winning six races over the two seasons.</li>\r\n <li>Is one of five drivers who have won on the oval and road course at Indianapolis Motor Speedway -\r\n winning one of the Grand Prix of Indianapolis races and the Freedom 100 in 2015.</li>\r\n <li>Has won 10 racing championships in his career, including the 2012 British Formula 3 Championship.</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>Has lived in United States and France but remains grounded in his sense of home - a small village near\r\n Lincolnshire, England.</li>\r\n <li>Enjoys Star Wars and Marvel superhero movies.</li>\r\n <li>Is a big soccer fan. He supports Liverpool and his hometown Lincoln City and is a fan of the FIFA video\r\n game series.</li>\r\n <li>Racing heroes are Michael Schumacher, James Hunt and Jim Clark.</li>\r\n <li>Would trade jobs with an astronaut if he could.</li>\r\n</ul>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/JackHarvey.jpg?dp=02-23-2022T06:15PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/JackHarvey.jpg?dp=03-03-2020T12:47AM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/45-White-T.png?dp=04-27-2022T06:32PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/45-White-T.png?dp=04-27-2022T06:32PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/45-HyVee-Black-MtDew.png?dp=04-05-2022T11:47PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/United-Kingdom.png?dp=03-10-2022T09:47PM",
"birthdate": "4/15/1993",
"height": "5-10",
"weight": "168",
"hometown": "Bassingham, England",
"residence": "Indianapolis, Indiana",
"website": "http://www.jackharveyracing.com",
"twitterhandle": "Jack_Harvey42",
"curatorfeedid": "4cfcb1df-2e6c-41d0-b287-c66ec8159fd4",
"stats": {
"starts": "3",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "19.33",
"avgfinish": "15.33",
"lapsled": "0",
"running": "3"
},
"career_stats": {
"starts": "52",
"poles": "0",
"wins": "0",
"top5": "3",
"top10": "16",
"avgstart": "13.62",
"avgfinish": "14.13",
"lapsled": "7",
"running": "47"
}
},
{
"seriesid": "55",
"name": "Colton Herta",
"driverid": "4511",
"rc_entrant_id": null,
"rc_driver_id": "879",
"team": "Andretti Autosport w/ Curb-Agajanian",
"teamid": "22652",
"rookie": "0",
"number": "26",
"engine": "Honda",
"primary_sponsor": "Gainbridge",
"race_engineer": "Nathan O'Rourke",
"bio": {
"#cdata-section": "<p><strong>ON TRACK</strong></p>\r\n<ul>\r\n <li>He was the first INDYCAR SERIES driver born in the 2000’s and is a six-time INDYCAR race winner.</li>\r\n <li>Became the youngest race winner in INDYCAR SERIES history when he won at Circuit of The Americas in 2019 at 18 years, 359 days old and became youngest pole winner in INDYCAR SERIES history at 19 years 83 days when he scored his first pole at Road America in 2019.</li>\r\n <li>Son of former INDYCAR SERIES driver Bryan Herta, who won four races in his driving career and two Indianapolis\r\n 500s as a team owner. Bryan Herta currently is race strategist for his son's INDYCAR SERIES team and a co-owner ofn the Andretti Herta Haupert with Marco and Curb-Agajanian entry.</li>\r\n <li>Won the 2019 Rolex 24 at Daytona with BMW Team RLL in GT Le Mans class.</li>\r\n <li>Competed for Andretti Steinbrenner Racing in Indy Lights in 2017-18, winning six races.</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>Enjoys electronic dance music (EDM), comedies and video games. He is also an active athlete who enjoys cycling, running and golf.</li>\r\n <li>Plays drums in a rock band caled The Zibs, which toured the West Coast in 2019.</li>\r\n</ul>\r\n<div id=\"fpCE_version\" style=\"display:none;\">6.7.0</div>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/ColtonHerta.jpg?dp=01-25-2022T01:18PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/ColtonHerta.jpg?dp=03-03-2020T12:45AM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/26-Yellow-T.png?dp=04-27-2022T06:30PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/26-Yellow-T.png?dp=04-27-2022T06:30PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/26-Gainbridge.png?dp=04-25-2022T11:01PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/USA.png?dp=03-10-2022T09:47PM",
"birthdate": "3/30/2000",
"height": "5-10",
"weight": "140",
"hometown": "Valencia, California",
"residence": "Belleair, Florida",
"website": null,
"twitterhandle": "coltonherta",
"curatorfeedid": "1e9ae8a5-6af5-4314-a529-2f50050d61ae",
"stats": {
"starts": "4",
"poles": "1",
"wins": "0",
"top5": "1",
"top10": "2",
"avgstart": "5.75",
"avgfinish": "12.25",
"lapsled": "28",
"running": "3"
},
"career_stats": {
"starts": "52",
"poles": "8",
"wins": "6",
"top5": "18",
"top10": "29",
"avgstart": "6.33",
"avgfinish": "10.79",
"lapsled": "673",
"running": "40"
}
},
{
"seriesid": "55",
"name": "JR Hildebrand",
"driverid": "3736",
"rc_entrant_id": null,
"rc_driver_id": "443",
"team": "A.J. Foyt Enterprises",
"teamid": "1874",
"rookie": "0",
"number": "11",
"engine": "Chevrolet",
"primary_sponsor": "ROKiT",
"race_engineer": "Daniele Cucchiaroni",
"bio": {
"#cdata-section": "<p style=\"color: #000000; margin: 0in;\"><span><strong>ON TRACK:</strong></span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span style=\"color: #0097d2;\">• </span><span>Competing in the oval events for AJ Foyt Racing</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span style=\"color: #0097d2;\">• </span><span>2011 Indianapolis 500 Rookie of the Year</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span style=\"color: #0097d2;\">• </span><span>2009 Indy Lights Presented by Cooper Tires Champion</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span><strong>OFF TRACK:</strong></span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span style=\"color: #0097d2;\">• </span><span>Loves classic cars and car culture; owns a 1960 pink Cadillac Coupe de Ville that he named Rosie.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span style=\"color: #0097d2;\">• </span><span>Played varsity baseball in high school, and is a die-hard fan of the San Francisco Giants and Golden State Warriors.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span style=\"color: #0097d2;\">• </span><span>Enjoys running, boxing, mountain biking, playing most sports, drifting and having fun.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span style=\"color: #0097d2;\">• </span><span>Involved in various STEM educational projects, including serving as an adjunct lecturer in Stanford University’s vehicular dynamics program.</span></p>\r\n<!--\r\n<p><strong>ON TRACK</strong></p>\r\n<ul>\r\n <li>2017 will be his eighth season competing in the Verizon IndyCar Series, but only his third as a full-time driver. Has raced part time for Ed Carpenter Racing the last three seasons.</li>\r\n <li>Was 2011 Indianapolis 500 Rookie of the Year, following a dramatic runner-up finished in the 100th Anniversary of the Greatest Spectacle in Racing.</li>\r\n <li>Was 2009 Indy Lights champion, topping drivers including fellow Verizon IndyCar Series drivers James Hinchcliffe and Charlie Kimball.</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>Loves classic cars and car culture; owns a 1960 pink Cadillac Coupe de Ville that he named Rosie.</li>\r\n <li>Married longtime girlfriend Kristin Paine in the 2016 offseason.</li>\r\n <li>Played varsity baseball in high school, and is a die-hard fan of the San Francisco Giants and Golden State Warriors.</li>\r\n <li>Enjoys running, boxing, mountain biking, playing most sports, drifting and having fun.</li>\r\n <li>Was a National Merit Scholar at Redwood High School in Larkspur, Calif., and was accepted into an engineering program at MIT before deciding to pursue racing.</li>\r\n <li>Involved in various educational projects, including serving as an adjunct lecturer’s at Stanford University’s vehicular dynamics program.</li>\r\n</ul>\r\n-->"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/JRHildebrand.jpg?dp=05-17-2021T08:52PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/JRHildebrand.jpg?dp=08-10-2020T07:46PM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/11-White-T.png?dp=04-27-2022T06:25PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/11-White-T.png?dp=04-27-2022T06:25PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/Default-2022-SSW.png?dp=12-13-2021T02:53PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/USA.png?dp=03-10-2022T09:47PM",
"birthdate": "1/3/1988",
"height": "6-0",
"weight": "160",
"hometown": "Sausalito, California",
"residence": "Boulder, Colorado",
"website": "http://www.jrhildebrandracing.com",
"twitterhandle": "JRHildebrand",
"curatorfeedid": "9ca5b66a-b844-4b25-972e-a399963fa170",
"stats": {
"starts": "1",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "25.00",
"avgfinish": "14.00",
"lapsled": "1",
"running": "1"
},
"career_stats": {
"starts": "67",
"poles": "0",
"wins": "0",
"top5": "7",
"top10": "17",
"avgstart": "16.42",
"avgfinish": "14.34",
"lapsled": "123",
"running": "54"
}
},
{
"seriesid": "55",
"name": "Callum Ilott",
"driverid": "4939",
"rc_entrant_id": null,
"rc_driver_id": "2072",
"team": "Juncos Hollinger Racing",
"teamid": "2161",
"rookie": "1",
"number": "77",
"engine": "Chevrolet",
"primary_sponsor": "Juncos Racing",
"race_engineer": "Steve Barker",
"bio": {
"#cdata-section": "<p style=\"color: #000000; margin: 0in;\"><span><strong>ON TRACK</strong></span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span><strong> </strong></span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Competing in his first full season in the NTT INDYCAR SERIES with Juncos Hollinger Racing.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Member of the Ferrari Driver Academy who served as Scuderia Ferrari’s test driver and one of Alfa Romeo’s reserve drivers in 2021. Also raced in the 2021 GT World Challenge Europe Endurance Cup with Iron Lynx and co-drove an Iron Lynx Ferrari 488 to LM GTE AM class podium at 24 Hours of Le Mans.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Finished second in FIA Formula 2 in 2020 with three wins and five pole positions.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span><strong>OFF TRACK</strong></span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span><strong> </strong></span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Enjoys swimming, climbing, building remote-controlled cars and video games.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Looking forward to learning American sports.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Favorites - TV Show: \"Money Heist;\" Movie Star: Chris Hemsworth</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Says racing heroes are Ayrton Senna and Michael Schumacher.</span></p>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/CallumIlott.jpg?dp=01-25-2022T01:20PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/CallumIlott.jpg?dp=08-26-2021T04:40PM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/77-Green-T.png?dp=04-27-2022T06:32PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/77-Green-T.png?dp=04-27-2022T06:32PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/77-RacingKids.png?dp=05-11-2022T10:07PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/United-Kingdom.png?dp=03-10-2022T09:47PM",
"birthdate": "11/11/1998",
"height": "5-10",
"weight": "137",
"hometown": "Cambridge, England",
"residence": "Cambridge, England",
"website": "http://callumilott.com/",
"twitterhandle": null,
"curatorfeedid": null,
"stats": {
"starts": "4",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "17.75",
"avgfinish": "21.00",
"lapsled": "5",
"running": "3"
},
"career_stats": {
"starts": "7",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "19.14",
"avgfinish": "22.43",
"lapsled": "5",
"running": "4"
}
},
{
"seriesid": "55",
"name": "Jimmie Johnson",
"driverid": "4934",
"rc_entrant_id": null,
"rc_driver_id": "2031",
"team": "Chip Ganassi Racing",
"teamid": "22607",
"rookie": "0",
"number": "48",
"engine": "Honda",
"primary_sponsor": "Carvana",
"race_engineer": "Eric Cowdin",
"bio": {
"#cdata-section": "<p><strong>ON TRACK</strong></p>\r\n<p>• 2021 was his first season in the NTT INDYCAR SERIES. Raced on the street and road course races with Chip Ganassi Racing. <br />\r\n• Seven-time NASCAR Cup Series champion is one of the most accomplished and decorated professional athletes of his era and is the only race car driver ever to be named Associated Press Male Athlete of the Year. His historic seven championship titles are shared with NASCAR Hall of Famers Richard Petty and Dale Earnhardt as the most all-time.<br />\r\n• Recorded 83 wins, 232 top-five, 374 top-10 finishes and 36 pole positions en route to seven championships, including five in a row from 2006-2010. Johnson ranks sixth on the NASCAR all-time wins list and is a two-time Daytona 500 winner (2006, 2013) and a four-time Brickyard 400 winner (2006, 2008, 2009, 2012).<br />\r\n<br />\r\n<strong>OFF TRACK</strong></p>\r\n<p>• Away from the track, focuses on his family and rigorous fitness regimen.<br />\r\n• Has competed in numerous half-marathons, triathlons and a half Ironman where he placed 15th overall.<br />\r\n• Competed in the Boston Marathon in 2019, finishing with a time of 3:09:07.<br />\r\n• Also focuses on the Jimmie Johnson Foundation, which is dedicated to helping children, families and communities in need and has donated more than $12 million to various organizations involving children and public education.</p>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/JimmieJohnson.jpg?dp=01-25-2022T01:20PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/JimmieJohnson.jpg?dp=03-09-2021T10:37PM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/48-DkBlue-T.png?dp=04-27-2022T06:32PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/48-DkBlue-T.png?dp=04-27-2022T06:32PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/48-Carvana.png?dp=02-19-2022T08:34PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/USA.png?dp=03-10-2022T09:47PM",
"birthdate": "9/17/1975",
"height": "5-11",
"weight": "165",
"hometown": "El Cajon, California",
"residence": "Charlotte, North Carolina",
"website": "http://www.jimmiejohnson.com",
"twitterhandle": "JimmieJohnson",
"curatorfeedid": null,
"stats": {
"starts": "4",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "1",
"avgstart": "23.75",
"avgfinish": "18.25",
"lapsled": "0",
"running": "3"
},
"career_stats": {
"starts": "16",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "1",
"avgstart": "23.63",
"avgfinish": "20.38",
"lapsled": "0",
"running": "13"
}
},
{
"seriesid": "55",
"name": "Tony Kanaan",
"driverid": "3648",
"rc_entrant_id": null,
"rc_driver_id": "294",
"team": "Chip Ganassi Racing",
"teamid": "22607",
"rookie": "0",
"number": "1",
"engine": "Honda",
"primary_sponsor": "American Legion",
"race_engineer": null,
"bio": {
"#cdata-section": "<p><strong>ON TRACK</strong></p>\r\n<ul>\r\n <li>Ironman of Indy car racing with record 317 consecutive starts heading into 2020 - his second season\r\n driving for racing legend A.J. Foyt. Kanaan’s streak began in June 2001 at Portland.</li>\r\n <li>2013 Indianapolis 500 winner</li>\r\n <li>2004 NTT IndyCar Series champion</li>\r\n <li>First Indy car driver to complete every lap of every race during a season (2004).</li>\r\n <li>Perennial fan favorite – voted Most Popular Driver in 2013.</li>\r\n</ul>\r\n<p><strong>OFF TRACK</strong></p>\r\n<ul>\r\n <li>Dedicated runner and cyclist who has competed in numerous triathlon and Ironman competitions,\r\n including the Ironman World Championship in 2011.</li>\r\n <li>Counts late Formula One great Ayrton Senna as a mentor and friend. As a young go-kart racer, Kanaan\r\n beat Senna in an impromptu race at Senna’s family farm in Brazil.</li>\r\n <li>Charitable work benefits underprivileged children in Brazil.</li>\r\n <li>Speaks Portuguese, Spanish, Italian and English.</li>\r\n <li>Had a tattoo, created late in 2015 by world-class Swedish tattoo artist Niki Norberg, that depicts his\r\n greatest life achievements. Included in the design are the Indianapolis Motor Speedway’s yard of bricks,\r\n the Borg-Warner Trophy – a symbol of his 2013 Indianapolis 500 win – handprints and footprints of his\r\n two oldest sons, their birthdays, the date he wed his wife, Lauren, and the top of the Rolex he won at the\r\n 2015 Rolex 24 At Daytona.</li>\r\n <li>Competed on 2016 season episodes of prime-time game shows “Celebrity Family Feud” and “American\r\n Ninja Warrior.”</li>\r\n <li>Given name is Antoine Rizkallah Kanaan Filho.</li>\r\n</ul>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/TonyKanaan.jpg?dp=01-25-2022T01:21PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/TonyKanaan.jpg?dp=03-09-2021T10:57PM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/1-DkBlue-T.png?dp=04-19-2022T10:47PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/1-DkBlue-T.png?dp=04-19-2022T10:47PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/Default-2022-SSW.png?dp=12-13-2021T02:53PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/Brazil.png?dp=03-10-2022T09:43PM",
"birthdate": "12/31/1974",
"height": "5-5",
"weight": "150",
"hometown": "Salvador, Brazil",
"residence": "Indianapolis, Indiana",
"website": "http://www.tonykanaan.com.br",
"twitterhandle": "TonyKanaan",
"curatorfeedid": "07466193-35c5-4682-a302-4717b5b449e9",
"stats": {
"starts": "--",
"poles": "--",
"wins": "--",
"top5": "--",
"top10": "--",
"avgstart": "--",
"avgfinish": "--",
"lapsled": "--",
"running": "--"
},
"career_stats": {
"starts": "387",
"poles": "15",
"wins": "17",
"top5": "133",
"top10": "227",
"avgstart": "7.82",
"avgfinish": "7.37",
"lapsled": "4071",
"running": "311"
}
},
{
"seriesid": "55",
"name": "Sage Karam",
"driverid": "4247",
"rc_entrant_id": null,
"rc_driver_id": "538",
"team": "Dreyer & Reinbold Racing",
"teamid": "1893",
"rookie": "0",
"number": "24",
"engine": "Chevrolet",
"primary_sponsor": null,
"race_engineer": null,
"bio": { "#cdata-section": " " },
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/SageKaram.jpg?dp=04-21-2022T07:10PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/SageKaram.jpg?dp=03-10-2020T12:15PM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/24-White-T.png?dp=04-27-2022T06:30PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/24-White-T.png?dp=04-27-2022T06:30PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/Default-2022-SSW.png?dp=12-13-2021T02:53PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/USA.png?dp=03-10-2022T09:47PM",
"birthdate": "3/5/1995",
"height": "5-11",
"weight": "155",
"hometown": "Nazareth, Pennsylvania",
"residence": "Nazareth, Pennsylvania",
"website": "http://www.sagekaram.com",
"twitterhandle": "SageKaram",
"curatorfeedid": "3fc0ee07-9a98-4727-8363-3d863cc28db4",
"stats": {
"starts": "--",
"poles": "--",
"wins": "--",
"top5": "--",
"top10": "--",
"avgstart": "--",
"avgfinish": "--",
"lapsled": "--",
"running": "--"
},
"career_stats": {
"starts": "24",
"poles": "0",
"wins": "0",
"top5": "2",
"top10": "4",
"avgstart": "19.46",
"avgfinish": "18.67",
"lapsled": "16",
"running": "17"
}
},
{
"seriesid": "55",
"name": "Dalton Kellett",
"driverid": "4416",
"rc_entrant_id": null,
"rc_driver_id": "719",
"team": "A.J. Foyt Enterprises",
"teamid": "1874",
"rookie": "0",
"number": "4",
"engine": "Chevrolet",
"primary_sponsor": "K-Line Insulators",
"race_engineer": "Mike Pawlowski",
"bio": {
"#cdata-section": "<p style=\"color: #000000; margin: 0in;\"><span><strong>ON TRACK</strong></span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span><strong> </strong></span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Returns to AJ Foyt Racing for his third season of NTT INDYCAR SERIES competition.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Graduate of the Road to Indy.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• In 2019, he made his debut in IMSA's WeatherTech SportsCar Championship, where he won three class victories and one pole position in the LMP2 division.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span> </span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span><strong>OFF TRACK</strong></span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span><strong> </strong></span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Graduated from Queen’s University in Canada in 2015 with a degree in Engineering Physics.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Lists his interests as rock climbing, playing guitar, skiing, white-water kayaking, cooking and working with anything mechanical.</span></p>\r\n<p style=\"color: #000000; margin: 0in;\"><span>• Is an advocate for STEM education. In 2018, Kellett partnered with Ten80 Education as brand spokesperson for its K-12 engineering design challenge, the National STEM League.</span></p>"
},
"headshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Headshot/DaltonKellett.jpg?dp=01-25-2022T01:06PM",
"heroshot": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Drivers/IndyCar-Series/Hero/DaltonKellett.jpg?dp=03-03-2020T12:45AM",
"endplatesmall": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/4-Black-T.png?dp=04-27-2022T05:58PM",
"endplatelarge": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Endplates/4-Black-T.png?dp=04-27-2022T05:58PM",
"carillustration": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Cars/2022/IndyCar-Series/Liveries/RoadStreet/4-KLine.png?dp=04-05-2022T11:44PM",
"flag": "https://d1b8ufspcmikd1.cloudfront.net/-/media/IndyCar/Flags/Canada.png?dp=03-10-2022T09:43PM",
"birthdate": "8/19/1993",
"height": "5-11",
"weight": "170",
"hometown": "Stouffville, Canada",
"residence": "Indianapolis, Indiana",
"website": "http://www.daltonkellett.com",
"twitterhandle": null,
"curatorfeedid": null,
"stats": {
"starts": "4",
"poles": "0",
"wins": "0",
"top5": "0",
"top10": "0",
"avgstart": "20.75",
"avgfinish": "22.75",
"lapsled": "0",
"running": "2"
},
"career_stats": {
"starts": "28",
"poles": "0",
"wins": "0",