-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathseries.json
10852 lines (10852 loc) · 326 KB
/
series.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": "12 Monkeys",
"alternateTitles": [],
"sortTitle": "12 monkeys",
"seasonCount": 1,
"episodeCount": 3,
"episodeFileCount": 3,
"sizeOnDisk": 943166309,
"status": "continuing",
"overview": "The show follows the journey of a time traveler, Cole, from the post-apocalyptic future. Using a dangerous and untested method of time travel, Cole arrives in the present day on a mission to locate and eradicate the source of a deadly plague that will eventually decimate 93.6% of the human race. Will Cole be able to save the fate of mankind or is mankind bound by fate? Taking place in the ravaged future of 2043 and the present day, 12 Monkeys explores themes of destiny, fate, love and the possibility of second chances.",
"nextAiring": "2015-02-07T02:00:00Z",
"previousAiring": "2015-01-31T02:00:00Z",
"network": "Syfy",
"airTime": "21:00",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/1/fanart.jpg?lastWrite=635575361860000000"
},
{
"coverType": "banner",
"url": "/MediaCover/1/banner.jpg?lastWrite=635572207630000000"
},
{
"coverType": "poster",
"url": "/MediaCover/1/poster.jpg?lastWrite=635571548000000000"
}
],
"seasons": [
{
"seasonNumber": 0,
"monitored": false
},
{
"seasonNumber": 1,
"monitored": true
}
],
"year": 2015,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/12 Monkeys",
"profileId": 2,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 60,
"tvdbId": 272644,
"tvRageId": 36903,
"firstAired": "2015-01-16T05:00:00Z",
"lastInfoSync": "2015-02-03T18:07:55.758586Z",
"seriesType": "standard",
"cleanTitle": "12monkeys",
"imdbId": "tt3148266",
"titleSlug": "12-monkeys",
"certification": "TV-14",
"genres": [
"Science-Fiction"
],
"tags": [],
"added": "2015-01-04T15:58:57.212439Z",
"qualityProfileId": 2,
"id": 1
},
{
"title": "2 Broke Girls",
"alternateTitles": [],
"sortTitle": "2 broke girls",
"seasonCount": 4,
"episodeCount": 10,
"episodeFileCount": 10,
"sizeOnDisk": 1732021009,
"status": "continuing",
"overview": "A lot of girls move to New York City to \"make it\". Max and Caroline are just trying to make their rent. In this fun, outrageous comedy series, two girls from very different backgrounds – Max, poor from birth, and Caroline, born wealthy but down on her luck – wind up as waitresses in the same colorful Brooklyn diner and strike up an unlikely friendship that could lead to a successful business venture. All they need to do is come up with $250,000 in start-up expenses. \"2 Broke Girls\" infuses the classic comedy with something new, current and young, proving life can be fun – even if you’re broke.",
"nextAiring": "2015-02-10T01:00:00Z",
"previousAiring": "2015-02-03T01:00:00Z",
"network": "CBS",
"airTime": "20:00",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/2/fanart.jpg?lastWrite=635571548010000000"
},
{
"coverType": "banner",
"url": "/MediaCover/2/banner.jpg?lastWrite=635559839430000000"
},
{
"coverType": "poster",
"url": "/MediaCover/2/poster.jpg?lastWrite=635568406460000000"
}
],
"seasons": [
{
"seasonNumber": 1,
"monitored": false
},
{
"seasonNumber": 2,
"monitored": false
},
{
"seasonNumber": 3,
"monitored": false
},
{
"seasonNumber": 4,
"monitored": true
}
],
"year": 2011,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/2 Broke Girls",
"profileId": 2,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 30,
"tvdbId": 248741,
"tvRageId": 28416,
"firstAired": "2011-09-19T04:00:00Z",
"lastInfoSync": "2015-02-03T18:08:02.019988Z",
"seriesType": "standard",
"cleanTitle": "2brokegirls",
"imdbId": "tt1845307",
"titleSlug": "2-broke-girls",
"certification": "TV-14",
"genres": [
"Comedy"
],
"tags": [],
"added": "2015-01-04T15:59:01.685627Z",
"qualityProfileId": 2,
"id": 2
},
{
"title": "24",
"alternateTitles": [],
"sortTitle": "24",
"seasonCount": 9,
"episodeCount": 0,
"episodeFileCount": 0,
"sizeOnDisk": 0,
"status": "continuing",
"overview": "\"24\" is a TV thriller presented in \"real time\" with each minute of airtime that corresponds to a minute in the lives of the characters. \"24\" employs fast-paced and complex stories, and often contains unexpected plot twists. Though each day's events typically revolve around thwarting an impending terrorist attack, each season is made up of various interwoven story threads. These may run for just one hour, but more usually run over several hours. These typically involve investigations of leads on terrorists, tracking suspects, and averting attacks. The exact objective of the day evolves over the course of the season as the antagonists adapt, contingencies arise, and larger scale operations unfold.",
"network": "FOX",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/3/fanart.jpg?lastWrite=635559839560000000"
},
{
"coverType": "banner",
"url": "/MediaCover/3/banner.jpg?lastWrite=635559839560000000"
},
{
"coverType": "poster",
"url": "/MediaCover/3/poster.jpg?lastWrite=635559839560000000"
}
],
"seasons": [
{
"seasonNumber": 0,
"monitored": false
},
{
"seasonNumber": 1,
"monitored": false
},
{
"seasonNumber": 2,
"monitored": false
},
{
"seasonNumber": 3,
"monitored": false
},
{
"seasonNumber": 4,
"monitored": false
},
{
"seasonNumber": 5,
"monitored": false
},
{
"seasonNumber": 6,
"monitored": false
},
{
"seasonNumber": 7,
"monitored": false
},
{
"seasonNumber": 8,
"monitored": false
},
{
"seasonNumber": 9,
"monitored": false
}
],
"year": 2001,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/24",
"profileId": 2,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 60,
"tvdbId": 76290,
"tvRageId": 2445,
"firstAired": "2001-11-06T05:00:00Z",
"lastInfoSync": "2015-02-03T18:08:06.749408Z",
"seriesType": "standard",
"cleanTitle": "24",
"imdbId": "tt0285331",
"titleSlug": "24",
"certification": "TV-14",
"genres": [
"Action",
"Adventure",
"Drama",
"Thriller"
],
"tags": [],
"added": "2015-01-04T15:59:15.829543Z",
"qualityProfileId": 2,
"id": 3
},
{
"title": "A Haunting",
"alternateTitles": [],
"sortTitle": "haunting",
"seasonCount": 7,
"episodeCount": 68,
"episodeFileCount": 68,
"sizeOnDisk": 26921373130,
"status": "continuing",
"overview": "Between the world we see and the things we fear...there are doors. When they are opened....Nightmares become reality. These are the true stories of the innocent and the unimaginable.\n\nBased on true events, A Haunting dramatises some of the scariest stories, revealing a world in which tragedy, suicide and murder have left psychic impressions so powerful that innocent people become forced to deal with them decades later. Through mesmerising first-person accounts, the mystery and origin of each haunting is powerfully revealed and leaves a lingering sense that life - and death - are much stronger then anyone could have possibly imagined.",
"previousAiring": "2015-01-26T03:00:00Z",
"network": "Destination America",
"airTime": "22:00",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/4/fanart.jpg?lastWrite=635559839720000000"
},
{
"coverType": "banner",
"url": "/MediaCover/4/banner.jpg?lastWrite=635559839720000000"
},
{
"coverType": "poster",
"url": "/MediaCover/4/poster.jpg?lastWrite=635559839720000000"
}
],
"seasons": [
{
"seasonNumber": 0,
"monitored": false
},
{
"seasonNumber": 1,
"monitored": false
},
{
"seasonNumber": 2,
"monitored": false
},
{
"seasonNumber": 3,
"monitored": false
},
{
"seasonNumber": 4,
"monitored": false
},
{
"seasonNumber": 5,
"monitored": false
},
{
"seasonNumber": 6,
"monitored": false
},
{
"seasonNumber": 7,
"monitored": true
}
],
"year": 2005,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/A Haunting",
"profileId": 1,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 60,
"tvdbId": 79535,
"tvRageId": 13319,
"firstAired": "2005-10-28T04:00:00Z",
"lastInfoSync": "2015-02-03T18:08:07.402221Z",
"seriesType": "standard",
"cleanTitle": "ahaunting",
"imdbId": "tt0484243",
"titleSlug": "a-haunting",
"certification": "TV-PG",
"genres": [
"Horror",
"Thriller"
],
"tags": [],
"added": "2015-01-04T15:59:23.759342Z",
"qualityProfileId": 1,
"id": 4
},
{
"title": "About a Boy",
"alternateTitles": [],
"sortTitle": "about boy",
"seasonCount": 2,
"episodeCount": 3,
"episodeFileCount": 3,
"sizeOnDisk": 515094226,
"status": "continuing",
"overview": "Based on the best-selling Nick Hornby novel, written/produced by Jason Katims and directed by Jon Favreau comes a different kind of coming-of-age story. Will Freeman lives a charmed existence as the ultimate man-child. After writing a hit song, he was granted a life of free time, free love and freedom from financial woes. He’s single, unemployed and loving it. So imagine his surprise when Fiona, a needy, single mom and her oddly charming 11-year-old son Marcus move in next door and disrupt his perfect world.",
"nextAiring": "2015-02-04T02:30:00Z",
"previousAiring": "2015-01-28T02:30:00Z",
"network": "NBC",
"airTime": "21:30",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/5/fanart.jpg?lastWrite=635559839710000000"
},
{
"coverType": "banner",
"url": "/MediaCover/5/banner.jpg?lastWrite=635585403590000000"
},
{
"coverType": "poster",
"url": "/MediaCover/5/poster.jpg?lastWrite=635559839710000000"
}
],
"seasons": [
{
"seasonNumber": 1,
"monitored": false
},
{
"seasonNumber": 2,
"monitored": true
}
],
"year": 2014,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/About a Boy",
"profileId": 2,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 30,
"tvdbId": 269593,
"tvRageId": 33032,
"firstAired": "2014-02-22T05:00:00Z",
"lastInfoSync": "2015-02-03T18:08:08.487905Z",
"seriesType": "standard",
"cleanTitle": "aboutboy",
"imdbId": "tt2666270",
"titleSlug": "about-a-boy",
"certification": "TV-PG",
"genres": [
"Comedy",
"Drama",
"Romance"
],
"tags": [],
"added": "2015-01-04T15:59:30.241515Z",
"qualityProfileId": 2,
"id": 5
},
{
"title": "America's Got Talent",
"alternateTitles": [],
"sortTitle": "americas got talent",
"seasonCount": 9,
"episodeCount": 0,
"episodeFileCount": 0,
"sizeOnDisk": 0,
"status": "continuing",
"overview": "Simon Cowell and NBC are scouring the country in search of the most talented person in America. Nick Cannon is the host. Howie Mandel, Heidi Klum, Mel B, and 'King of All Media' Howard Stern are judges.\n\nIn this show, people show their talent and hope to impress the judges to reach to the top. The grand prize winner will win $1,000,000! The show will feature talent from various people from balancing stuff off their teeth to even rock bands. If they don't have the talent to receive the grand prize, the judges kick them out off the competition. However, unless they impress to judges, they continue their quest. Who has the talent to receive the grand prize?",
"network": "NBC",
"airTime": "21:00",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/6/fanart.jpg?lastWrite=635565504120000000"
},
{
"coverType": "banner",
"url": "/MediaCover/6/banner.jpg?lastWrite=635559839770000000"
},
{
"coverType": "poster",
"url": "/MediaCover/6/poster.jpg?lastWrite=635559839770000000"
}
],
"seasons": [
{
"seasonNumber": 1,
"monitored": false
},
{
"seasonNumber": 2,
"monitored": false
},
{
"seasonNumber": 3,
"monitored": false
},
{
"seasonNumber": 4,
"monitored": false
},
{
"seasonNumber": 5,
"monitored": false
},
{
"seasonNumber": 6,
"monitored": false
},
{
"seasonNumber": 7,
"monitored": false
},
{
"seasonNumber": 8,
"monitored": false
},
{
"seasonNumber": 9,
"monitored": false
}
],
"year": 2006,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/America's Got Talent",
"profileId": 1,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 120,
"tvdbId": 79490,
"tvRageId": 10408,
"firstAired": "2006-06-21T04:00:00Z",
"lastInfoSync": "2015-02-03T18:08:10.370068Z",
"seriesType": "standard",
"cleanTitle": "americasgottalent",
"imdbId": "tt0759364",
"titleSlug": "americas-got-talent",
"certification": "TV-PG",
"genres": [
"Reality"
],
"tags": [],
"added": "2015-01-04T15:59:37.245652Z",
"qualityProfileId": 1,
"id": 6
},
{
"title": "American Horror Story",
"alternateTitles": [],
"sortTitle": "american horror story",
"seasonCount": 4,
"episodeCount": 13,
"episodeFileCount": 13,
"sizeOnDisk": 4863044163,
"status": "continuing",
"overview": "American Horror Story is a horror-drama television franchise created and produced by Ryan Murphy and Brad Falchuk. Described as an anthology series, each season is conceived as a self-contained miniseries, following a disparate set of characters and settings, and a storyline with its own \"beginning, middle and end\".",
"previousAiring": "2015-01-22T03:00:00Z",
"network": "FX",
"airTime": "22:00",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/7/fanart.jpg?lastWrite=635584970080000000"
},
{
"coverType": "banner",
"url": "/MediaCover/7/banner.jpg?lastWrite=635575795020000000"
},
{
"coverType": "poster",
"url": "/MediaCover/7/poster.jpg?lastWrite=635584970140000000"
}
],
"seasons": [
{
"seasonNumber": 1,
"monitored": false
},
{
"seasonNumber": 2,
"monitored": false
},
{
"seasonNumber": 3,
"monitored": false
},
{
"seasonNumber": 4,
"monitored": true
}
],
"year": 2011,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/American Horror Story",
"profileId": 2,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 60,
"tvdbId": 250487,
"tvRageId": 28776,
"firstAired": "2011-10-05T04:00:00Z",
"lastInfoSync": "2015-02-03T18:08:09.97308Z",
"seriesType": "standard",
"cleanTitle": "americanhorrorstory",
"imdbId": "tt1844624",
"titleSlug": "american-horror-story",
"certification": "TV-MA",
"genres": [
"Drama",
"Fantasy",
"Horror",
"Suspense",
"Thriller"
],
"tags": [],
"added": "2015-01-04T15:59:42.732663Z",
"qualityProfileId": 2,
"id": 7
},
{
"title": "Are You Being Served?",
"alternateTitles": [],
"sortTitle": "are you being served",
"seasonCount": 10,
"episodeCount": 69,
"episodeFileCount": 69,
"sizeOnDisk": 14844314709,
"status": "ended",
"overview": "Are You Being Served? is a British Sitcom that ran from 1972-1985. The show revolved around \"Grace Brothers Department Store\" and in particular the goings on within the \"Gentlemen's Ready-To-Wear\" and \"Ladies' Separates and Underwear\" Departments. A store reorganization forced these two departments to share floor space, and the conflicts that this created set the tone for most episodes. Are You Being Served? showcases a bygone period of time in which the class structure was still very much alive. There was a strict hierarchy within Grace Brothers. Everyone knew their \"places\" and remained in them, unless, of course, there was a chance for advancement and then it was every man and woman for themselves. A spin-off series of Are You Being Served? was released, called Grace and Favour. Although in the U.S, it was named Are You Being Served? Again!",
"previousAiring": "1985-03-31T23:00:00Z",
"network": "BBC One",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/8/fanart.jpg?lastWrite=635559840060000000"
},
{
"coverType": "banner",
"url": "/MediaCover/8/banner.jpg?lastWrite=635559840060000000"
},
{
"coverType": "poster",
"url": "/MediaCover/8/poster.jpg?lastWrite=635559840060000000"
}
],
"seasons": [
{
"seasonNumber": 0,
"monitored": false
},
{
"seasonNumber": 1,
"monitored": false
},
{
"seasonNumber": 2,
"monitored": false
},
{
"seasonNumber": 3,
"monitored": false
},
{
"seasonNumber": 4,
"monitored": false
},
{
"seasonNumber": 5,
"monitored": false
},
{
"seasonNumber": 6,
"monitored": false
},
{
"seasonNumber": 7,
"monitored": false
},
{
"seasonNumber": 8,
"monitored": false
},
{
"seasonNumber": 9,
"monitored": false
},
{
"seasonNumber": 10,
"monitored": false
}
],
"year": 1972,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/Are You Being Served",
"profileId": 2,
"seasonFolder": true,
"monitored": false,
"useSceneNumbering": false,
"runtime": 30,
"tvdbId": 77879,
"tvRageId": 0,
"firstAired": "1972-09-08T04:00:00Z",
"lastInfoSync": "2015-01-21T15:04:54.079346Z",
"seriesType": "standard",
"cleanTitle": "areyoubeingserved",
"imdbId": "tt0068040",
"titleSlug": "are-you-being-served",
"certification": "TV-PG",
"genres": [
"Comedy"
],
"tags": [],
"added": "2015-01-04T15:59:46.724267Z",
"qualityProfileId": 2,
"id": 8
},
{
"title": "Arrow",
"alternateTitles": [],
"sortTitle": "arrow",
"seasonCount": 3,
"episodeCount": 11,
"episodeFileCount": 11,
"sizeOnDisk": 2895781658,
"status": "continuing",
"overview": "Oliver Queen and his father are lost at sea when their luxury yacht sinks. His father doesn't survive. Oliver survives on an uncharted island for five years learning to fight, but also learning about his father's corruption and unscrupulous business dealings. He returns to civilization a changed man, determined to put things right. He disguises himself with the hood of one of his mysterious island mentors, arms himself with a bow and sets about hunting down the men and women who have corrupted his city.",
"nextAiring": "2015-02-05T01:00:00Z",
"previousAiring": "2015-01-29T01:00:00Z",
"network": "The CW",
"airTime": "20:00",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/9/fanart.jpg?lastWrite=635559840010000000"
},
{
"coverType": "banner",
"url": "/MediaCover/9/banner.jpg?lastWrite=635559840010000000"
},
{
"coverType": "poster",
"url": "/MediaCover/9/poster.jpg?lastWrite=635585836920000000"
}
],
"seasons": [
{
"seasonNumber": 0,
"monitored": false
},
{
"seasonNumber": 1,
"monitored": false
},
{
"seasonNumber": 2,
"monitored": false
},
{
"seasonNumber": 3,
"monitored": true
}
],
"year": 2012,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/Arrow",
"profileId": 2,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 60,
"tvdbId": 257655,
"tvRageId": 30715,
"firstAired": "2012-10-10T04:00:00Z",
"lastInfoSync": "2015-02-03T18:08:11.167108Z",
"seriesType": "standard",
"cleanTitle": "arrow",
"imdbId": "tt2193021",
"titleSlug": "arrow",
"certification": "TV-PG",
"genres": [
"Action",
"Adventure",
"Crime"
],
"tags": [],
"added": "2015-01-04T15:59:53.731871Z",
"qualityProfileId": 2,
"id": 9
},
{
"title": "Backstrom",
"alternateTitles": [],
"sortTitle": "backstrom",
"seasonCount": 1,
"episodeCount": 2,
"episodeFileCount": 2,
"sizeOnDisk": 686950710,
"status": "continuing",
"overview": "Detective Everett Backstrom is an offensive, irascible detective, as he tries, and fails, to change his self-destructive behavior. Throughout the series, Backstrom leads his team, the Serious Crimes Unit, as they navigate Portland’s most sensitive cases.",
"nextAiring": "2015-02-06T02:00:00Z",
"previousAiring": "2015-01-30T02:00:00Z",
"network": "FOX",
"airTime": "21:00",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/11/fanart.jpg?lastWrite=635578394900000000"
},
{
"coverType": "banner",
"url": "/MediaCover/11/banner.jpg?lastWrite=635578394910000000"
},
{
"coverType": "poster",
"url": "/MediaCover/11/poster.jpg?lastWrite=635571114430000000"
}
],
"seasons": [
{
"seasonNumber": 1,
"monitored": true
}
],
"year": 2015,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/Backstrom",
"profileId": 2,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 60,
"tvdbId": 277093,
"tvRageId": 32424,
"firstAired": "2015-01-22T05:00:00Z",
"lastInfoSync": "2015-02-03T18:08:11.587598Z",
"seriesType": "standard",
"cleanTitle": "backstrom",
"imdbId": "tt2099034",
"titleSlug": "backstrom",
"certification": "TV-14",
"genres": [
"Crime",
"Drama"
],
"tags": [],
"added": "2015-01-04T15:59:58.974047Z",
"qualityProfileId": 2,
"id": 11
},
{
"title": "Band of Brothers",
"alternateTitles": [],
"sortTitle": "band brothers",
"seasonCount": 1,
"episodeCount": 10,
"episodeFileCount": 10,
"sizeOnDisk": 8444782597,
"status": "ended",
"overview": "The miniseries follows Easy Company, an army unit during World War II, from their initial training at Camp Toccoa to the conclusion of the war. The series is based on the book written by the late Stephen E. Ambrose. \n\nBand of Brothers is executive produced by Steven Spielberg and Tom Hanks, the series won 6 Emmy Awards.",
"previousAiring": "2001-11-04T05:00:00Z",
"network": "HBO",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/12/fanart.jpg?lastWrite=635559840050000000"
},
{
"coverType": "banner",
"url": "/MediaCover/12/banner.jpg?lastWrite=635559840040000000"
},
{
"coverType": "poster",
"url": "/MediaCover/12/poster.jpg?lastWrite=635559840050000000"
}
],
"seasons": [
{
"seasonNumber": 0,
"monitored": false
},
{
"seasonNumber": 1,
"monitored": false
}
],
"year": 2001,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/Band Of Brothers",
"profileId": 2,
"seasonFolder": true,
"monitored": false,
"useSceneNumbering": false,
"runtime": 60,
"tvdbId": 74205,
"tvRageId": 2708,
"firstAired": "2001-09-09T04:00:00Z",
"lastInfoSync": "2015-01-21T15:04:56.20643Z",
"seriesType": "standard",
"cleanTitle": "bandbrothers",
"imdbId": "tt0185906",
"titleSlug": "band-of-brothers",
"certification": "TV-MA",
"genres": [
"Action",
"Adventure",
"Drama",
"Mini-Series"
],
"tags": [],
"added": "2015-01-04T16:00:02.37543Z",
"qualityProfileId": 2,
"id": 12
},
{
"title": "Banshee",
"alternateTitles": [],
"sortTitle": "banshee",
"seasonCount": 3,
"episodeCount": 24,
"episodeFileCount": 24,
"sizeOnDisk": 8458198107,
"status": "continuing",
"overview": "Lucas Hood is an ex-con and master thief who assumes the identity of the sheriff of Banshee, Pennsylvania, where he continues his criminal activities, even as he’s hunted by the shadowy gangsters he betrayed years earlier.",
"nextAiring": "2015-02-07T03:00:00Z",
"previousAiring": "2015-01-31T03:00:00Z",
"network": "Cinemax",
"airTime": "22:00",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/13/fanart.jpg?lastWrite=635559840080000000"
},
{
"coverType": "banner",
"url": "/MediaCover/13/banner.jpg?lastWrite=635559840070000000"
},
{
"coverType": "poster",
"url": "/MediaCover/13/poster.jpg?lastWrite=635559840070000000"
}
],
"seasons": [
{
"seasonNumber": 0,
"monitored": false
},
{
"seasonNumber": 1,
"monitored": true
},
{
"seasonNumber": 2,
"monitored": true
},
{
"seasonNumber": 3,
"monitored": true
}
],
"year": 2013,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/Banshee",
"profileId": 2,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 60,
"tvdbId": 259765,
"tvRageId": 30823,
"firstAired": "2013-01-11T05:00:00Z",
"lastInfoSync": "2015-02-03T18:08:12.099265Z",
"seriesType": "standard",
"cleanTitle": "banshee",
"imdbId": "tt2017109",
"titleSlug": "banshee",
"certification": "TV-MA",
"genres": [
"Action",
"Adventure",
"Crime",
"Drama"
],
"tags": [],
"added": "2015-01-04T16:00:06.956909Z",
"qualityProfileId": 2,
"id": 13
},
{
"title": "Battle Creek",
"alternateTitles": [],
"sortTitle": "battle creek",
"seasonCount": 1,
"episodeCount": 0,
"episodeFileCount": 0,
"sizeOnDisk": 0,
"status": "continuing",
"overview": "Based on a 2002 script from Breaking Bad creator Vince Gilligan, this drama tells the story of two men — Detective Russ Agnew (Dean Winters) and FBI Agent Milton Chamberlin (Josh Duhamel) — who, despite their different world views, try to clean up the semi-mean streets of Battle Creek, Mich.",
"nextAiring": "2015-03-02T03:00:00Z",
"network": "CBS",
"airTime": "22:00",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/14/fanart.jpg?lastWrite=635559840090000000"
},
{
"coverType": "banner",
"url": "/MediaCover/14/banner.jpg?lastWrite=635583006660000000"
}
],
"seasons": [
{
"seasonNumber": 1,
"monitored": true
}
],
"year": 2015,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/Battle Creek",
"profileId": 2,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 45,
"tvdbId": 274802,
"tvRageId": 38079,
"firstAired": "2015-03-01T05:00:00Z",
"lastInfoSync": "2015-02-03T18:08:12.522686Z",
"seriesType": "standard",
"cleanTitle": "battlecreek",
"imdbId": "tt3215364",
"titleSlug": "battle-creek",
"genres": [
"Crime",
"Drama"
],
"tags": [],
"added": "2015-01-04T16:00:08.66781Z",
"qualityProfileId": 2,
"id": 14
},
{
"title": "Better Call Saul",
"alternateTitles": [],
"sortTitle": "better call saul",
"seasonCount": 1,
"episodeCount": 0,
"episodeFileCount": 0,
"sizeOnDisk": 0,
"status": "continuing",
"overview": "Six years before Saul Goodman meets Walter White. We meet him when the man who will become Saul Goodman is known as Jimmy McGill, a small-time lawyer searching for his destiny, and, more immediately, hustling to make ends meet. Working alongside, and, often, against Jimmy, is “fixer” Mike Erhmantraut. The series will track Jimmy's transformation into Saul Goodman, the man who puts “criminal” in “criminal lawyer.”",
"nextAiring": "2015-02-09T03:00:00Z",
"network": "AMC",
"airTime": "22:00",
"images": [
{
"coverType": "fanart",
"url": "/MediaCover/16/fanart.jpg?lastWrite=635559840130000000"
},
{
"coverType": "banner",
"url": "/MediaCover/16/banner.jpg?lastWrite=635583873330000000"
},
{
"coverType": "poster",
"url": "/MediaCover/16/poster.jpg?lastWrite=635581471090000000"
}
],
"seasons": [
{
"seasonNumber": 1,
"monitored": true
}
],
"year": 2015,
"path": "/media/dd3de295-9705-4573-b299-53e77a01fada/Media/TV/Better Call Saul",
"profileId": 2,
"seasonFolder": true,
"monitored": true,
"useSceneNumbering": false,
"runtime": 60,
"tvdbId": 273181,
"tvRageId": 37780,
"firstAired": "2015-02-08T05:00:00Z",
"lastInfoSync": "2015-02-03T18:08:13.085431Z",
"seriesType": "standard",
"cleanTitle": "bettercallsaul",