-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.json
1884 lines (1884 loc) · 79.2 KB
/
api.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
{
"seasons": [
{
"id": "1",
"episodes": [
{
"id": "1",
"eid": "1",
"title": "Off the Baa!",
"director": "Christopher Sadler",
"writer": "Ian Carney",
"storyboardBy": "Dave Vinicombe",
"airdate": "5 March 2007",
"description": "A cabbage rolls onto the lawn, and a game of football breaks out. Things get worse when the pigs want it for lunch.",
"yid": "WeQw6utcU_g",
"sid": "1"
},
{
"id": "2",
"eid": "2",
"title": "Bathtime",
"director": "Christopher Sadler",
"writer": "Richard Goleszowski & Rob Dudley",
"storyboardBy": "J.P. Vine",
"airdate": "5 March 2007",
"description": "Shaun and his gang of sheep try to get hot water from the Farmer's house to have a nice warm sheep dip.",
"yid": "5ureefrxMDA",
"sid": "1"
},
{
"id": "3",
"eid": "3",
"title": "Shape Up with Shaun",
"director": "Christopher Sadler",
"writer": "Lee Pressman",
"storyboardBy": "J.P. Vine",
"airdate": "6 March 2007",
"description": "Shirley grows heavier, and Shaun and the flock do their best to help her lose weight. It works, but an accident in which Timmy and a tractor are involved, launches Shirley into a pie lorry—and back to her fat, weighty state.",
"yid": "if9ODROxkVI",
"sid": "1"
},
{
"id": "4",
"eid": "4",
"title": "Timmy in a Tizzy",
"director": "Rich Webber",
"writer": "Julie Jones",
"storyboardBy": "Gareth Owen and Rob Richards",
"airdate": "6 March 2007",
"description": "The Farmer takes Timmy's teddy bear for himself, unaware of its real owner. This sends Timmy into an upset crying fit, so Shaun enlists two of his friends' help to get it back.",
"yid": "XyDbboJ7IVg",
"sid": "1"
},
{
"id": "5",
"eid": "5",
"title": "Scrumping",
"director": "Dave Osmand",
"writer": "Sarah Ball",
"storyboardBy": "Jason Comley",
"airdate": "7 March 2007",
"description": "The flock wants some apples from the greedy hogs, but the pigs are determined to stop them at all costs.",
"yid": "kRTgHX2UJ2o",
"sid": "1"
},
{
"id": "6",
"eid": "6",
"title": "Still Life",
"director": "Christopher Sadler",
"writer": "Ian Carney",
"storyboardBy": "JP Vine",
"airdate": "7 March 2007",
"description": "The Farmer oil paints the farm, but runs out of white paint for the sheep. Bitzer accidentally smudges the painting. Shaun tries to help, and soon the flock is a riot of colour. Although the painting appears ruined, it proves to be a fortune-making work in the end.",
"yid": "2BPIykvYrpk",
"sid": "1"
},
{
"id": "7",
"eid": "7",
"title": "Mower Mouth",
"director": "Rich Webber",
"writer": "Glenn Dakin",
"storyboardBy": "J.P. Vine",
"airdate": "8 March 2007",
"description": "An eager goat eats everything in sight, very similar to Shirley. He accidentally breaks free, and takes Shaun on an impromptu ride.",
"yid": "qAnRKPnIUEc",
"sid": "1"
},
{
"id": "8",
"eid": "8",
"title": "Take Away",
"director": "Christopher Sadler",
"writer": "Richard Goleszowski & Rob Dudley",
"storyboardBy": "Dave Vinicombe and Eve Coy",
"airdate": "8 March 2007",
"description": "After observing the Farmer ordering pizza, Shaun and the flock try to get some of their own by posing as a human.",
"yid": "qAYjSmiYG4M",
"sid": "1"
},
{
"id": "9",
"eid": "9",
"title": "The Bull",
"director": "Rich Webber",
"writer": "Trevor Ricketts",
"storyboardBy": "Jasom Comley",
"airdate": "9 March 2007",
"description": "Shaun learns that the Bull in the Farmer's field attacks anything that is coloured red. The mischievous pigs try to paint the flock red by colouring the sheep dip. Shaun has to clean up the mess and save his friends from the Bull's rage.",
"yid": "_2GmTpuwNBQ",
"sid": "1"
},
{
"id": "10",
"eid": "10",
"title": "Saturday Night Shaun",
"director": "Christopher Sadler",
"writer": "Julie Jones",
"storyboardBy": "Sylvia Bennion",
"airdate": "9 March 2007",
"description": "Shaun uses the Farmer's old record player for a dance party, but the pigs interfere with the party by playing drum and bass music. Meanwhile, the Farmer attempts to get his new music player to work, but has trouble.",
"yid": "_zYf3yaKpZ4",
"sid": "1"
},
{
"id": "11",
"eid": "11",
"title": "The Kite",
"director": "Christopher Sadler",
"writer": "Richard Goleszowski & Rob Dudley",
"storyboardBy": "Sylvia Bennion",
"airdate": "12 March 2007",
"description": "A kite shows up in the sheep's field, but gets stuck in a tree. Shaun and the flock work to get it down.",
"yid": "kZownq0BLOE",
"sid": "1"
},
{
"id": "12",
"eid": "12",
"title": "Little Sheep of Horrors",
"director": "Christopher Sadler",
"writer": "Lee Pressman",
"storyboardBy": "Rob Richards",
"airdate": "12 March 2007",
"description": "Timmy ventures into the Farmer's house to watch a horror movie. The sheep work together to bring him home, while Bitzer runs in after them to save them. The commotion soon mystifies the Farmer.",
"yid": "qf5ah1RGPMc",
"sid": "1"
},
{
"id": "13",
"eid": "13",
"title": "Buzz Off Bees",
"director": "Christopher Sadler",
"writer": "Julie Jones",
"storyboardBy": "Jason Comley",
"airdate": "13 March 2007",
"description": "Bitzer and the flock encounter a hive of bees, which they attempt to outwit.",
"yid": "qBa1lPbwKe8",
"sid": "1"
},
{
"id": "14",
"eid": "14",
"title": "Fleeced",
"director": "Christopher Sadler",
"writer": "Charles Hodges",
"storyboardBy": "Dave Vinicombe and Rob Richards",
"airdate": "13 March 2007",
"description": "It is haircut day for the flock, but the Farmer's styling attempts inspire the flock to make a break for it and plan a mission to the salon downtown.",
"yid": "51CLK3DUyOk",
"sid": "1"
},
{
"id": "15",
"eid": "15",
"title": "Shaun Shoots the Sheep",
"director": "Dave Osmand",
"writer": "Lee Pressman",
"storyboardBy": "Dave Vinicombe",
"airdate": "14 March 2007",
"description": "Shaun finds a camera left by some campers, and snaps away with it, but Bitzer and the pigs have other plans.",
"yid": "nVLT9XCCOUc",
"sid": "1"
},
{
"id": "16",
"eid": "16",
"title": "Big Top Timmy",
"director": "Rich Webber",
"writer": "Lee Pressman",
"storyboardBy": "Gareth Owen and Rob Richards",
"airdate": "14 March 2007",
"description": "Timmy ventures out, fascinated by the circus. Shaun and the flock try to keep him from harm, while the Farmer wonders where his flock went.",
"yid": "s4tcu70QO-4",
"sid": "1"
},
{
"id": "17",
"eid": "17",
"title": "Fetching",
"director": "Rich Webber",
"writer": "Richard Goleszowski & Rob Dudley",
"storyboardBy": "Dave Vinicombe",
"airdate": "15 March 2007",
"description": "Bitzer's infatuation with a female dog distracts him from minding the rowdy flock. Shaun and Bitzer try to clean up the farmhouse before the Farmer gets home.",
"yid": "i4RbaHUJxyE",
"sid": "1"
},
{
"id": "18",
"eid": "18",
"title": "Mountains Out of Molehills",
"director": "Dave Osmand",
"writer": "Ian Carney",
"storyboardBy": "JP Vine",
"airdate": "15 March 2007",
"description": "The flock's dancing is interrupted by a naughty mole. Shaun and the flock try escalating tactics to catch him.",
"yid": "t52-9VLR_6U",
"sid": "1"
},
{
"id": "19",
"eid": "19",
"title": "Who's the Mummy?",
"director": "Dave Osmand",
"writer": "Trevor Ricketts",
"storyboardBy": "Charles Hodges",
"airdate": "16 March 2007",
"description": "A quartet of chick hatchlings bonds to Shaun, thinking he's their mother, and they relentlessly follow him around. Shaun initially can't get rid of them fast enough, but when their mother shows up, he has to save their lives.\n\nNote: There are (at least) two versions of this episode, showing different phone numbers on the 'wanted' poster that the chicks' mother has made to find her eggs.",
"yid": "OfdUtaxEzlI",
"sid": "1"
},
{
"id": "20",
"eid": "20",
"title": "Things That Go Bump",
"director": "Dave Osmand",
"writer": "Glenn Dakin",
"storyboardBy": "Eve Coy",
"airdate": "16 March 2007",
"description": "Halloween pranks in the night disturb the flock's sleep. Shaun investigates, and the culprits are soon discovered.",
"yid": "3KerLkagng8",
"sid": "1"
},
{
"id": "21",
"eid": "21",
"title": "Abracadabra",
"director": "Darren Walsh",
"writer": "Richard Goleszowski & Rob Dudley",
"storyboardBy": "Christopher Sadler",
"airdate": "3 September 2007",
"description": "When the Farmer decides to throw out his magic set, Shaun decides to put on a show, but things get out of hand when the flock starts disappearing.",
"yid": "6OIzs92oAzM",
"sid": "1"
},
{
"id": "22",
"eid": "22",
"title": "Sheep on the Loose",
"director": "Mike Mort",
"writer": "Sarah Ball",
"storyboardBy": "TBA",
"airdate": "3 September 2007",
"description": "When the flock nips off on the bus to the local amusement park, Shaun fears that the Farmer will find out. He tries to hide the fact from the Farmer while Bitzer rushes off to the fair to round up the lost sheep.",
"yid": "ZbhR3f3BqD4",
"sid": "1"
},
{
"id": "23",
"eid": "23",
"title": "Washday",
"director": "Jay Grace",
"writer": "Charles Hodges",
"storyboardBy": "Rob Richards",
"airdate": "4 September 2007",
"description": "The sheep use the Farmer's clotheshorse as a merry-go-round. The garments get dirty and have to be washed (and then sewn back together) before the Farmer returns.",
"yid": "EEXPXyvG4Uw",
"sid": "1"
},
{
"id": "24",
"eid": "24",
"title": "The Visitor",
"director": "Lee Wilton",
"writer": "Trevor Ricketts",
"storyboardBy": "Sylvia Bennion",
"airdate": "4 September 2007",
"description": "When a strange spacecraft crash-lands on the farm, Shaun and the company help its one-eyed, green occupant get airborne again.",
"yid": "aw088NHSjdA",
"sid": "1"
},
{
"id": "25",
"eid": "25",
"title": "Shaun The Farmer",
"director": "Andy Symanowski",
"writer": "Sarah Ball",
"storyboardBy": "Dave Vinicombe",
"airdate": "5 September 2007",
"description": "The Farmer is sick in bed, with Bitzer playing nurse-maid. He gives Shaun the job of handling the daily chores around the farm, while sneaking off to raid the fridge and play video games.",
"yid": "Xnw3Mrm1nGs",
"sid": "1"
},
{
"id": "26",
"eid": "26",
"title": "Tooth Fairy",
"director": "Jay Grace",
"writer": "Sara Barbas",
"storyboardBy": "Sylvia Bennion and JP Vine",
"airdate": "5 September 2007",
"description": "Bitzer gets a painful toothache; Shaun takes the job as a dentist but is unable to get the rotten tooth out. After a successful extraction at the vet, Bitzer hopes the Tooth Fairy will give him a coin. Instead, the Fairy leaves him a toothbrush and toothpaste.",
"yid": "87Cbr5Bp1TA",
"sid": "1"
},
{
"id": "27",
"eid": "27",
"title": "Bitzer Puts His Foot In It",
"director": "Jay Grace",
"writer": "Lee Pressman",
"storyboardBy": "Rob Richards",
"airdate": "6 September 2007",
"description": "The Farmer has Bitzer guard some freshly laid concrete. Things go wrong, however, when Shaun and the flock use it as the Hollywood Walk of Fame and they must work to fix the mess.",
"yid": "EajCJ5jjk6E",
"sid": "1"
},
{
"id": "28",
"eid": "28",
"title": "Hiccups",
"director": "Mike Mort",
"writer": "Charles Hodges",
"storyboardBy": "TBA",
"airdate": "6 September 2007",
"description": "Shirley drinks Bitzer's bottle of juice too fast and gets the hiccups. Shaun tries to help with all of the usual tricks, but none of them work. Eventually, Shirley's hiccups are cured by an unlikely sight: witnessing the naked Farmer's buttocks.",
"yid": "HdiXClm6nyc",
"sid": "1"
},
{
"id": "29",
"eid": "29",
"title": "If You Can't Stand The Heat",
"director": "Andy Symanowski",
"writer": "James Cary",
"storyboardBy": "Rob Richards and Dave Vinicombe",
"airdate": "7 September 2007",
"description": "It is a scorching hot day, and the flock is desperate to cool down in the sheep dip, but the sunbathing Farmer and Bitzer block their way. The sheep, however, are determined to get the dip to themselves.",
"yid": "6VmmvhR2T4U",
"sid": "1"
},
{
"id": "30",
"eid": "30",
"title": "Sheepwalking",
"director": "JP Vine",
"writer": "Glenn Dakin",
"storyboardBy": "TBA",
"airdate": "7 September 2007",
"description": "It is a peaceful night at the farm until Shaun starts to walk in his sleep, at which point he causes trouble without realising it. The flock, unable to resist their natural instinct to follow, worsens this situation.",
"yid": "UwJvuo37dMw",
"sid": "1"
},
{
"id": "31",
"eid": "31",
"title": "Tidy Up",
"director": "JP Vine",
"writer": "Ian Carney",
"storyboardBy": "Rob Richards",
"airdate": "10 September 2007",
"description": "Bitzer is asked to take out the rubbish, but when the bag gets a tear in it, the result is a messy field. The Farmer orders Bitzer to clean it up, but he makes the mistake of getting Shaun and company to help. Things get worse when they use the vacuum cleaner.",
"yid": "13O9ZPCnW3c",
"sid": "1"
},
{
"id": "32",
"eid": "32",
"title": "The Farmer's Niece",
"director": "Andy Symanowski",
"writer": "Ian Carney",
"storyboardBy": "Dave Vinicombe and JP Vine",
"airdate": "10 September 2007",
"description": "When the Farmer's Niece comes for a visit, Shaun and Bitzer soon discover she isn't as cute and adorable as she seems. Meanwhile, the Farmer tries to bake a cake for her.",
"yid": "ez1t4gk7RBI",
"sid": "1"
},
{
"id": "33",
"eid": "33",
"title": "Camping Chaos",
"director": "Mike Mort",
"writer": "Julie Jones",
"storyboardBy": "TBA",
"airdate": "11 September 2007",
"description": "When a traveller pitches a messy camp in the sheep's field, and then goes off exploring with Bitzer, Shaun and the flock decide to do some exploring of their own.",
"yid": "zKUkls0HMFI",
"sid": "1"
},
{
"id": "34",
"eid": "34",
"title": "Helping Hound",
"director": "Darren Walsh",
"writer": "Richard Goleszowski & Rob Dudley",
"storyboardBy": "Michael Salter",
"airdate": "11 September 2007",
"description": "The Farmer decides to get a robot sheep-dog, but when it turns out to be even stricter than Bitzer, Shaun decides it has to go.",
"yid": "DsIs_UVDePU",
"sid": "1"
},
{
"id": "35",
"eid": "35",
"title": "Troublesome Tractor",
"director": "Mike Mort",
"writer": "Richard Goleszowski & Rob Dudley",
"storyboardBy": "TBA",
"airdate": "12 September 2007",
"description": "The tractor seems to be ready for the scrap heap and the Farmer can't afford to buy a new one. The sheep have plans to help him.",
"yid": "iG-7Sr-faFU",
"sid": "1"
},
{
"id": "36",
"eid": "36",
"title": "Stick With Me",
"director": "JP Vine",
"writer": "Glenn Dakin",
"storyboardBy": "TBA",
"airdate": "12 September 2007",
"description": "Bitzer glues the Farmer's broken glasses back together. When he accidentally gets stuck to the bottle of glue, things start to get very sticky.",
"yid": "I6Fnk3FvqJE",
"sid": "1"
},
{
"id": "37",
"eid": "37",
"title": "Heavy Metal Shaun",
"director": "Mike Mort",
"writer": "Lee Pressman",
"storyboardBy": "Sylvia Bennion",
"airdate": "13 September 2007",
"description": "The farmer inspects the lawn with a metal detector. When Shaun and Bitzer try it, they \"detect\" a metallic menace behind the hedge.",
"yid": "MgqU8FgrTDY",
"sid": "1"
},
{
"id": "38",
"eid": "38",
"title": "Snore-Worn Shaun",
"director": "Darren Walsh",
"writer": "Elly Brewer",
"storyboardBy": "JP Vine",
"airdate": "13 September 2007",
"description": "Shirley's snoring wakes everyone up, so Shaun decides that the only way to get a peaceful night's sleep is to get her out of the barn.",
"yid": "9q3R-BFXVfo",
"sid": "1"
},
{
"id": "39",
"eid": "39",
"title": "Save The Tree",
"director": "JP Vine",
"writer": "Trevor Ricketts",
"storyboardBy": "Dave Vinicombe",
"airdate": "14 September 2007",
"description": "The Farmer wants to turn the tree in Shaun's field into firewood. The flock must take desperate measures to stop their beloved tree from getting cut down.",
"yid": "c-9i8xZX2u0",
"sid": "1"
},
{
"id": "40",
"eid": "40",
"title": "Shaun Encounters",
"director": "Lee Wilton",
"writer": "Charles Hodges",
"storyboardBy": "Sylvia Bennion",
"airdate": "14 September 2007",
"description": "Two alien kids land at the farm one night and run riot. Shaun and Bitzer attempt to stop them before The Farmer finds out.",
"yid": "xiI83Ui5ERU",
"sid": "1"
}
]
},
{
"id": "2",
"episodes": [
{
"id": "1",
"eid": "41",
"title": "Double Trouble",
"director": "Seamus Malone",
"writer": "Rob Dudley & Richard Goleszowski",
"airdate": "23 November 2009",
"description": "Shaun dresses to look like the Farmer as a lark, and learns he can now give Bitzer orders, so he organises a party. However, Bitzer's smart enough to know the difference between the real Farmer and the fake one. Then the real one shows up.",
"yid": "sLtteY8Jg-s",
"sid": "2"
},
{
"id": "2",
"eid": "42",
"title": "Draw the Line",
"director": "Richard Webber",
"writer": "Glenn Dakin",
"airdate": "24 November 2009",
"description": "The flock hijacks a road line-painting machine and causes chaos while creating giant works of art in the field. The Farmer's appreciation of their art is in doubt.",
"yid": "0nvVsVWovXM",
"sid": "2"
},
{
"id": "3",
"eid": "43",
"title": "Sheepless Nights",
"director": "Richard Webber",
"writer": "Lucy Daniel Raby",
"airdate": "25 November 2009",
"description": "When the sheep's stable's roof is broken, rain pours in. Bitzer orders the sheep to sleep in the pig sty, which is zealously guarded by the pigs.",
"yid": "rm0e0pBxLxg",
"sid": "2"
},
{
"id": "4",
"eid": "44",
"title": "Spring Lamb",
"director": "Seamus Malone",
"writer": "Elly Brewer",
"airdate": "26 November 2009",
"description": "A reluctant Timmy tries to avoid bath time, and in trying to escape, he gets a spring attached to his tail. It is up to the flock to catch the bouncing baby sheep and return him to the tub before he destroys the farm.",
"yid": "EnufGimv9wg",
"sid": "2"
},
{
"id": "5",
"eid": "45",
"title": "Strictly No Dancing",
"director": "Seamus Malone",
"writer": "Jimmy Hibbert",
"airdate": "27 November 2009",
"description": "The Farmer hits the dance floor and attempts to learn how to ballroom dance using Pidsley as his dancing partner. The din they create annoys the sheep so much that Shaun decides to stop them.",
"yid": "QJcZdEqjx0U",
"sid": "2"
},
{
"id": "6",
"eid": "46",
"title": "Who's the Caddy?",
"director": "Seamus Malone",
"writer": "Will MacLean & John Camm",
"airdate": "30 November 2009",
"description": "The Farmer comes across his old golf clubs and decides to knock a few balls around, instantly putting his back out in the process. Shaun takes the opportunity to learn how to play, while Bitzer is forced to tend to his injured master inside the house.",
"yid": "3clICJOMfWE",
"sid": "2"
},
{
"id": "7",
"eid": "47",
"title": "Hair Today, Gone Tomorrow",
"director": "Seamus Malone",
"writer": "Lee Pressman",
"airdate": "1 December 2009",
"description": "The Farmer gets ready for a date and wants to look his best, so he decides it is time to dust off his prized hairpiece. Shaun finds the wig and can't resist trying it on. Bitzer loses the wig while admonishing Shaun. The race is on as Shaun and Bitzer try to return the wig in time for the farmer's big night.\n\nNote: This episode shares its premise with a Nintendo DS video game titled Shaun the Sheep: Off His Head, which had been released two months earlier.",
"yid": "qPvf_UL38JM",
"sid": "2"
},
{
"id": "8",
"eid": "48",
"title": "Bagpipe Buddy",
"director": "Richard Webber",
"writer": "Julie Jones",
"airdate": "2 December 2009",
"description": "The sheep discover a set of bagpipes on the rubbish dump, which they immediately misidentify as a sick emu. They set about trying to nurse it back to health before releasing it back into the wild.",
"yid": "byh9wSKJe24",
"sid": "2"
},
{
"id": "9",
"eid": "49",
"title": "Supersize Timmy",
"director": "Seamus Malone",
"writer": "Dan Berlinka & Andy Williams",
"airdate": "3 December 2009",
"description": "Timmy accidentally eats a tomato grown with fertilizer, and expands to become the King Kong of sheep. Shaun must keep the giant toddler out of sight while trying to figure out how to return him to normal size.",
"yid": "i2NFhO5DiD4",
"sid": "2"
},
{
"id": "10",
"eid": "50",
"title": "Lock Out",
"director": "Seamus Malone",
"writer": "Dave Ingham",
"airdate": "4 December 2009",
"description": "While preparing for bed, the Farmer accidentally locks himself out of the house and is now stuck outside in his pyjamas. He decides to spend the night in the barn instead, but his incessant snoring drives the flock mad. Shaun concocts a plan to return him to his bed without waking him up.",
"yid": "6GxIEIrENqU",
"sid": "2"
},
{
"id": "11",
"eid": "51",
"title": "Cheetah Cheater",
"director": "Lee Wilton",
"writer": "Richard Vincent",
"airdate": "7 December 2009",
"description": "A wildlife film inspires Pidsley the cat to play a prank on the flock by disguising himself as a cheetah. Shaun is convinced there is a huge beast on the loose and concocts a plan to catch it.",
"yid": "loRUrKtia9A",
"sid": "2"
},
{
"id": "12",
"eid": "52",
"title": "Ewe've Been Framed",
"director": "Richard Webber",
"writer": "Patrick Makin",
"airdate": "8 December 2009",
"description": "Shaun accidentally breaks the farmer's glasses; he and Bitzer have their work cut out trying to prevent their shortsighted master from having mishaps around the farm. In the end, the sheep give him new glasses to help him see things more clearly.",
"yid": "-d3W-Bi0TeU",
"sid": "2"
},
{
"id": "13",
"eid": "53",
"title": "Bitzer's New Hat",
"director": "Seamus Malone",
"writer": "Christopher Sadler",
"airdate": "9 December 2009",
"description": "After the Farmer's Niece visits, she presents him with a gift. It turns out to be an ugly hat, and he orders Bitzer to wear it. Bitzer wants his old hat, but the Farmer refuses. The flock rallies round to try to cheer him up with a selection of dashing alternative head gear.",
"yid": "sPAUH_lOlbM",
"sid": "2"
},
{
"id": "14",
"eid": "54",
"title": "Hide and Squeak",
"director": "Seamus Malone",
"writer": "Kieron Self & Giles New",
"airdate": "10 December 2009",
"description": "The Farmer is terrorised when a cute mouse appears in the farmhouse and Pidsley the cat is ordered to dispose of the rodent. When the mouse takes refuge in one of the sheep's fleece, the flock persuades Shaun to protect their new friend from the pitiless cat.",
"yid": "1PQ3fFHSazk",
"sid": "2"
},
{
"id": "15",
"eid": "55",
"title": "Frantic Romantic",
"director": "Seamus Malone",
"writer": "James Henry",
"airdate": "11 December 2009",
"description": "The Farmer tries to impress his girlfriend by cooking a romantic dinner. There are two problems, however: the Farmer can't cook and Bitzer is a useless maitre d'. Shaun and the flock decide to do the cooking themselves to set things right.",
"yid": "CwvKRFEriSc",
"sid": "2"
},
{
"id": "16",
"eid": "56",
"title": "Everything Must Go",
"director": "Richard Webber",
"writer": "Richard Goleszowski & Rob Dudley",
"airdate": "14 December 2009",
"description": "Everything must go when the Farmer sets up a stall by the side of the road and leaves Bitzer in charge. The lazy sheepdog soon tires of his role and gives Shaun the job. He proves to be a much better salesman than Bitzer and the flock is only too happy to get stuck in, selling nearly every one of the farmer's worldly possessions.",
"yid": "9l0hTKzvYiU",
"sid": "2"
},
{
"id": "17",
"eid": "57",
"title": "Party Animals",
"director": "Richard Webber",
"writer": "Nick Park",
"airdate": "15 December 2009",
"description": "The Farmer throws a fancy-dress house party for his birthday. When Bitzer accidentally destroys all of the invitations, however, Shaun saves the day again. Disguised in their own ingenious costumes, the sheep stand in as the guests and have a good old knees-up.",
"yid": "4n4uf51XwXg",
"sid": "2"
},
{
"id": "18",
"eid": "58",
"title": "Cat Got Your Brain?",
"director": "Seamus Malone",
"writer": "Dan Berlinka & Andy Williams",
"airdate": "16 December 2009",
"description": "Two bungling alien scientists transport Pidsley the cat and Shaun aboard their flying saucer. Unfortunately, a foolish error causes the aliens to swap the animals' brains around. Shaun and Pidsley are dumped back to Earth, not realising they are in the wrong bodies – leading to much confusion around the farm before the aliens return to correct their mistake. In the end, nearly everyone's brains have been swapped.",
"yid": "nLyL6rK125M",
"sid": "2"
},
{
"id": "19",
"eid": "59",
"title": "Two's Company",
"director": "Richard Webber",
"writer": "Lee Pressman",
"airdate": "17 December 2009",
"description": "Shaun is smitten when a bedraggled new sheep called Lola lands among the flock. After a wash in the sheep dip, the newcomer turns out to be quite attractive and Shaun immediately falls head over hooves for her. While Bitzer goes on a journey to find her rightful owner, the flock are kept amused by Shaun's romantic antics.",
"yid": "6D0x4QCGzi4",
"sid": "2"
},
{
"id": "20",
"eid": "60",
"title": "In The Doghouse",
"director": "Lee Wilton",
"writer": "Kay Stonham",
"airdate": "18 December 2009",
"description": "Bitzer's kennel is accidentally destroyed by the Farmer's tractor crashing into it, and the canny canine hopes the Farmer will replace it with a new deluxe model. When he sees his master's clumsy attempt to build a new kennel, Bitzer is so distraught that he packs his bags and leaves home. Shaun, however, hopes to tempt Bitzer to return with the kennel of his dreams.",
"yid": "Mxf_rrdWDJs",
"sid": "2"
},
{
"id": "21",
"eid": "61",
"title": "The Boat",
"director": "Richard Webber",
"writer": "Richard Goleszowski & Rob Dudley",
"airdate": "17 May 2010",
"description": "The Farmer gets Bitzer to help him renovate an old boat, but as soon as his back is turned, the sheep and pigs turn the refurbishment into a swashbuckling game of pirates.[10]",
"yid": "86lQGd1gRqA",
"sid": "2"
},
{
"id": "22",
"eid": "62",
"title": "What's Up, Dog?",
"director": "Lee Wilton",
"writer": "Lee Pressman",
"airdate": "18 May 2010",
"description": "A wayward balloonist lands in the sheep's field. Shaun and his friends are intrigued by the hot air balloon and inadvertently take to the skies. Down on the ground, an ever more desperate Bitzer runs himself ragged attempting to bring the wayward sheep back down to earth safely.[11]",
"yid": "3wdtDduHhEw",
"sid": "2"
},
{
"id": "23",
"eid": "63",
"title": "Cock-a-Doodle Shaun",
"director": "Seamus Malone",
"writer": "Sarah Ball",
"airdate": "19 May 2010",
"description": "The rooster is missing and there's no one to wake up the farm. When Shaun discovers the rooster has been snatched by the greedy fox, he sets off with Bitzer on a daring rescue mission.[11]",
"yid": "rs1FRI3qYq4",
"sid": "2"
},
{
"id": "24",
"eid": "64",
"title": "Bitzer's Basic Training",
"director": "Richard Webber",
"writer": "Dan Berlinka & Andy Williams",
"airdate": "20 May 2010",
"description": "Bitzer thinks the Farmer is planning to replace him, so Shaun helps to knock his friend into shape. While things initially go as expected, Bitzer quickly goes completely over the top with his training regime and starts running the farm with military precision, driving everyone crazy.[11]",
"yid": "uKdKt_FfEk0",
"sid": "2"
},
{
"id": "25",
"eid": "65",
"title": "Chip Off The Old Block",
"director": "Lee Wilton",
"writer": "Ian Carney",
"airdate": "21 May 2010",
"description": "The Farmer has taken up sculpting, but unintentionally drops a huge slab of stone on top of Timmy's teddy, making him distraught. Shaun and the flock must struggle and strain to lift the heavy block and retrieve the precious toy.[11]",
"yid": "CJQNix015bg",
"sid": "2"
},
{
"id": "26",
"eid": "66",
"title": "Pig Trouble",
"director": "Lee Wilton",
"writer": "Lee Pressman",
"airdate": "24 May 2010",
"description": "When Bitzer injures his foot and can't work, the Farmer chooses the pigs to take over his role. The power-crazy pigs take the opportunity to turn the farm into a porky paradise – at the sheep's expense. Bitzer tries in vain to warn his master what is going on behind his back, but when he fails, Shaun decides to step in and restore the status quo.[11]",
"yid": "v4ckOj8",
"sid": "2"
},
{
"id": "27",
"eid": "67",
"title": "Bitzer From The Black Lagoon",
"director": "Seamus Malone",
"writer": "Glenn Dakin",
"airdate": "25 May 2010",
"description": "While trying to retrieve his ball Shaun accidentally kicked out, Bitzer falls into a muddy pond. A muddy creature emerges, and Shaun becomes convinced the sheep are being attacked by a swamp monster. Shortly after they decide that the swamp monster is Bitzer and try to clean him up, the sheep realize they are cleaning up a real swamp monster when the real Bitzer shows up.[11]",
"yid": "UQ7ZE-mGu6c",
"sid": "2"
},
{
"id": "28",
"eid": "68",
"title": "Zebra Ducks Of The Serengeti",
"director": "Lee Wilton",
"writer": "Richard Goleszowski & Rob Dudley",
"airdate": "26 May 2010",
"description": "After getting covered in soot, two hapless ducks are mistaken for a pair of rare African Zebra Ducks. Seeing a way to make money, the Farmer transforms Shaun's field into an exotic duck enclosure, which he gleefully opens to the public. Shaun doesn't appreciate losing his field and sets about exposing the fraud, while Bitzer tries to stop the truth from coming out.[11]",
"yid": "aCMtlgLcArY",
"sid": "2"
},
{
"id": "29",
"eid": "69",
"title": "Whistleblower",
"director": "Richard Webber",
"writer": "Mark Daydy",
"airdate": "27 May 2010",
"description": "Bitzer loses his precious whistle and tests out a trumpet as a replacement. Before long, the power of the trumpet goes to his head and his fanfares and jazz styled playing drive Mower Mouth and the Flock around the bend.[11]",
"yid": "u9CLNxTcHXc",
"sid": "2"
},
{
"id": "30",
"eid": "70",
"title": "The Big Chase",
"director": "Seamus Malone",
"writer": "Craig Ferguson & Patrick Gallagher",
"airdate": "28 May 2010",
"description": "When Timmy drives off on the farmer's brand new quad bike, Shaun, Bitzer and the flock have to give chase by any means available. Very soon, half of the animals on the farm have joined in the chase. The sheep must stop Timmy and return the quad bike before the Farmer finds out.[11]",
"yid": "O_lznrZJ24k",
"sid": "2"
},
{
"id": "31",
"eid": "71",
"title": "The Magpie",
"director": "Richard Webber",
"writer": "Giles New & Keiron Self",
"airdate": "6 December 2010",
"description": "A magpie's nest fills up with stolen items from around the farm, prompting Shaun to come up with an idea to outwit the thieving bird.",
"yid": "TYMcOvdxlYM",
"sid": "2"
},
{
"id": "32",
"eid": "72",
"title": "Operation Pidsley",
"director": "Richard Webber",
"writer": "Dave Ingham",
"airdate": "7 December 2010",
"description": "The sheep throw a party in the house, but Pidsley captures their antics on film, forcing Shaun and Bitzer to work together to prevent him from showing the pictures to the Farmer.",
"yid": "SkeikYusvi0",
"sid": "2"
},
{
"id": "33",
"eid": "73",
"title": "Pig Swill Fly",
"director": "Richard Webber",
"writer": "Jimmy Hibbert",
"airdate": "8 December 2010",
"description": "An inspector visits the farm and Bitzer tries to prevent a tragedy when a fight breaks out between the pigs and the sheep.",
"yid": "bfFsMhrMNYw",
"sid": "2"
},
{
"id": "34",
"eid": "74",
"title": "Shirley Whirley",
"director": "Lee Wilton",
"writer": "Sarah Ball",
"airdate": "9 December 2010",
"description": "Shirley has wheels and an eventual remote control installed so that Shaun can move her around easily, but the Farmer's television remote interferes with the signal.",
"yid": "CwkDII2YjZ4",
"sid": "2"
},
{
"id": "35",
"eid": "75",
"title": "Foxy Laddie",
"director": "Seamus Malone",
"writer": "Christopher Sadler",
"airdate": "10 December 2010",
"description": "The fox, disguised as a ram, tries to infiltrate the flock to eat Timmy. But he first must alternate between fending off both the suspicious Shaun and the lovestruck Shirley.",
"yid": "DH05rOjpB8s",
"sid": "2"
},
{
"id": "36",
"eid": "76",
"title": "Shaun Goes Potty",
"director": "Seamus Malone",
"writer": "Nathan Cockerill",
"airdate": "13 December 2010",
"description": "Bitzer and the flock have a game on the Farmer's new pool table, but they accidentally damage it.",
"yid": "8frhnFnIxo4",
"sid": "2"
},
{
"id": "37",
"eid": "77",
"title": "An Ill Wind",
"director": "Seamus Malone",
"writer": "Chris Parker",
"airdate": "14 December 2010",
"description": "The farmer receives a huge power-electricity bill, and decides to build a wind turbine to power the house. However, as soon as his back is turned, Shaun and the flock transform the new contraption into a fairground ride.",
"yid": "6vDRATSD0U8",
"sid": "2"
},
{
"id": "38",
"eid": "78",
"title": "Fireside Favourite",
"director": "Lee Wilton",
"writer": "Ian Carney",
"airdate": "15 December 2010",
"description": "Pidsley the cat is upset when his favourite spot is taken by Bitzer, who gets tucked up in the house when he gets a cold. Shaun must keep him where he is and stop Pidsley from throwing him out.",
"yid": "7ZWbl3AOynw",
"sid": "2"
},
{
"id": "39",
"eid": "79",
"title": "Snowed In",
"director": "Richard Webber & Lee Wilton",
"writer": "Gareth Owen",
"airdate": "16 December 2010",
"description": "Everyone awakens to find the farm covered in snow, but while the sheep have a massive snowball fight, the Farmer is trapped inside the farmhouse.",
"yid": "GcDgmoEJRBo",
"sid": "2"
},
{
"id": "40",
"eid": "80",
"title": "We Wish Ewe A Merry Christmas",
"director": "Lee Wilton",
"writer": "Charles Hodges",
"airdate": "17 December 2010",
"description": "After receiving Christmas gifts, the sheep learn that the Farmer will be spending Christmas Day alone, so the animals decorate the farmhouse to give him a magical time.",
"yid": "t9xCzOAYRLg",
"sid": "2"
}
]
},
{
"id": "3",
"episodes": [
{
"id": "1",
"eid": "81",
"title": "The Stand Off",
"director": "Lee Wilton",
"writer": "Ian Carney",
"airdate": "26 November 2012",
"description": "A traffic jam occurs on the road, and Shaun and the flock can't get past. Bitzer decides to let them walk through a lorry, but then has to save them when they don't come out on the other side.",
"yid": "TYthwzMIsW0",
"sid": "3"
},
{
"id": "2",
"eid": "82",
"title": "The Coconut",
"director": "Andy Symanowski",
"writer": "Lee Pressman",
"airdate": "27 November 2012",
"description": "The farmer wins a coconut from a funfair. Shaun and Bitzer get their hands on it and attempt to crack it open.",
"yid": "xEkeQzko2kI",
"sid": "3"
},
{
"id": "3",
"eid": "83",
"title": "The Shepherd",
"director": "Chris Sadler",
"writer": "Richard Starzak & Rob Dudley",
"airdate": "28 November 2012",
"description": "The farmer enters a shepherd contest to try and earn a trophy.",
"yid": "QyIg8emY1V0",
"sid": "3"
},
{
"id": "4",
"eid": "84",
"title": "You Missed A Bit",
"director": "Chris Sadler",
"writer": "Trevor Ricketts",
"airdate": "29 November 2012",
"description": "Window-cleaning proves to be a lot harder than it is thought to be for Shaun and Bitzer, who decide to leave the job to the flock and soon regret their decision.",
"yid": "0uW9qG_sXXE",
"sid": "3"
},
{
"id": "5",
"eid": "85",
"title": "Let's Spray",
"director": "Andy Symanowski",
"writer": "Richard Starzak, Rob Dudley & Andy Symanowski",
"airdate": "30 November 2012",
"description": "Bitzer is forced to clean up graffiti on the sheep's barn as punishment for supposedly doing it. Shaun discovers the culprit in the form of Timmy, but decides to join him in making more graffiti art as a joke on Bitzer, which causes more trouble for him.\n\nNote: This episode was not aired in the UK, due to its use of graffiti. However, it was released on the Shaun the Sheep: Spring Cleaning DVD on 7 April 2014 in the same country.",
"yid": "MtcqAdrzSg8",
"sid": "3"
},
{
"id": "6",
"eid": "86",
"title": "The Crow",
"director": "Andy Symanowski",
"writer": "Lee Pressman",
"airdate": "3 December 2012",
"description": "A loud crow in the barn prevents Shaun and the flock from sleeping, so they try to find a solution.",
"yid": "XVFBkoktiTQ",
"sid": "3"