-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcards_data.json
More file actions
12024 lines (12024 loc) · 444 KB
/
Copy pathcards_data.json
File metadata and controls
12024 lines (12024 loc) · 444 KB
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
{
"version": "2026.21",
"cards": [
{
"id": "amex_platinum_personal",
"name": "The Platinum Card\u00ae from American Express",
"issuer": "American Express",
"image_asset_name": "card_amex_plat",
"annual_fee": 895,
"benefits": [
{
"id": "amex_plat_hotel_credit",
"name": "Prepaid Hotel Credit",
"description": "Up to $300 back in statement credits each half-year on prepaid Fine Hotels + Resorts\u00ae or The Hotel Collection bookings ($600/year total).",
"value_amount": 600.0,
"currency_symbol": "$",
"reset_frequency": "semi_annual",
"reset_rule": "calendar_year",
"category": "hotel",
"sub_periods": [
{
"label": "H1 (Jan-Jun)",
"value": 300,
"end_date": "06-30"
},
{
"label": "H2 (Jul-Dec)",
"value": 300,
"end_date": "12-31"
}
],
"is_enrollment_required": false,
"notes": "Requires prepaid booking through Amex Travel. The Hotel Collection requires a 2-night minimum stay. Updated September 2025."
},
{
"id": "amex_plat_airline_fee",
"name": "Airline Fee Credit",
"description": "Statement credits for incidental fees (baggage, seat selection) at one selected qualifying airline.",
"value_amount": 200.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "airline",
"is_enrollment_required": true,
"notes": "Must select one airline each year in January."
},
{
"id": "amex_plat_uber",
"name": "Uber Cash",
"description": "$15 in Uber Cash for rides or eats every month, plus a $20 bonus in December.",
"value_amount": 200.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "transport",
"sub_benefits": [
{
"month": "Jan",
"value": 15
},
{
"month": "Feb",
"value": 15
},
{
"month": "Mar",
"value": 15
},
{
"month": "Apr",
"value": 15
},
{
"month": "May",
"value": 15
},
{
"month": "Jun",
"value": 15
},
{
"month": "Jul",
"value": 15
},
{
"month": "Aug",
"value": 15
},
{
"month": "Sep",
"value": 15
},
{
"month": "Oct",
"value": 15
},
{
"month": "Nov",
"value": 15
},
{
"month": "Dec",
"value": 35
}
],
"is_enrollment_required": true,
"notes": "Credits expire at the end of each month. Does not roll over."
},
{
"id": "amex_plat_uber_one",
"name": "Uber One Membership Credit",
"description": "Up to $120 in annual statement credits covering Uber One \u2014 works for either a monthly ($9.99/mo) or annual ($96/yr) membership.",
"value_amount": 120.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "transport",
"is_enrollment_required": true,
"notes": "Separate from Uber Cash credit. Track against $120/year regardless of whether you pay monthly or annually."
},
{
"id": "amex_plat_digital_ent",
"name": "Digital Entertainment Credit",
"description": "Up to $25 back each month on eligible subscriptions (Paramount+, YouTube Premium, YouTube TV, Disney+, Disney+ Bundle, Hulu, ESPN+, NYT, Peacock, WSJ).",
"value_amount": 300.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "other",
"monthly_cap": 25.0,
"is_enrollment_required": true,
"notes": "Updated September 2025: increased from $20/month and added Paramount+, YouTube Premium, YouTube TV."
},
{
"id": "amex_plat_equinox",
"name": "Equinox Credit",
"description": "Up to $25 back per month ($300/year) on Equinox+ digital subscription or Equinox club membership fees.",
"value_amount": 300.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "other",
"monthly_cap": 25.0,
"is_enrollment_required": true,
"notes": "Enroll at platinum.equinox.com using your Amex account. Must pay with Platinum Card. Added September 2025."
},
{
"id": "amex_plat_lululemon",
"name": "lululemon Credit",
"description": "Up to $75 back per quarter ($300/year) on purchases at U.S. lululemon retail stores (excl. outlets) or lululemon.com.",
"value_amount": 300.0,
"currency_symbol": "$",
"reset_frequency": "quarterly",
"reset_rule": "calendar_year",
"category": "shopping",
"sub_periods": [
{
"label": "Q1 (Jan-Mar)",
"value": 75,
"end_date": "03-31"
},
{
"label": "Q2 (Apr-Jun)",
"value": 75,
"end_date": "06-30"
},
{
"label": "Q3 (Jul-Sep)",
"value": 75,
"end_date": "09-30"
},
{
"label": "Q4 (Oct-Dec)",
"value": 75,
"end_date": "12-31"
}
],
"is_enrollment_required": true,
"notes": "Outlet locations and lululemon Like New do not qualify. Enrollment required. Added September 2025."
},
{
"id": "amex_plat_oura_ring",
"name": "Oura Ring Credit",
"description": "Up to $200 back per calendar year on Oura Ring purchases at OURArings.com.",
"value_amount": 200.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "shopping",
"is_enrollment_required": true,
"notes": "Purchase must be made directly at OURArings.com. Does not cover the optional membership. Added September 2025."
},
{
"id": "amex_plat_walmart",
"name": "Walmart+ Credit",
"description": "Statement credit up to $12.95 per month covering the cost of a Walmart+ monthly membership.",
"value_amount": 155.4,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "shopping",
"monthly_cap": 12.95,
"is_enrollment_required": true,
"notes": "Must use monthly billing (not annual). Plus Ups not eligible. Enrollment required. Added September 2025."
},
{
"id": "amex_plat_clear",
"name": "CLEAR\u00ae Plus Credit",
"description": "Cover the cost of a CLEAR Plus membership ($209/year as of 2026).",
"value_amount": 209.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "other",
"is_enrollment_required": true
},
{
"id": "amex_plat_resy",
"name": "Resy Credit",
"description": "Up to $100 in statement credits each quarter ($400/year) for eligible Resy purchases at U.S. restaurants.",
"value_amount": 400.0,
"currency_symbol": "$",
"reset_frequency": "quarterly",
"reset_rule": "calendar_year",
"category": "dining",
"sub_periods": [
{
"label": "Q1 (Jan-Mar)",
"value": 100,
"end_date": "03-31"
},
{
"label": "Q2 (Apr-Jun)",
"value": 100,
"end_date": "06-30"
},
{
"label": "Q3 (Jul-Sep)",
"value": 100,
"end_date": "09-30"
},
{
"label": "Q4 (Oct-Dec)",
"value": 100,
"end_date": "12-31"
}
],
"is_enrollment_required": true,
"notes": "Updated September 2025: increased from $50 semi-annual ($100/year) to $100 quarterly ($400/year)."
},
{
"id": "amex_plat_global_entry",
"name": "Global Entry / TSA PreCheck Credit",
"description": "Up to $120 credit for Global Entry or TSA PreCheck application fees every 4 years.",
"value_amount": 120.0,
"currency_symbol": "$",
"reset_frequency": "quadrennial",
"reset_rule": "transaction_date",
"category": "other",
"is_enrollment_required": false,
"notes": "Resets 4 years after you use it."
}
],
"perks": [
{
"name": "Centurion Lounge Access",
"description": "Complimentary access to The Centurion\u00ae Lounge network for the cardmember and up to 2 guests (or immediate family). Restrictions apply for non-Amex flight bookings.",
"icon": "airplane.circle.fill"
},
{
"name": "Delta Sky Club Access",
"description": "Access to Delta Sky Club lounges when flying same-day on a Delta-marketed/operated flight (subject to Delta's per-year visit limits).",
"icon": "airplane.circle.fill"
},
{
"name": "Priority Pass\u2122 Select",
"description": "Complimentary Priority Pass Select membership with access to 1,400+ airport lounges worldwide. Enrollment required.",
"icon": "airplane.circle.fill"
},
{
"name": "Marriott Bonvoy Gold Elite Status",
"description": "Complimentary Gold Elite status with Marriott Bonvoy. Enrollment required.",
"icon": "crown.fill"
},
{
"name": "Hilton Honors Gold Status",
"description": "Complimentary Gold status with Hilton Honors. Enrollment required.",
"icon": "crown.fill"
},
{
"name": "Premium Car Rental Status",
"description": "Elite status with Hertz, Avis, and National car rental programs. Enrollment required.",
"icon": "car.fill"
},
{
"name": "Trip Cancellation & Interruption Insurance",
"description": "Up to $10,000 per trip ($20,000 per 12-month period) reimbursement for prepaid, non-refundable travel charged to the card.",
"icon": "shield.lefthalf.filled"
},
{
"name": "No Foreign Transaction Fees",
"description": "No fees on purchases made outside the U.S.",
"icon": "globe"
},
{
"name": "Platinum Concierge",
"description": "24/7 access to a dedicated concierge for travel, dining, and entertainment requests.",
"icon": "phone.circle.fill"
},
{
"name": "Cell Phone Protection",
"description": "Up to $800 per claim for damage or theft (max 2 claims per 12 months, $50 deductible). Activated by paying your monthly cell phone bill with the card.",
"icon": "iphone"
},
{
"name": "Purchase Protection",
"description": "Reimbursement for items damaged, lost, or stolen within 90 days of purchase, up to $10,000 per incident and $50,000 per calendar year.",
"icon": "shield.lefthalf.filled"
},
{
"name": "Return Protection",
"description": "Up to $300 per item and $1,000 per calendar year when the merchant will not accept a return within 90 days of purchase.",
"icon": "arrow.uturn.backward.circle.fill"
},
{
"name": "Extended Warranty Protection",
"description": "Adds up to one extra year to U.S. manufacturer warranties of 5 years or less. Up to $10,000 per item, $50,000 per calendar year.",
"icon": "checkmark.shield.fill"
},
{
"name": "Auto Rental Collision Damage Waiver (Secondary)",
"description": "Secondary coverage up to $75,000 for theft and collision damage on rental cars when you decline the rental company's collision damage waiver and pay with the card.",
"icon": "car.fill"
},
{
"name": "Fine Hotels + Resorts Benefits",
"description": "On every FHR booking via Amex Travel: complimentary daily breakfast for 2, room upgrade (when available), 4 PM guaranteed late checkout, noon early check-in (when available), free Wi-Fi, and a $100 property amenity (e.g., dining, spa, resort credit).",
"icon": "bed.double.fill"
},
{
"name": "The Hotel Collection Benefits",
"description": "On 2+ night stays booked via Amex Travel: room upgrade (when available) and a $100 property amenity credit.",
"icon": "bed.double.fill"
},
{
"name": "Trip Delay Insurance",
"description": "Reimbursement for reasonable expenses (meals, lodging, toiletries) when a covered trip is delayed more than 6 hours, up to $500 per covered trip.",
"icon": "clock.badge.exclamationmark.fill"
},
{
"name": "Baggage Insurance Plan",
"description": "Coverage for lost, damaged, or stolen luggage when the full common-carrier fare is charged to the card: up to $2,000 for checked baggage and $3,000 combined for carry-on per covered person.",
"icon": "suitcase.fill"
},
{
"name": "Premium Global Assist Hotline",
"description": "24/7 access to medical, legal, financial, and other emergency coordination assistance when traveling more than 100 miles from home.",
"icon": "lifepreserver"
},
{
"name": "Global Dining Access by Resy",
"description": "Members-only reservations, exclusive culinary events, and curated dining experiences at top restaurants via Resy.",
"icon": "fork.knife"
}
]
},
{
"id": "amex_gold_personal",
"name": "American Express\u00ae Gold Card",
"issuer": "American Express",
"image_asset_name": "card_amex_gold",
"annual_fee": 325,
"benefits": [
{
"id": "amex_gold_uber",
"name": "Uber Cash",
"description": "$10 in Uber Cash each month for rides or Uber Eats.",
"value_amount": 120.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "transport",
"monthly_cap": 10.0,
"is_enrollment_required": true,
"notes": "Must add card to Uber account. Does not roll over."
},
{
"id": "amex_gold_dining",
"name": "Dining Credit",
"description": "$10 monthly credit at Grubhub, Cheesecake Factory, Five Guys, Buffalo Wild Wings, and Wonder.",
"value_amount": 120.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "dining",
"monthly_cap": 10.0,
"is_enrollment_required": true
},
{
"id": "amex_gold_resy",
"name": "Resy Credit",
"description": "$50 per half-year at U.S. restaurants listed on Resy (Jan-Jun, Jul-Dec).",
"value_amount": 100.0,
"currency_symbol": "$",
"reset_frequency": "semi_annual",
"reset_rule": "calendar_year",
"category": "dining",
"sub_periods": [
{
"label": "H1 (Jan-Jun)",
"value": 50,
"end_date": "06-30"
},
{
"label": "H2 (Jul-Dec)",
"value": 50,
"end_date": "12-31"
}
],
"is_enrollment_required": true
},
{
"id": "amex_gold_dunkin",
"name": "Dunkin' Credit",
"description": "$7 monthly credit at U.S. Dunkin' locations.",
"value_amount": 84.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "dining",
"monthly_cap": 7.0,
"is_enrollment_required": true
}
],
"perks": [
{
"name": "Marriott Bonvoy Gold Elite Status",
"description": "Complimentary Gold Elite status when you spend $30,000 on the card in a calendar year. Enrollment required.",
"icon": "crown.fill"
},
{
"name": "No Foreign Transaction Fees",
"description": "No fees on purchases made outside the U.S.",
"icon": "globe"
},
{
"name": "Trip Delay Insurance",
"description": "Up to $300 per covered trip when a trip is delayed more than 12 hours.",
"icon": "shield.lefthalf.filled"
},
{
"name": "Baggage Insurance Plan",
"description": "Coverage for lost, damaged, or stolen baggage during covered trips.",
"icon": "shield.lefthalf.filled"
}
]
},
{
"id": "amex_green_personal",
"name": "American Express\u00ae Green Card",
"issuer": "American Express",
"image_asset_name": "card_amex_green",
"annual_fee": 150,
"benefits": [
{
"id": "amex_green_clear",
"name": "CLEAR\u00ae Plus Credit",
"description": "Statement credit covering the cost of a CLEAR Plus membership.",
"value_amount": 209.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "other",
"is_enrollment_required": true,
"notes": "LoungeBuddy credit was removed effective January 13, 2025 and was not replaced."
}
],
"perks": [
{
"name": "Trip Delay Insurance",
"description": "Up to $300 per delayed trip (12+ hour delay) for food, lodging, or essentials, max 2 claims per 12-month period.",
"icon": "shield.lefthalf.filled"
},
{
"name": "Trip Cancellation & Interruption Insurance",
"description": "Reimbursement for prepaid, non-refundable travel charged to the card if your trip is cancelled or interrupted for a covered reason.",
"icon": "shield.lefthalf.filled"
},
{
"name": "Baggage Insurance",
"description": "Up to $1,250 carry-on / $500 checked baggage coverage for lost or damaged bags when traveling on a common carrier.",
"icon": "bag.fill"
},
{
"name": "Global Assist Hotline",
"description": "24/7 medical, legal, and travel help when you're more than 100 miles from home.",
"icon": "phone.circle.fill"
},
{
"name": "No Foreign Transaction Fees",
"description": "No fees on purchases made outside the U.S.",
"icon": "globe"
},
{
"name": "Purchase Protection",
"description": "Coverage for new purchases against accidental damage or theft for up to 90 days.",
"icon": "bag.fill"
}
]
},
{
"id": "amex_business_platinum",
"name": "The Business Platinum Card\u00ae from American Express",
"issuer": "American Express",
"image_asset_name": "card_amex_biz_plat",
"annual_fee": 895,
"benefits": [
{
"id": "amex_biz_plat_airline_fee",
"name": "Airline Fee Credit",
"description": "Statement credits for incidental fees at one selected qualifying airline.",
"value_amount": 200.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "airline",
"is_enrollment_required": true,
"notes": "Must select one airline. Covers baggage, seat selection, lounge passes."
},
{
"id": "amex_biz_plat_dell",
"name": "Dell Technologies Credit",
"description": "Up to $150 in statement credits for Dell purchases each year.",
"value_amount": 150.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "shopping",
"is_enrollment_required": true,
"notes": "Effective July 1, 2025. Additional $1,000 credit available after $5K Dell spend."
},
{
"id": "amex_biz_plat_hotel",
"name": "Hotel Credit (FHR/THC)",
"description": "Up to $300 semi-annually on prepaid Fine Hotels + Resorts or The Hotel Collection bookings.",
"value_amount": 600.0,
"currency_symbol": "$",
"reset_frequency": "semi_annual",
"reset_rule": "calendar_year",
"category": "hotel",
"sub_periods": [
{
"label": "H1 (Jan-Jun)",
"value": 300,
"end_date": "06-30"
},
{
"label": "H2 (Jul-Dec)",
"value": 300,
"end_date": "12-31"
}
],
"is_enrollment_required": false,
"notes": "The Hotel Collection requires a 2-night minimum. Effective Sept 18, 2025."
},
{
"id": "amex_biz_plat_hilton",
"name": "Hilton Credit",
"description": "$50 per quarter for purchases directly with Hilton.",
"value_amount": 200.0,
"currency_symbol": "$",
"reset_frequency": "quarterly",
"reset_rule": "calendar_year",
"category": "hotel",
"is_enrollment_required": true,
"notes": "Requires Hilton for Business membership."
},
{
"id": "amex_biz_plat_adobe",
"name": "Adobe Credit",
"description": "$250 credit after $600+ spend directly with Adobe.",
"value_amount": 250.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "other",
"is_enrollment_required": true,
"notes": "Requires $600 minimum spend to trigger."
},
{
"id": "amex_biz_plat_indeed",
"name": "Indeed Credit",
"description": "$90 per quarter for Indeed purchases.",
"value_amount": 360.0,
"currency_symbol": "$",
"reset_frequency": "quarterly",
"reset_rule": "calendar_year",
"category": "other",
"is_enrollment_required": true
},
{
"id": "amex_biz_plat_wireless",
"name": "Wireless Telephone Credit",
"description": "$10 monthly statement credit for wireless telephone service purchases.",
"value_amount": 120.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "other",
"monthly_cap": 10.0,
"is_enrollment_required": true,
"notes": "Direct purchases with U.S. wireless provider."
},
{
"id": "amex_biz_plat_clear",
"name": "CLEAR\u00ae Plus Credit",
"description": "Statement credit covering the cost of a CLEAR Plus membership.",
"value_amount": 209.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "other",
"is_enrollment_required": true
},
{
"id": "amex_biz_plat_global_entry",
"name": "Global Entry / TSA PreCheck Credit",
"description": "Up to $120 credit for Global Entry or TSA PreCheck application fees every 4 years.",
"value_amount": 120.0,
"currency_symbol": "$",
"reset_frequency": "quadrennial",
"reset_rule": "transaction_date",
"category": "other",
"is_enrollment_required": false,
"notes": "Resets 4 years after you use it."
}
],
"perks": [
{
"name": "Centurion Lounge Access",
"description": "Complimentary access to The Centurion Lounge network. Guest access policy changes apply from July 2026 (1 guest, same flight).",
"icon": "airplane.circle.fill"
},
{
"name": "Delta Sky Club Access",
"description": "Access to Delta Sky Club lounges when flying same-day Delta-marketed/operated.",
"icon": "airplane.circle.fill"
},
{
"name": "Priority Pass Select",
"description": "Complimentary Priority Pass Select with access to 1,400+ airport lounges worldwide. Enrollment required.",
"icon": "airplane.circle.fill"
},
{
"name": "Marriott Bonvoy Gold Elite Status",
"description": "Complimentary Gold Elite status with Marriott Bonvoy. Enrollment required.",
"icon": "crown.fill"
},
{
"name": "Hilton Honors Gold Status",
"description": "Complimentary Gold status with Hilton Honors. Enrollment required.",
"icon": "crown.fill"
},
{
"name": "Premium Car Rental Status",
"description": "Elite status with Hertz, Avis, and National car rental programs. Enrollment required.",
"icon": "car.fill"
},
{
"name": "Trip Cancellation & Interruption Insurance",
"description": "Up to $10,000 per trip ($20,000 per 12-month period) reimbursement for prepaid, non-refundable travel charged to the card.",
"icon": "shield.lefthalf.filled"
},
{
"name": "No Foreign Transaction Fees",
"description": "No fees on purchases made outside the U.S.",
"icon": "globe"
},
{
"name": "Business Platinum Concierge",
"description": "24/7 concierge for travel, dining, and entertainment requests.",
"icon": "phone.circle.fill"
}
]
},
{
"id": "amex_business_gold",
"name": "American Express\u00ae Business Gold Card",
"issuer": "American Express",
"image_asset_name": "card_amex_biz_gold",
"annual_fee": 375,
"benefits": [
{
"id": "amex_biz_gold_flex_credit",
"name": "Flexible Business Credit",
"description": "$20 monthly credit at FedEx, Grubhub, and office supply stores.",
"value_amount": 240.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "other",
"monthly_cap": 20.0,
"is_enrollment_required": true
},
{
"id": "amex_biz_gold_walmart",
"name": "Walmart+ Credit",
"description": "$12.95 monthly credit for Walmart+ monthly membership.",
"value_amount": 155.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "shopping",
"monthly_cap": 12.95,
"is_enrollment_required": true,
"notes": "Must use monthly billing (not annual)."
},
{
"id": "amex_biz_gold_squarespace",
"name": "Squarespace Credit",
"description": "Up to $150 per year for Squarespace purchases.",
"value_amount": 150.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "other",
"is_enrollment_required": true,
"notes": "Added October 2025."
}
],
"perks": [
{
"name": "Cell Phone Protection",
"description": "Up to $800 per claim (max 2/year, $50 deductible) for damage or theft when you pay your monthly cell bill with the card.",
"icon": "phone.circle.fill"
},
{
"name": "Purchase Protection",
"description": "Coverage for new purchases against accidental damage or theft for up to 90 days.",
"icon": "bag.fill"
},
{
"name": "Extended Warranty",
"description": "Up to one extra year on eligible warranties of five years or less.",
"icon": "shield.lefthalf.filled"
},
{
"name": "Trip Delay Insurance",
"description": "Reimbursement for incidentals if your trip is delayed by more than 12 hours.",
"icon": "shield.lefthalf.filled"
},
{
"name": "Baggage Insurance",
"description": "Coverage for lost or damaged carry-on and checked baggage on a common carrier.",
"icon": "bag.fill"
},
{
"name": "Car Rental Loss & Damage Insurance",
"description": "Secondary coverage on eligible rentals charged to the card; decline the rental company's CDW.",
"icon": "car.fill"
},
{
"name": "No Foreign Transaction Fees",
"description": "No fees on purchases made outside the U.S.",
"icon": "globe"
}
]
},
{
"id": "amex_hilton_aspire",
"name": "Hilton Honors American Express Aspire Card",
"issuer": "American Express",
"image_asset_name": "card_amex_hilton_aspire",
"annual_fee": 550,
"benefits": [
{
"id": "amex_hilton_aspire_resort",
"name": "Hilton Resort Credit",
"description": "$200 semi-annually for incidental charges at participating Hilton Resorts.",
"value_amount": 400.0,
"currency_symbol": "$",
"reset_frequency": "semi_annual",
"reset_rule": "calendar_year",
"category": "hotel",
"sub_periods": [
{
"label": "H1 (Jan-Jun)",
"value": 200,
"end_date": "06-30"
},
{
"label": "H2 (Jul-Dec)",
"value": 200,
"end_date": "12-31"
}
],
"is_enrollment_required": false,
"notes": "Charges must be on room folio and paid with Aspire card."
},
{
"id": "amex_hilton_aspire_airline",
"name": "Airline/Flight Credit",
"description": "$50 per quarter for airfare purchases directly with airlines or through AmexTravel.com.",
"value_amount": 200.0,
"currency_symbol": "$",
"reset_frequency": "quarterly",
"reset_rule": "calendar_year",
"category": "airline",
"is_enrollment_required": false
},
{
"id": "amex_hilton_aspire_clear",
"name": "CLEAR\u00ae Plus Credit",
"description": "Statement credit covering the cost of a CLEAR Plus membership.",
"value_amount": 209.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "other",
"is_enrollment_required": true
},
{
"id": "amex_hilton_aspire_global_entry",
"name": "Global Entry / TSA PreCheck Credit",
"description": "Up to $100 credit for Global Entry or TSA PreCheck application fees every 4 years.",
"value_amount": 100.0,
"currency_symbol": "$",
"reset_frequency": "quadrennial",
"reset_rule": "transaction_date",
"category": "other",
"is_enrollment_required": false,
"notes": "Resets 4 years after you use it."
},
{
"id": "amex_hilton_aspire_free_night",
"name": "Annual Free Night Reward",
"description": "Receive one Hilton Honors Free Night Reward each year on your card anniversary, valid for a standard-room redemption at virtually any Hilton property. No weekend restriction.",
"value_amount": 1.0,
"currency_symbol": "night",
"reset_frequency": "annual",
"reset_rule": "card_anniversary",
"category": "hotel",
"is_enrollment_required": false,
"notes": "Certificate posts ~8-12 weeks after anniversary and expires 12 months after issuance. Spend $30K and $60K in a calendar year to earn additional Free Night Rewards."
}
],
"perks": [
{
"name": "Hilton Honors Diamond Status",
"description": "Complimentary Diamond status with Hilton Honors as long as you remain a cardmember.",
"icon": "crown.fill"
},
{
"name": "Priority Pass\u2122 Select (Unlimited)",
"description": "Complimentary Priority Pass Select with unlimited visits to 1,400+ airport lounges. Enrollment required.",
"icon": "airplane.circle.fill"
},
{
"name": "No Foreign Transaction Fees",
"description": "No fees on purchases made outside the U.S.",
"icon": "globe"
},
{
"name": "Trip Cancellation & Interruption Insurance",
"description": "Up to $10,000 per trip ($20,000 per 12-month period) reimbursement for prepaid, non-refundable travel charged to the card.",
"icon": "shield.lefthalf.filled"
},
{
"name": "Premium Car Rental Status",
"description": "Elite status with Hertz, Avis, and National car rental programs. Enrollment required.",
"icon": "car.fill"
}
]
},
{
"id": "amex_delta_reserve",
"name": "Delta SkyMiles\u00ae Reserve American Express Card",
"issuer": "American Express",
"image_asset_name": "card_amex_delta_reserve",
"annual_fee": 650,
"benefits": [
{
"id": "amex_delta_reserve_resy",
"name": "Resy Credit",
"description": "$20 monthly credit at U.S. restaurants listed on Resy.",
"value_amount": 240.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "dining",
"monthly_cap": 20.0,
"is_enrollment_required": true
},
{
"id": "amex_delta_reserve_uber_one",
"name": "Uber One Credit",
"description": "Up to $120 in annual statement credits covering Uber One \u2014 monthly or annual membership.",
"value_amount": 120.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",
"category": "transport",
"is_enrollment_required": true,
"notes": "Must start by 6/25/2026. Track against $120/year regardless of billing cadence."
},
{
"id": "amex_delta_reserve_global_entry",
"name": "Global Entry / TSA PreCheck Credit",
"description": "Up to $120 credit for Global Entry or TSA PreCheck application fees every 4 years.",
"value_amount": 120.0,
"currency_symbol": "$",
"reset_frequency": "quadrennial",
"reset_rule": "transaction_date",
"category": "other",
"is_enrollment_required": false,
"notes": "Resets 4 years after you use it."
},
{
"id": "amex_delta_reserve_companion",
"name": "Annual Companion Certificate",
"description": "Receive 1 Companion Certificate each year after card renewal, good for one round-trip ticket in First, Comfort+, or Main Cabin within the U.S., Mexico, Caribbean, or Central America. Pay only taxes/fees ($80 domestic, $250 international max).",
"value_amount": 1.0,
"currency_symbol": "companion",
"reset_frequency": "annual",
"reset_rule": "card_anniversary",
"category": "airline",
"is_enrollment_required": false,
"notes": "Auto-issued to your SkyMiles account after card renewal. Each certificate expires 1 year from issuance."
}
],
"perks": [
{
"name": "Delta Sky Club Access",
"description": "Complimentary Delta Sky Club access for the cardmember when flying same-day on Delta. Guest access requires a fee or sufficient MQD.",
"icon": "airplane.circle.fill"
},
{
"name": "Centurion Lounge Access",
"description": "Centurion Lounge access when flying same-day on a Delta-marketed/operated flight booked with the card.",
"icon": "airplane.circle.fill"
},
{
"name": "First & Second Checked Bag Free",
"description": "First checked bag free on Delta flights, plus a free second checked bag on domestic Delta-operated flights, for the cardmember and up to 8 companions on the same reservation (as of June 4, 2026).",
"icon": "bag.fill"
},
{
"name": "Priority Boarding",
"description": "Main Cabin 1 priority boarding on Delta-operated flights.",
"icon": "airplane.circle.fill"
},
{
"name": "20% Savings on In-flight Purchases",
"description": "20% back as a statement credit on eligible Delta in-flight purchases (food, beverage, audio headsets).",
"icon": "airplane.circle.fill"
},
{
"name": "Medallion Qualification Boost",
"description": "Earn Medallion Qualification Dollars (MQDs) at $1 per $10 spent, accelerating elite status.",
"icon": "crown.fill"
},
{
"name": "Trip Delay Insurance",
"description": "Reimbursement for incidentals if your Delta trip is delayed.",
"icon": "shield.lefthalf.filled"
},
{
"name": "No Foreign Transaction Fees",
"description": "No fees on purchases made outside the U.S.",
"icon": "globe"
}
]
},
{
"id": "amex_delta_platinum",
"name": "Delta SkyMiles\u00ae Platinum American Express Card",
"issuer": "American Express",
"image_asset_name": "card_amex_delta_plat",
"annual_fee": 350,
"benefits": [
{
"id": "amex_delta_plat_resy",
"name": "Resy Credit",
"description": "$10 monthly credit at U.S. restaurants listed on Resy.",
"value_amount": 120.0,
"currency_symbol": "$",
"reset_frequency": "monthly",
"reset_rule": "calendar_month",
"category": "dining",
"monthly_cap": 10.0,
"is_enrollment_required": true
},
{
"id": "amex_delta_plat_uber_one",
"name": "Uber One Credit",
"description": "Up to $120 in annual statement credits covering Uber One \u2014 monthly or annual membership.",
"value_amount": 120.0,
"currency_symbol": "$",
"reset_frequency": "annual",
"reset_rule": "calendar_year",