-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
1762 lines (1762 loc) · 78.7 KB
/
data.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
[
{
"title": "The Gang Gets Racist",
"season": 1,
"number": 1,
"description": "Dee introduces the guys to her friend, Terrell, from her acting class who offers to help promote their bar. The promotion is successful, with the catch that their clientèle is now gay men. Dennis' vanity leads him to enjoy the attention of the new customers, while Charlie strives to prove he's not a racist.",
"air_date": "2005-08-04T00:00:00.000Z",
"length": 22,
"imdb_rating": 8.6,
"starts_at_formatted": "12:45am on a Thursday",
"weekday": "Thursday",
"time_of_day": "12:45am",
"starts_at": "2015-09-03T00:45:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "John Fortenberry",
"netflix_id": 70224484
},
{
"title": "Charlie Wants an Abortion",
"season": 1,
"number": 2,
"description": "In this take on the abortion debate Dennis and Mac go to opposite sides of an abortion rally to pick up women while Charlie deals with an unruly kid he believes to be his son.",
"air_date": "2005-08-11T00:00:00.000Z",
"length": 22,
"imdb_rating": 8.7,
"starts_at_formatted": "11:45am on a Tuesday",
"weekday": "Tuesday",
"time_of_day": "11:45am",
"starts_at": "2015-09-01T11:45:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "John Fortenberry",
"netflix_id": 70224486
},
{
"title": "Underage Drinking: A National Concern",
"season": 1,
"number": 3,
"description": "The gang turns Paddy's into a safe haven for teens, but things get weird when they all get asked to the local high school prom.",
"air_date": "2005-08-16T00:00:00.000Z",
"length": 22,
"imdb_rating": 8.7,
"starts_at_formatted": " 9:45pm on a Friday",
"weekday": "Friday",
"time_of_day": " 9:45pm",
"starts_at": "2015-09-04T21:45:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224489
},
{
"title": "Charlie Has Cancer",
"season": 1,
"number": 4,
"description": "When Charlie confidentially confides that he has cancer, it leads to a series of instances of the guys manipulating women and one gorgeous transsexual (not a transvestite).",
"air_date": "2005-08-23T00:00:00.000Z",
"length": null,
"imdb_rating": 8.5,
"starts_at_formatted": "12:40pm on a Tuesday",
"weekday": "Tuesday",
"time_of_day": "12:40pm",
"starts_at": "2015-09-01T12:40:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Rob McElhenney",
"netflix_id": 70224487
},
{
"title": "Gun Fever",
"season": 1,
"number": 5,
"description": "When Paddy's gets robbed, the gang decides to purchase a gun with many issues. At the same time Dee is dating a mysterious man which the gang suspects to be the robber.",
"air_date": "2005-08-30T00:00:00.000Z",
"length": 21,
"imdb_rating": 8.5,
"starts_at_formatted": "11:25am on a Friday",
"weekday": "Friday",
"time_of_day": "11:25am",
"starts_at": "2015-09-04T11:25:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224488
},
{
"title": "The Gang Finds a Dead Guy",
"season": 1,
"number": 6,
"description": "While working on an average day, the gang finds a dead guy in the bar. And when the grand-daughter comes, Dennis and Mac use her grandpas death as an excuse to go out with her, which ends up in a feud between the both of them. At the same time Dee and Charlie visit Dennis and Dee's 'Pop-pop' and while their discover that he is an ex-Nazi.",
"air_date": "2005-09-06T00:00:00.000Z",
"length": 22,
"imdb_rating": 8.6,
"starts_at_formatted": "10:25am on a Friday",
"weekday": "Friday",
"time_of_day": "10:25am",
"starts_at": "2015-09-04T10:25:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224490
},
{
"title": "Charlie Got Molested",
"season": 1,
"number": 7,
"description": "we discover that Charlie got molested in elementary school by his teacher when the teacher gets put on trial. And when Charlie visits the Mcboyle twins, he finds out that they are using this as a a way to put the teacher in jail. At the same time Dennis wonders why everyone else but him got molested so he takes a visit to the teacher.",
"air_date": "2005-09-13T00:00:00.000Z",
"length": 19,
"imdb_rating": 8.7,
"starts_at_formatted": "11:15am on a Monday",
"weekday": "Monday",
"time_of_day": "11:15am",
"starts_at": "2015-09-07T11:15:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "John Fortenberry",
"netflix_id": 70224485
},
{
"title": "Charlie Gets Crippled",
"season": 2,
"number": 1,
"description": "When Dennis accidentally runs over Charlie with his car, Charlie uses his new injury to get the sympathy of the strippers at the local strip club. Meanwhile, Dennis & Dee's dad Frank (Danny DeVito) returns, and the gang discovers what it's like to live in the shoes of the unfortunate.",
"air_date": "2006-06-29T00:00:00.000Z",
"length": 23,
"imdb_rating": 8.8,
"starts_at_formatted": "10:15pm on a Monday",
"weekday": "Monday",
"time_of_day": "10:15pm",
"starts_at": "2015-09-07T22:15:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Rob McElhenney",
"netflix_id": 70224491
},
{
"title": "The Gang Goes Jihad",
"season": 2,
"number": 2,
"description": "When half of Paddy's gets bought out by a business developer, the gang seeks revenge. Unfortunately, an ill-timed dog-napping plot, a poorly made video tape, and a flaming bag of poop threaten the gang's chances of getting their property back.",
"air_date": "2006-06-29T00:00:00.000Z",
"length": 23,
"imdb_rating": 8.8,
"starts_at_formatted": " 3:30pm on a Monday",
"weekday": "Monday",
"time_of_day": " 3:30pm",
"starts_at": "2015-09-07T15:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224492
},
{
"title": "Dennis and Dee Go on Welfare",
"season": 2,
"number": 3,
"description": "Dennis and Dee decide to quit the bar and go on welfare to follow their dreams, but wind up getting addicted to crack instead. Meanwhile, Charlie and Mac go on a spending spree when Frank stashes all of his remaining cash in Charlie's bank account.",
"air_date": "2006-07-06T00:00:00.000Z",
"length": 22,
"imdb_rating": 9.1,
"starts_at_formatted": " 4:30pm on a Wednesday",
"weekday": "Wednesday",
"time_of_day": " 4:30pm",
"starts_at": "2015-09-02T16:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224494
},
{
"title": "Mac Bangs Dennis' Mom",
"season": 2,
"number": 4,
"description": "When Frank decides to put the gang on 'Charlie Work' instead of Charlie, they get furious and try to change that. Since Charlie is now manager, the gang does various favors to get out of it. And at the same time Mac banged Dennis' mom and Dennis wants to get back at him by trying to bang Macs mom.",
"air_date": "2006-07-06T00:00:00.000Z",
"length": 24,
"imdb_rating": 9.2,
"starts_at_formatted": " 4:30pm on a Friday",
"weekday": "Friday",
"time_of_day": " 4:30pm",
"starts_at": "2015-09-04T16:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224493
},
{
"title": "Hundred Dollar Baby",
"season": 2,
"number": 5,
"description": "Inspired by the movie \"Million Dollar Baby\", Frank teaches Dee to inflict punishment while Dennis and Mac teach Charlie to take punishment. But both fighting careers are derailed by the use of \"performance enhancing supplements\".",
"air_date": "2006-07-13T00:00:00.000Z",
"length": 23,
"imdb_rating": 9,
"starts_at_formatted": "11:30pm on a Tuesday",
"weekday": "Tuesday",
"time_of_day": "11:30pm",
"starts_at": "2015-09-01T23:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224497
},
{
"title": "The Gang Gives Back",
"season": 2,
"number": 6,
"description": "After being arrested for arson, Charlie is sentenced to community service and required to attend AA. Here he makes a discovery that could assist him in his ongoing effort to connect with the Waitress.",
"air_date": "2006-07-20T00:00:00.000Z",
"length": 23,
"imdb_rating": 8.8,
"starts_at_formatted": "11:15am on a Monday",
"weekday": "Monday",
"time_of_day": "11:15am",
"starts_at": "2015-09-07T11:15:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224495
},
{
"title": "The Gang Exploits a Miracle",
"season": 2,
"number": 7,
"description": "When Mac discovers a water stain to be shaped like the Virgin Mary, Frank decides this as an idea to exploit this 'miracle' and make money off it. And while the gang tries to get a priest to help make this miracle look more legit, Dee runs into an old high school friend which had a crush on her, in which she tries to win back.",
"air_date": "2006-07-27T00:00:00.000Z",
"length": 23,
"imdb_rating": 8.2,
"starts_at_formatted": "11:00am on a Tuesday",
"weekday": "Tuesday",
"time_of_day": "11:00am",
"starts_at": "2015-09-01T11:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224499
},
{
"title": "The Gang Runs for Office",
"season": 2,
"number": 8,
"description": "When the gang discovers that if you run for office that people will pay you to quit. So of course, the gang exploits this and so Dennis runs for office. While at the same time Frank and Charlie tries to stop this, which ends up in a feud.",
"air_date": "2006-08-03T00:00:00.000Z",
"length": 24,
"imdb_rating": 8.2,
"starts_at_formatted": "10:15am on a Wednesday",
"weekday": "Wednesday",
"time_of_day": "10:15am",
"starts_at": "2015-09-02T10:15:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224496
},
{
"title": "Charlie Goes America All Over Everybody's Ass",
"season": 2,
"number": 9,
"description": "To prove their patriotism, Charlie and Dee try to upstage the local anti-smoking group, while Dennis and Mac turn Paddy's into a bastion of true freedom. But when Frank takes things too far, Paddy's is populated with creeps and lowlifes, and the gang decides they want to live under a totalitarian state.",
"air_date": "2006-08-10T00:00:00.000Z",
"length": 22,
"imdb_rating": 8.7,
"starts_at_formatted": " 2:30am on a Saturday",
"weekday": "Saturday",
"time_of_day": " 2:30am",
"starts_at": "2015-09-05T02:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224498
},
{
"title": "Dennis and Dee Get a New Dad",
"season": 2,
"number": 10,
"description": "When Dennis and Dee discover their mother has lied to them about Frank being their dad, they get to know their real father. Meanwhile, Mac and Charlie attempt to impress Mac's imprisoned father by becoming hardened criminals.",
"air_date": "2006-08-17T00:00:00.000Z",
"length": 24,
"imdb_rating": 8.7,
"starts_at_formatted": " 8:00am on a Monday",
"weekday": "Monday",
"time_of_day": " 8:00am",
"starts_at": "2015-09-07T08:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Daniel Attias",
"netflix_id": 70224500
},
{
"title": "The Gang Finds a Dumpster Baby",
"season": 3,
"number": 1,
"description": "Mac and Dee decide to raise a baby they find in the dumpster. Dennis talks some trash while going green and befriending radical environmentalist groups, while Charlie and Frank go dumpster-diving.",
"air_date": "2007-09-13T00:00:00.000Z",
"length": null,
"imdb_rating": 8.8,
"starts_at_formatted": " 4:30pm on a Wednesday",
"weekday": "Wednesday",
"time_of_day": " 4:30pm",
"starts_at": "2015-09-02T16:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Jerry Levine",
"netflix_id": 70224501
},
{
"title": "The Gang Gets Invincible",
"season": 3,
"number": 2,
"description": "When the Philadelphia Eagles have open tryouts, Dennis, Mac, and Dee all try out. And while watching the tryouts, Frank and Charlie find out that the Mcboyles are their too. Being that Frank needs to use the restroom, he must use the Mcboyles bathroom but first needs to take some of their milk to get in, which seems not to be only milk.",
"air_date": "2007-09-13T00:00:00.000Z",
"length": null,
"imdb_rating": 8.9,
"starts_at_formatted": "10:30am on a Wednesday",
"weekday": "Wednesday",
"time_of_day": "10:30am",
"starts_at": "2015-09-02T10:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224502
},
{
"title": "Dennis and Dee's Mom Is Dead",
"season": 3,
"number": 3,
"description": "After Dennis and Dee's gold-digging mother dies from a botched plastic-surgery operation, Dee and Frank scheme to get their name in the will, while Dennis inherits the house and makes plans for a party mansion.",
"air_date": "2007-09-20T00:00:00.000Z",
"length": 30,
"imdb_rating": 8.6,
"starts_at_formatted": "12:00pm on a Monday",
"weekday": "Monday",
"time_of_day": "12:00pm",
"starts_at": "2015-09-07T12:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Matt Shakman",
"netflix_id": 70224503
},
{
"title": "The Gang Gets Held Hostage",
"season": 3,
"number": 4,
"description": "Charlie, Mac, Dennis and Dee are held hostage in the bar by a revenge-seeking Liam McPoyle along with his dim-witted brother, Ryan, and his ugly, deaf and dumb cousin, Margaret, who subject the nihilistic quartet to various torture and mind games, while Frank hides out in the air ducts while searching for a will to a relative of his and decides to take matters in his own hands to end the hostage situation.",
"air_date": "2007-09-20T00:00:00.000Z",
"length": 30,
"imdb_rating": 9,
"starts_at_formatted": " 1:30pm on a Wednesday",
"weekday": "Wednesday",
"time_of_day": " 1:30pm",
"starts_at": "2015-09-02T13:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/MV5BMTAxMjkwMDkxMDNeQTJeQWpwZ15BbWU4MDg5MjkyNDIx.jpg",
"director": "Fred Savage",
"netflix_id": 70224504
},
{
"title": "The Aluminum Monster vs. Fatty Magoo",
"season": 3,
"number": 5,
"description": "Dee discovers that her old high school friend \"Fatty McGoo,\" the only girl in school who was a bigger loser than she was, is now a successful fashion designer. She and Dennis compete to create dress designs while Frank and Mac open a sweatshop to manufacture Dennis' dresses.",
"air_date": "2007-09-27T00:00:00.000Z",
"length": null,
"imdb_rating": 8.3,
"starts_at_formatted": "11:30am on a Tuesday",
"weekday": "Tuesday",
"time_of_day": "11:30am",
"starts_at": "2015-09-01T11:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224505
},
{
"title": "The Gang Solves the North Korea Situation",
"season": 3,
"number": 6,
"description": "As they prepare for the annual Pub Crawl, the gang is horrified to learn that they face competition from a new Korean bar run by the eccentric Mr. Kim. While Charlie romances a girl who works at the bar, the others attempt to sabotage its business.",
"air_date": "2007-09-27T00:00:00.000Z",
"length": null,
"imdb_rating": 8.7,
"starts_at_formatted": " 4:00pm on a Monday",
"weekday": "Monday",
"time_of_day": " 4:00pm",
"starts_at": "2015-09-07T16:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224506
},
{
"title": "The Gang Sells Out",
"season": 3,
"number": 7,
"description": "When the gang gets an offer that a corporate company wants to buy Paddy's Pub, they accept leaving Dee and Charlie with no work. While looking for work, Dee runs into the waitress at a restaurant and gets a job working with her which doesn't work out so good, and at the same time Charlie gets a job as a janitor at a school.",
"air_date": "2007-10-04T00:00:00.000Z",
"length": null,
"imdb_rating": 8.5,
"starts_at_formatted": " 2:30pm on a Tuesday",
"weekday": "Tuesday",
"time_of_day": " 2:30pm",
"starts_at": "2015-09-01T14:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Matt Shakman",
"netflix_id": 70224507
},
{
"title": "Frank Sets Sweet Dee on Fire",
"season": 3,
"number": 8,
"description": "In their quest to become famous, Frank, Charlie, and Mac, search for newsworthy footage to air on public access.",
"air_date": "2007-10-04T00:00:00.000Z",
"length": 23,
"imdb_rating": 8.7,
"starts_at_formatted": " 6:00pm on a Wednesday",
"weekday": "Wednesday",
"time_of_day": " 6:00pm",
"starts_at": "2015-09-02T18:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224508
},
{
"title": "Sweet Dee's Dating a Retarded Person",
"season": 3,
"number": 9,
"description": "While Dennis and Dee try to figure out if the rapper Dee is dating has a mental handicap or not, Charlie, Mac, and Frank try to start their own band without knowledge of how to play musical instruments.",
"air_date": "2007-10-11T00:00:00.000Z",
"length": null,
"imdb_rating": 9.3,
"starts_at_formatted": "10:30pm on a Wednesday",
"weekday": "Wednesday",
"time_of_day": "10:30pm",
"starts_at": "2015-09-02T22:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Jerry Levine",
"netflix_id": 70224509
},
{
"title": "Mac Is a Serial Killer",
"season": 3,
"number": 10,
"description": "When a serial killer is loose in Philadelphia who targets blonde white women, the gang all tries to figure it out. So Dennis and Dee notice that Mac is visiting an unknown apartment everyday and suspect it to be him. So they decide to find out who the serial killer is by doing various experiments.",
"air_date": "2007-10-18T00:00:00.000Z",
"length": null,
"imdb_rating": 9.1,
"starts_at_formatted": "10:00am on a Thursday",
"weekday": "Thursday",
"time_of_day": "10:00am",
"starts_at": "2015-09-03T10:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Jerry Levine",
"netflix_id": 70224510
},
{
"title": "Dennis Looks Like a Registered Sex Offender",
"season": 3,
"number": 11,
"description": "Dennis is angry because he's being mistaken for a fat guy rather than the sex offender who moved next door to Charlie. Meanwhile, Mac's father is released from prison and he and Mac have some catching up to do.",
"air_date": "2007-10-25T00:00:00.000Z",
"length": null,
"imdb_rating": 8.7,
"starts_at_formatted": " 3:30pm on a Tuesday",
"weekday": "Tuesday",
"time_of_day": " 3:30pm",
"starts_at": "2015-09-01T15:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Jerry Levine",
"netflix_id": 70224511
},
{
"title": "The Gang Gets Whacked: Part 1",
"season": 3,
"number": 12,
"description": "After stumbling upon a kilo of cocaine, the gang is forced to pay off a $25,000 debt to the mob. Mac becomes a mob informant, while Frank pimps out Dennis as an escort at the local country club. Charlie stumbles upon an opportunity to sell illegal narcotics.",
"air_date": "2007-11-01T00:00:00.000Z",
"length": null,
"imdb_rating": 8.5,
"starts_at_formatted": " 2:30pm on a Monday",
"weekday": "Monday",
"time_of_day": " 2:30pm",
"starts_at": "2015-09-07T14:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Matt Shakman",
"netflix_id": 70224512
},
{
"title": "Bums: Making a Mess All Over the City",
"season": 3,
"number": 14,
"description": "Since there has been bums hanging around Paddys Pub, the gang tries to get rid of this problem. To do this they go to the police but end up getting a police car and start to impersonate police. While doing this they discover all the good treatment they get so they decide to keep this act up, but problems arise.",
"air_date": "2007-11-15T00:00:00.000Z",
"length": 21,
"imdb_rating": 8.8,
"starts_at_formatted": "10:15am on a Monday",
"weekday": "Monday",
"time_of_day": "10:15am",
"starts_at": "2015-09-07T10:15:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Jerry Levine",
"netflix_id": 70224514
},
{
"title": "The Gang Dances Their Asses Off",
"season": 3,
"number": 15,
"description": "After Charlie accidentally puts Paddy's Pub up for 1st prize in a local dance competition, Frank makes the gang participate in the contest. Here, they form alliances and try to cheat the other contestants, as well as themselves, out of first place.",
"air_date": "2007-11-15T00:00:00.000Z",
"length": null,
"imdb_rating": 9.1,
"starts_at_formatted": " 1:15pm on a Saturday",
"weekday": "Saturday",
"time_of_day": " 1:15pm",
"starts_at": "2015-09-05T13:15:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Matt Shakman",
"netflix_id": 70224515
},
{
"title": "Mac and Dennis: Manhunters",
"season": 4,
"number": 1,
"description": "Charlie and Dee get a taste for human flesh when they discover Frank's hidden stash of meat. Meanwhile, Mac and Dennis, inspired by the movie \"Rambo: First Blood\" decide to stage a manhunt against their former high school rival Rickety Cricket.",
"air_date": "2008-09-18T00:00:00.000Z",
"length": null,
"imdb_rating": 8.6,
"starts_at_formatted": " 1:30pm on a Wednesday",
"weekday": "Wednesday",
"time_of_day": " 1:30pm",
"starts_at": "2015-09-02T13:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/MV5BMTU2Mjk3Mjc3N15BMl5BanBnXkFtZTcwMjc2MzQ5MQ@@.jpg",
"director": "Fred Savage",
"netflix_id": 70224516
},
{
"title": "The Gang Solves the Gas Crisis",
"season": 4,
"number": 2,
"description": "While Mac, Dennis, and Charlie use their classic setup to sell gallons of gasoline door to door, Frank subjects Dee to a series of torture and mind games when he suspects that Dee is trying to kill him while the two plot to steal their inheritance from Bruce Mathis.",
"air_date": "2008-09-18T00:00:00.000Z",
"length": null,
"imdb_rating": 9.2,
"starts_at_formatted": "10:30am on a Monday",
"weekday": "Monday",
"time_of_day": "10:30am",
"starts_at": "2015-09-07T10:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Matt Shakman",
"netflix_id": 70224517
},
{
"title": "America's Next Top Paddy's Billboard Model Contest",
"season": 4,
"number": 3,
"description": "After buying a billboard, Frank subjects Dennis to a series of humiliating tests in a competition to get on the billboard, while Mac tries to find female subjects willing to go through his own version of a reality show, of sorts.",
"air_date": "2008-09-25T00:00:00.000Z",
"length": null,
"imdb_rating": 8.7,
"starts_at_formatted": " 9:30am on a Monday",
"weekday": "Monday",
"time_of_day": " 9:30am",
"starts_at": "2015-09-07T09:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224518
},
{
"title": "Mac's Banging the Waitress",
"season": 4,
"number": 4,
"description": "Charlie manipulates Mac and Dennis when he accuses the two of them with sleeping with the coffee shop waitress.",
"air_date": "2008-09-25T00:00:00.000Z",
"length": null,
"imdb_rating": 8.8,
"starts_at_formatted": " 2:30pm on a Wednesday",
"weekday": "Wednesday",
"time_of_day": " 2:30pm",
"starts_at": "2015-09-02T14:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Matt Shakman",
"netflix_id": 70224519
},
{
"title": "Mac & Charlie Die: Part 1",
"season": 4,
"number": 5,
"description": "After Mac's father is released from prison, he and Charlie freak out and decide that the only way out is to fake their own deaths, which they do by destroying Dee's car. Meanwhile, Dennis and Frank probe the origins of a mysterious hole that has appeared in the bathroom at Paddy's.",
"air_date": "2008-10-02T00:00:00.000Z",
"length": null,
"imdb_rating": 9.1,
"starts_at_formatted": "10:00am on a Monday",
"weekday": "Monday",
"time_of_day": "10:00am",
"starts_at": "2015-09-07T10:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224520
},
{
"title": "Who Pooped the Bed?",
"season": 4,
"number": 7,
"description": "After Charlie accuses Frank of crapping in his bed, Mac and Dennis get involved and stage an overnight observation to get to the bottom of this mystery in a case of \"Who Pooped The Bed\". Meanwhile, Dee, inspired by \"Sex & The City\", takes the Waitress and Artemis for a night on the town while Artemis figures out the subtleties of the poop mystery.",
"air_date": "2008-10-09T00:00:00.000Z",
"length": null,
"imdb_rating": 8.5,
"starts_at_formatted": " 1:30pm on a Wednesday",
"weekday": "Wednesday",
"time_of_day": " 1:30pm",
"starts_at": "2015-09-02T13:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224522
},
{
"title": "Paddy's Pub: The Worst Bar in Philadelphia",
"season": 4,
"number": 8,
"description": "The gang kidnaps the writer of a review claiming that Paddy's is the worst bar in Philadelphia and tries to force him to change his mind. But things get worse when Charlie accidentally kidnaps the writer's neighbor.",
"air_date": "2008-10-16T00:00:00.000Z",
"length": null,
"imdb_rating": 8.7,
"starts_at_formatted": " 4:42pm on a Tuesday",
"weekday": "Tuesday",
"time_of_day": " 4:42pm",
"starts_at": "2015-09-01T16:42:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Matt Shakman",
"netflix_id": 70224523
},
{
"title": "Dennis Reynolds: An Erotic Life",
"season": 4,
"number": 9,
"description": "While Frank and Mac come up with ways to spice up Dennis' erotic memoir, Dee finds that spending time in Charlie's shoes is way more difficult than it seems, and vice-versa.",
"air_date": "2008-10-23T00:00:00.000Z",
"length": null,
"imdb_rating": 8.6,
"starts_at_formatted": "11:00pm on a Monday",
"weekday": "Monday",
"time_of_day": "11:00pm",
"starts_at": "2015-09-07T23:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224524
},
{
"title": "Sweet Dee Has a Heart Attack",
"season": 4,
"number": 10,
"description": "After Dee has a heart attack, she and Dennis try to attain healthier lifestyles, and Frank gets addicted to pills and committed to a mental institution. Meanwhile, Mac and Charlie join the corporate work force to get health insurance and wind up abusing their positions.",
"air_date": "2008-10-30T00:00:00.000Z",
"length": null,
"imdb_rating": 8.8,
"starts_at_formatted": " 7:00pm on a Monday",
"weekday": "Monday",
"time_of_day": " 7:00pm",
"starts_at": "2015-09-07T19:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Matt Shakman",
"netflix_id": 70224526
},
{
"title": "The Gang Cracks the Liberty Bell",
"season": 4,
"number": 11,
"description": "In order to get Paddy's recognized by the city as a historical landmark, Mac, Dennis, and Charlie flash back to 1776 to tell the tale of the Paddy's crew's involvement in the cracking of the Liberty Bell.",
"air_date": "2008-11-06T00:00:00.000Z",
"length": null,
"imdb_rating": 8,
"starts_at_formatted": " 2:30pm on a Thursday",
"weekday": "Thursday",
"time_of_day": " 2:30pm",
"starts_at": "2015-09-03T14:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Matt Shakman",
"netflix_id": 70224527
},
{
"title": "The Gang Gets Extreme: Home Makeover Edition",
"season": 4,
"number": 12,
"description": "While trying to make their own dreams come true, the gang decides to pay it forward to an unlucky family living in the city only to have their plans backfire on them.",
"air_date": "2008-11-13T00:00:00.000Z",
"length": null,
"imdb_rating": 8.6,
"starts_at_formatted": " 3:27pm on a Friday",
"weekday": "Friday",
"time_of_day": " 3:27pm",
"starts_at": "2015-09-04T15:27:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224528
},
{
"title": "The Nightman Cometh",
"season": 4,
"number": 13,
"description": "Charlie stages a rock opera based on his song \"Nightman,\" and recruits the rest of the gang to help him with it.",
"air_date": "2008-11-20T00:00:00.000Z",
"length": null,
"imdb_rating": 9.6,
"starts_at_formatted": " 7:15pm on a Friday",
"weekday": "Friday",
"time_of_day": " 7:15pm",
"starts_at": "2015-09-04T19:15:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/MV5BMTAxMDM4NzExMTBeQTJeQWpwZ15BbWU4MDA3NDQzNDIx.jpg",
"director": "Matt Shakman",
"netflix_id": 70224529
},
{
"title": "The Gang Exploits the Mortgage Crisis",
"season": 5,
"number": 1,
"description": "While Frank buys a foreclosed house with intentions of selling it for profit, Mac and Dennis become hot-headed real estate brokers, and Dee takes advantage of a suburban couple looking to hire a surrogate mother.",
"air_date": "2009-09-17T00:00:00.000Z",
"length": null,
"imdb_rating": 8.4,
"starts_at_formatted": "11:30am on a Tuesday",
"weekday": "Tuesday",
"time_of_day": "11:30am",
"starts_at": "2015-09-01T11:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Randall Einhorn",
"netflix_id": 70224530
},
{
"title": "The Gang Hits the Road",
"season": 5,
"number": 2,
"description": "The gang takes Dee's new subcompact car and a U-haul on the road with the intentions of hitting the Grand Canyon, and Charlie attempts to expand his horizons.",
"air_date": "2009-09-24T00:00:00.000Z",
"length": null,
"imdb_rating": 9.1,
"starts_at_formatted": "11:00am on a Tuesday",
"weekday": "Tuesday",
"time_of_day": "11:00am",
"starts_at": "2015-09-01T11:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224531
},
{
"title": "The Great Recession",
"season": 5,
"number": 3,
"description": "Mac and Dennis try to cut back Paddy's expenses by firing Dee and Charlie, and Frank figures out a clever way to keep the bar afloat.",
"air_date": "2009-10-01T00:00:00.000Z",
"length": null,
"imdb_rating": 8.2,
"starts_at_formatted": "11:00am on a Tuesday",
"weekday": "Tuesday",
"time_of_day": "11:00am",
"starts_at": "2015-09-01T11:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224532
},
{
"title": "The Gang Gives Frank an Intervention",
"season": 5,
"number": 4,
"description": "After Frank embarrasses himself at the funeral of a deceased relative, Dennis and Dee decide that it's finally time to give him an intervention for his reckless lifestyle.",
"air_date": "2009-10-08T00:00:00.000Z",
"length": null,
"imdb_rating": 8.9,
"starts_at_formatted": "11:00am on a Wednesday",
"weekday": "Wednesday",
"time_of_day": "11:00am",
"starts_at": "2015-09-02T11:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224533
},
{
"title": "The Waitress Is Getting Married",
"season": 5,
"number": 5,
"description": "Dee discovers that the waitress Charlie is obsessed with is getting married to her ex-boyfriend and plots to derail the wedding, while Mac, Frank and Dennis try to get Charlie back on the dating scene.",
"air_date": "2009-10-15T00:00:00.000Z",
"length": null,
"imdb_rating": 8.8,
"starts_at_formatted": "12:30pm on a Saturday",
"weekday": "Saturday",
"time_of_day": "12:30pm",
"starts_at": "2015-09-05T12:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224534
},
{
"title": "The World Series Defense",
"season": 5,
"number": 6,
"description": "Fighting a series of traffic tickets, Dennis, along with the rest of the gang, tell the judge about their horrific experiences at Game 5 of the Phillies' world series.",
"air_date": "2009-10-22T00:00:00.000Z",
"length": null,
"imdb_rating": 8.4,
"starts_at_formatted": "11:00am on a Tuesday",
"weekday": "Tuesday",
"time_of_day": "11:00am",
"starts_at": "2015-09-01T11:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Randall Einhorn",
"netflix_id": 70224535
},
{
"title": "The Gang Wrestles for the Troops",
"season": 5,
"number": 7,
"description": "The gang decides to put on a wrestling show for troops returning home while Dee courts a soldier who doesn't seem like the person she's chatting online with.",
"air_date": "2009-10-29T00:00:00.000Z",
"length": null,
"imdb_rating": 8.5,
"starts_at_formatted": "12:30pm on a Saturday",
"weekday": "Saturday",
"time_of_day": "12:30pm",
"starts_at": "2015-09-05T12:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Randall Einhorn",
"netflix_id": 70224536
},
{
"title": "Paddy's Pub: Home of the Original Kitten Mittens",
"season": 5,
"number": 8,
"description": "The gang attempts to create a merchandising angle for Paddy's when a convention comes to Philly.",
"air_date": "2009-11-05T00:00:00.000Z",
"length": 30,
"imdb_rating": 9.1,
"starts_at_formatted": "12:30pm on a Wednesday",
"weekday": "Wednesday",
"time_of_day": "12:30pm",
"starts_at": "2015-09-02T12:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Randall Einhorn",
"netflix_id": 70224537
},
{
"title": "Mac and Dennis Break Up",
"season": 5,
"number": 9,
"description": "Taking Dee's advice seriously, Mac and Dennis decide that they're too co-dependent on each other and need to spend time apart. Meanwhile Charlie and Frank help Dee out with a major cat problem in her apartment.",
"air_date": "2009-11-12T00:00:00.000Z",
"length": null,
"imdb_rating": 8.6,
"starts_at_formatted": "12:00pm on a Friday",
"weekday": "Friday",
"time_of_day": "12:00pm",
"starts_at": "2015-09-04T12:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Fred Savage",
"netflix_id": 70224538
},
{
"title": "The D.E.N.N.I.S. System",
"season": 5,
"number": 10,
"description": "Dennis presents his fool-proof plan for picking up chicks, but soon finds that the gang each has their own fool-proof plans for one-upping each other.",
"air_date": "2009-11-19T00:00:00.000Z",
"length": null,
"imdb_rating": 9.2,
"starts_at_formatted": " 1:30pm on a Saturday",
"weekday": "Saturday",
"time_of_day": " 1:30pm",
"starts_at": "2015-09-05T13:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Randall Einhorn",
"netflix_id": 70224539
},
{
"title": "Mac and Charlie Write a Movie",
"season": 5,
"number": 11,
"description": "After Dee gets cast as an extra in the new M. Night Shyamalan movie, Mac and Charlie see a perfect opportunity to pitch their script, while Frank becomes a casting agent for Dennis.",
"air_date": "2009-12-03T00:00:00.000Z",
"length": null,
"imdb_rating": 8.3,
"starts_at_formatted": " 1:30pm on a Thursday",
"weekday": "Thursday",
"time_of_day": " 1:30pm",
"starts_at": "2015-09-03T13:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Randall Einhorn",
"netflix_id": 70224541
},
{
"title": "The Gang Reignites the Rivalry",
"season": 5,
"number": 12,
"description": "Mac, Dennis, and Charlie seek revenge on another bar after their 10 year ban in a local flip cup tournament is lifted, but find they are in need of some serious practice. Dee discovers new skills and Frank wears tight pants.",
"air_date": "2009-12-10T00:00:00.000Z",
"length": null,
"imdb_rating": 8.7,
"starts_at_formatted": " 8:17am on a Tuesday",
"weekday": "Tuesday",
"time_of_day": " 8:17am",
"starts_at": "2015-09-01T08:17:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Randall Einhorn",
"netflix_id": 70224542
},
{
"title": "Mac Fights Gay Marriage",
"season": 6,
"number": 1,
"description": "Mac pulls out the big guns to protect the sanctity of marriage, while the rest of the gang reap the rewards of marital bliss.",
"air_date": "2010-09-16T00:00:00.000Z",
"length": null,
"imdb_rating": 8,
"starts_at_formatted": "11:00am on a Thursday",
"weekday": "Thursday",
"time_of_day": "11:00am",
"starts_at": "2015-09-03T11:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/MV5BMjE5NDY0NTMxNl5BMl5BanBnXkFtZTcwMTU3Mzg4Mw@@.jpg",
"director": "Randall Einhorn",
"netflix_id": 70224543
},
{
"title": "Dennis Gets Divorced",
"season": 6,
"number": 2,
"description": "Marital bliss turns to marital business, as the gang experiences the emotional and economic tribulations of divorce.",
"air_date": "2010-09-23T00:00:00.000Z",
"length": 21,
"imdb_rating": 7.7,
"starts_at_formatted": " 7:30am on a Monday",
"weekday": "Monday",
"time_of_day": " 7:30am",
"starts_at": "2015-09-07T07:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Randall Einhorn",
"netflix_id": 70224544
},
{
"title": "The Gang Buys a Boat",
"season": 6,
"number": 3,
"description": "The gang attempts to open themselves up to the adventures of the sea after they purchase their 'new' boat.",
"air_date": "2010-09-30T00:00:00.000Z",
"length": null,
"imdb_rating": 8.8,
"starts_at_formatted": "10:00am on a Saturday",
"weekday": "Saturday",
"time_of_day": "10:00am",
"starts_at": "2015-09-05T10:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/MV5BMTA2MDE5MDcyMTBeQTJeQWpwZ15BbWU4MDYyODEzNDIx.jpg",
"director": "Randall Einhorn",
"netflix_id": 70224545
},
{
"title": "Mac's Big Break",
"season": 6,
"number": 4,
"description": "Mac finally gets his big break after correctly answering a trivia question on the radio. While Frank, Dennis, and Dee take their bar-banter to the internet with their own podcast.",
"air_date": "2010-10-07T00:00:00.000Z",
"length": null,
"imdb_rating": 8.4,
"starts_at_formatted": " 9:30am on a Thursday",
"weekday": "Thursday",
"time_of_day": " 9:30am",
"starts_at": "2015-09-03T09:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Randall Einhorn",
"netflix_id": 70224546
},
{
"title": "Mac and Charlie: White Trash",
"season": 6,
"number": 5,
"description": "After getting denied from the local pool club, Mac and Charlie aim to fix up an abandoned pool in order to beat the heat wave. Meanwhile, Dennis and Dee try to beat the heat in a more 'dignified' and 'upper-class' way.",
"air_date": "2010-10-14T00:00:00.000Z",
"length": null,
"imdb_rating": 8.3,
"starts_at_formatted": "12:30pm on a Saturday",
"weekday": "Saturday",
"time_of_day": "12:30pm",
"starts_at": "2015-09-05T12:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Randall Einhorn",
"netflix_id": 70224547
},
{
"title": "Mac's Mom Burns Her House Down",
"season": 6,
"number": 6,
"description": "Charlie and Mac set-up a truly odd couple after Mac's Mom burns the house down, while Frank discovers the importance of paternal care when Dee falls ill.",
"air_date": "2010-10-21T00:00:00.000Z",
"length": null,
"imdb_rating": 8,
"starts_at_formatted": "12:00pm on a Thursday",
"weekday": "Thursday",
"time_of_day": "12:00pm",
"starts_at": "2015-09-03T12:00:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/[email protected]",
"director": "Matt Shakman",
"netflix_id": 70224548
},
{
"title": "Who Got Dee Pregnant?",
"season": 6,
"number": 7,
"description": "The gang gets a real 'scare' after Dee reveals she's pregnant, forcing the guys to recall their last hazy Halloween Party to determine if one of them might be the father.",
"air_date": "2010-10-28T00:00:00.000Z",
"length": null,
"imdb_rating": 9.1,
"starts_at_formatted": " 5:30pm on a Saturday",
"weekday": "Saturday",
"time_of_day": " 5:30pm",
"starts_at": "2015-09-05T17:30:00.000Z",
"poster_url": "http://ia.media-imdb.com/images/M/MV5BMTA4MDYxODkwMDVeQTJeQWpwZ15BbWU4MDM5NzEzNDIx.jpg",
"director": "Randall Einhorn",
"netflix_id": 70224549
},
{
"title": "The Gang Gets a New Member",
"season": 6,
"number": 8,
"description": "A blast from the past prompts the guys to expand membership, and Dee to re-consider her future.",
"air_date": "2010-11-04T00:00:00.000Z",
"length": null,