forked from ChrisRaveendra/munchmates.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trucks1.json
3491 lines (3491 loc) · 143 KB
/
trucks1.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
[
{
"vendor-name": "Kara's Cupcakes",
"type": "truck",
"price": 1,
"attribute": {
"savory": 0,
"sweet": 1,
"vegetarian": 1
},
"about": "Kara's Cupcakes is the vision of executive pastry chef, Kara Lind. A somewhat rebellious child, Kara's sweet tooth is almost legendary in her family. The daughter of a dentist, Kara's love for sweet treats was discouraged by her parents. She learned early in childhood to hide candy and other sweets throughout her family home.This appreciation of sweets is among Kara's earliest and strongest memories. As an advertising sales executive and passionate home baker, Kara realized the importance of following her dreams and enrolled in pastry school. With the goal of furthering her baking skill set, she diligently embraced this program. A small word of mouth cupcake catering business soon was born. It quickly became so popular that demand for her cupcakes exceeded her ability to fill the orders. Before long the first Kara's Cupcakes bakery and retail store opened in San Francisco, followed by a retail outlet in historic Ghirardelli Square.Even now, a mom with nine busy stores selling her famous cupcakes, Kara can still be found most mornings working in the kitchen with her dedicated pastry staff. She visits the farmers markets regularly, looking for inspiration, and sourcing seasonal items for upcoming cupcakes flavors. Thankfully, as the owner of a cupcake bakery she no longer needs to hide sweets, preferring to share her new finds.",
"menu": " Cupcakes Baked fresh daily using local, sustainable, and when available, organic ingredients. Variety of flavors, including seasonal and gluten-free options.",
"schedule": [],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Dessert"
],
"cuisine-map": null
},
{
"vendor-name": "Lady Falcon Coffee Club",
"type": "truck",
"price": 1,
"attribute": {
"savory": 0,
"sweet": 1,
"vegetarian": 1
},
"about": "Lady Falcon Coffee Club is roasting up a fresh batch of beans to brew you the best cup of coffee you could ever ask for.",
"menu": " Coffee!! Coffee!!",
"schedule": [],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Coffee",
"Breakfast",
"Baked Goods"
],
"cuisine-map": null
},
{
"vendor-name": "Licensed 2 Grill",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 0
},
"about": "World-inspired street eats with a great theme! Licensed 2 Grill is serving up fries, sandwiches, tacos, and more from it's pop-culture-themed truck on the streets of the Bay Area. Fan-favorites include the \"Pacman tacos\" \"Cheat Day Fries\" & \"The Raider\", but the menu rotates, so don't miss out on what may become your favorite dish!",
"menu": " Portobello Cubano Pig Papa Pacman Secret Agent Gangnam Style Cali Taco Street Taco Raider Warrior Ono Portobello Cubano Pig Papa Pacman Secret Agent Gangnam Style Cali Taco Street Taco Entrees Grilled portobello mushrooms, onions, garlic, bell peppers, arugula, tomato, mayo, Swiss Entrees Roasted pork, ham, Swiss, dill pickles, mayo, mustard, grilled press Entrees Roasted pulled pork, bacon, cheddar jack cheese, pineapple, tomato, onions, cilantro, chipotle BBQ sauce Entrees Filipino pork or chicken sisig, red onions, cilantro, pineapple, Firecrackin sauce, chicharr\\u00f3n Entrees Seasoned steak, grilled onions, pico de gallo, chimichurri, cotija Entrees Beef short ribs, romaine, Korean slaw, gojuchang sauce, sesame seeds Entrees Choice of protein, salsa verde, pico, sour cream, cheese, flour tortilla Entrees Choice of protein, salsa verde, onions, cilantro, cotija cheese Entrees Grilled steak, arugula, grilled onions, mushrooms, Swiss, garlic, mayo Entrees Seasoned steak, grilled onions, green bell peppers, cherry peppers, Swiss Entrees Teriyaki beef, pineapple, romaine, cheddar jack cheese, pico Entrees Grilled portobello mushrooms, onions, garlic, bell peppers, arugula, tomato, mayo, Swiss Entrees Roasted pork, ham, Swiss, dill pickles, mayo, mustard, grilled press Entrees Roasted pulled pork, bacon, cheddar jack cheese, pineapple, tomato, onions, cilantro, chipotle BBQ sauce Entrees Filipino pork or chicken sisig, red onions, cilantro, pineapple, Firecrackin sauce, chicharr\\u00f3n Entrees Seasoned steak, grilled onions, pico de gallo, chimichurri, cotija Entrees Beef short ribs, romaine, Korean slaw, gojuchang sauce, sesame seeds Entrees Choice of protein, salsa verde, pico, sour cream, cheese, flour tortilla Entrees Choice of protein, salsa verde, onions, cilantro, cotija cheese",
"schedule": [],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"American"
],
"cuisine-map": null
},
{
"vendor-name": "Hedge Coffee",
"type": "truck",
"price": 1,
"attribute": {
"savory": 0,
"sweet": 0,
"vegetarian": 0
},
"about": "When it comes to the best coffee in the Bay Area, you can bet that Hedge Coffee is brewing it up at their badass bar. You can find this cool crew popping up all around San Fran, at all the coolest events in town. All of their drinks are of utmost quality and exclusively made with local products, so just one sip will send you on one deliciously caffeinated trip. For espresso-based beverages, nitro cold brew, and manually brewed coffees with a delectable edge, be sure to head straight to Hedge. ",
"menu": " Espresso Cappuccino Latte Cortado Macchiato Quick Cup Pour-Over Coffee Flat g Nitro Cold Brew Drinks Drinks Drinks Drinks Drinks Drinks Drinks Drinks ",
"schedule": [],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Breakfast",
"Beverage",
"Coffee"
],
"cuisine-map": null
},
{
"vendor-name": "North Border Taco",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 0
},
"about": "The best Tex-Mex truck from Sacramento to the Bay? You must be looking for North Border Taco! Traditional Tex-Mex taste combined with more modern fare is an eating experience that you just can't miss. Get a taste of Nor Cal's Best Mex, with the fantastic food of North Border Taco!",
"menu": " Street Tacos (3) North Border Tacos Super Burrito Spanish Rice Cilantro Lime Rice Pinto Beans Black Beans Salad Entrees Choice of meat, onions, and cilantro on a warm 100% corn tortilla Entrees Crispy, grilled yellow 100% corn tortilla stuffed with meat, romaine lettuce, jack cheese, pico, and sprinkled cotija cheese. Entrees Stuffed with meat, black or pinto beans, Spanish or cilantro lime rice, romaine lettuce, pico, guac, sour cream, and jack cheese. Sides Sides Sides Sides Sides ",
"schedule": [],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Mexican"
],
"cuisine-map": null
},
{
"vendor-name": "Mayo & Mustard",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 1
},
"about": "Mayo and Mustard serves hot & fresh, made-to-order sandwiches.We are a new gourmet food truck offering delicious hot deli-style sandwiches to the Bay Area. Our mission is to spread the \\u201cMayo & Mustard sandwich experience\\u201d and captivate the appetites of those who love sandwiches. We put our love into every sandwich we make.Learn more about where our truck will be stationed next by finding us using the Roaming Hunger app!",
"menu": " Veggie Delight Avocado, mushrooms, artichoke, 3 beans Hot Link BBQ Sauce BBQ Chicken Club Bacon and avocado Pastrami Reuben Mayo & Mustard mix and sauerkraut Tony's Tri-Tip BBQ and Horseradish BBQ Roast Beef Roast beef wg BBQ sauce Turkey Club Bacon and avocado Southwestern Turkey Variety of spices Mike's Special Pastrami w/ bacon and avocado Pastrami & Turkey Perfect combination Roast Chicken Chipotle garlic mayo Pastrami & Chicken Chipotle garlic mayo Peppers Turkey Club Bacon and avocado Buffalo Chicken Chipotle garlic mayo w/ buffalo sauce",
"schedule": [
{
"location": "5M: 5th & Minna",
"address": "410 Minna St",
"city": "San Francisco",
"state": "CA",
"latitude": 37.782116,
"longitude": -122.406235,
"times": {
"month": 5,
"day": 4,
"startTime": 11,
"endTime": 14
}
}
],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Sandwiches"
],
"cuisine-map": null
},
{
"vendor-name": "Canasta Kitchen",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 1,
"vegetarian": 1
},
"about": "Canasta Kitchen brings real, authentic Latin food to Concord! Try their Canastaco or their Huarache, crowd favorites. Stop by for a delicious and fulfilling Latin meal at Canasta Kitchen!",
"menu": " Nacho Macho Taterrito Burrito Canastaco (Fish Taco) Huarache Street Tacos Empanadas Latin Wrap Quesadilla Flautas Jalape\\u00c3\\u00b1o Flautas Taquitos Horchata Jamaica Iced Tea Lemonade Entrees Crispy tortilla chips topped with tater tots, black beans, pinto beans, Oaxaca/jack cheese, chicken and pork, tomatillo salsa, shredded lettuce, pico de gallo, sour cream, chipotle sauce, and cotija cheese Entrees Flour tortilla, your choice of meat, tater tots, melted Oaxaca/jack cheese, pico de gallo, lettuce, tomatillo salsa and sour cream Entrees Flour tortilla, your choice of meat, rice, beans, melted Oaxaca/jack cheese, pico de gallo, shredded lettuce, tomatillo salsa, and sour cream Entrees A big, crunchy corn tortilla, wrapped in a soft corn tortilla and filled with crispy fish, melted Oaxaca/jack cheese, fresh avocado, pico de gallo, tomatillo salsa, shredded lettuce, and topped with chipotle aioli Entrees Oblong, handmade corn masa (dough) fried, then topped with Oaxaca/jack cheese, beans, your choice of meat, shredded lettuce, pico de gallo, tomatillo salsa, sour cream and cotija cheese Entrees Soft corn tortillas topped with your choice of meat, chopped onions, tomatillo salsa, radishes, and cilantro Entrees Fresh, handmade corn masa (dough) filled with poblano chicken or carnitas and Oaxaca/jack melted cheese, then fried until crispy then topped with lettuce, pico de gallo, sour cream and cotija cheese Entrees Large flour tortilla, your choice of meat, black beans, Oaxaca/jack cheese, shredded lettuce, pico de gallo, tomatillo salsa, then drizzled with sour cream and chipotle sauce Entrees Large flour tortilla, melted Oaxaca/jack cheese, your choice of meat, pico de gallo, tomatillo salsa and sour cream Entrees Rolled flour tortilla filled with poblano chicken and melted Oaxaca/jack cheese, then fried to perfection and topped with chipotle sauce, shredded lettuce, sour cream, pico de gallo and cotija cheese Entrees Rolled flour tortilla filled with cochinita (pork), roasted jalape\\u00f1o and melted Oaxaca/jack cheese, then fried to perfection and topped with chipotle sauce, shredded lettuce, sour cream, pico de gallo and cotija cheese Entrees Tightly rolled corn tortilla filled with poblano chicken and fried to a golden delicious crisp. Topped with lettuce, pico de gallo, tomatillo salsa, sour cream and cotija cheese Drinks Rice & cinnamon drink served over ice Drinks Hibiscus flower tea served over ice Drinks Unsweetened or flavored with passion fruit Drinks ",
"schedule": [
{
"location": "Pleasant Hill",
"address": "138 Trelany Road ",
"city": "Pleasant Hill",
"state": "CA",
"latitude": 37.947578,
"longitude": -122.062576,
"times": {
"month": 5,
"day": 2,
"startTime": 17,
"endTime": 21
}
}
],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Latin",
"Mexican"
],
"cuisine-map": null
},
{
"vendor-name": "Don Pablo",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 0
},
"about": "Don Pablo makes a fusion of Peruvian/Asian food maintaining the authentic Peruvian flavors and giving costumers different choices to enjoy their food. Our menu have sandwiches and wraps inspired by classic Peruvian plates. Our sandwiches and wraps joint makes fast food fancy!",
"menu": " Don Pablo menu Entrees Lomo Saltado\\nStir fried steak with onions, tomatoes, cilantro marinated with Peruvian-Asian sauce topped with fries\\n\\n\\nBroccoli Saltado\\nStir fried steak or chicken with onions, tomatoes, cilantro and broccoli marinated with Peruvian-Asian sauce \\n\\n\\nPollo Saltado\\nStir fried chicken breast with onions, tomatoes, cilantro marinated with Peruvian-Asian sauce, topped with fries\\n\\nAdobo \\nSlow-cooked pork loin marinated with Peruvian spices \\nMushrooms Saltado (V)\\nStir fried mushrooms with onions, tomatoes, cilantro marinated with Peruvian-Asian sauce topped with fries\\n\\n\\n\\n\\nServed in:\\n\\n\\nRice Bowl or Wrap\\nLomo Saltado \\nPollo Saltado \\nAdobo \\nBroccoli Saltado Pollo/Lomo \\nMushroom Saltado (V) \\n\\n\\nTallarin Saltado\\nSpaghetti saut\\u00e9ed served with\\nLomo Saltado \\nPollo Saltado \\nBroccoli Saltado Pollo/Lomo \\nMushroom Saltado (V) \\n\\n\\nPeruvian Burrito or Peruvian Burrito Bowl\\nw/steamed garlic rice, beans, salad, and Peruvian pepper sauce \\nPollo Saltado w/fries\\nAdobo (Peruvian) \\nChicharron w/sweet potatoes fries\\nMushroom Saltado (V) w/fries\\nLomo Saltado w/fries\\n ",
"schedule": [
{
"location": "San Carlos @ Devils Canyon Brewery",
"address": "935 Washington Street",
"city": "San Carlos",
"state": "CA",
"latitude": 37.498348,
"longitude": -122.244034,
"times": {
"month": 5,
"day": 4,
"startTime": 17,
"endTime": 21
}
}
],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Peruvian"
],
"cuisine-map": null
},
{
"vendor-name": "Little Green Cyclo",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 1
},
"about": "Little Green Cyclo brings fresh, delicious, Vietnamese street food to the people of the Bay Area. Founders - Chef Quynh Nguyen, Monica Wong and Susie Pham - can be found serving up a menu that showcases all the great flavors of Vietnam. From baguettes topped with homemade organic pate & packed with lemongrass grilled pork to coconut rice box with tamarind organic tofu and organic baby bok choy. They offer a variety of affordable choices for both meat lovers, vegetarians and vegans.They strive to source our ingredients from local and organic farms and pay attention to their seasonings, preferring sea salt, fresh ground pepper and brown sugar. As for drinks, they use filtered water to make unforgettable mint-infused iced coffee and specialty teas.Out of love and respect for our planet, they use only reusable, recyclable or compostable products, which means no Styrofoam or plastic bags can be found on this truck. With a strong belief in giving back to the community, a percentage of their proceeds are donated to a different charity each month, and they make frequent drop-offs at the local food banks.To discover more of the exciting story behind Little Green Cyclo, check out our blog post here.",
"menu": " Banh Mi Garlic Noodles Jasmine Rice (GF, V) Rice Vermicelli (GF, V) Fresh Salad (GF, V) Pho Banh Mi Vietnamese Chicken Pho Fresh Pineapple Lychee Lemonade Vietnamese Coffee Thai Iced Tea Shut Eyes Wide Fresh Shrimp & Pork Spring Rolls Fresh Organic Tofu Spring Rolls Sweet Potato Tater Tots Sriracha Fries Fresh Shrimp & Pork Spring Rolls Entrees French baguette with pickled carrots & daikon, cucumbers, cilantro, pickled red onions, jalape\\u00f1os, mayonnaise, & soy sauce. Entrees Green onion oil, Vietnamese kimchi, and roasted crushed peanuts. Entrees Lettuce, pickled carrots & daikon, cucumbers, cilantro, bean sprouts, green onion oil, and a gluten-free soy sauce vinaigrette on the side. Entrees Lettuce, pickled carrots & daikon, cucumbers, cilantro, bean sprouts, fried shallots, green onion oil, roasted crushed peanuts, fish sauce vinaigrette or gluten-free soy vinaigrette (V) on the side. Entrees Lettuce, pickled carrots & daikon, cucumbers, cilantro, bean sprouts, fried shallots, green onion oil, roasted crusted peanuts, crispy noodles, gluten-free soy sauce vinaigrette & fish sauce vinaigrette. Entrees Braised beef brisket, French baguette with pickled carrots & daikon, basil, cucumbers, cilantro, pickled red onions, jalape\\u00f1os, mayonnaise, Vietnamese pesto sauce, and pho soup on the side. Entrees Poached chicken, flat rice noodles, and side of basil, bean sprouts, lime/lemon wedge, hoisin & Sriracha sauces. Drinks Drinks Drinks Drinks Perfect combo of Thai iced tea & Vietnamese iced coffee Sides Fresh vermicelli, lettuce, cucumbers, pickled carrots & daikon, bean sprouts, mint. Sides With your choice of dipping sauce: gluten-free soy sauce vinaigrette, fish sauce, vinaigrette, peanut sauce. Sides Dipping sauce: tamarind plum Sides 1/4\" shoestring fries tossed in Sriracha salt, mint & Sriracha Sides Fresh vermicelli, lettuce, cucumbers, pickled carrots & daikon, bean sprouts, mint.",
"schedule": [
{
"location": "Vallejo & Front",
"address": "850 Front St. ",
"city": "San Francisco",
"state": "CA",
"latitude": 37.799164,
"longitude": -122.399971,
"times": {
"month": 4,
"day": 25,
"startTime": 11,
"endTime": 14
}
},
{
"location": "Presidio Picnic",
"address": "Main Parade Ground",
"city": "San Francisco",
"state": "CA",
"latitude": 37.800739,
"longitude": -122.458237,
"times": {
"month": 4,
"day": 29,
"startTime": 11,
"endTime": 16
}
},
{
"location": "Vallejo & Front",
"address": "850 Front St. ",
"city": "San Francisco",
"state": "CA",
"latitude": 37.799164,
"longitude": -122.399971,
"times": {
"month": 5,
"day": 4,
"startTime": 11,
"endTime": 14
}
},
{
"location": "Presidio Picnic",
"address": "Main Parade Ground",
"city": "San Francisco",
"state": "CA",
"latitude": 37.800739,
"longitude": -122.458237,
"times": {
"month": 5,
"day": 6,
"startTime": 11,
"endTime": 16
}
}
],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Vietnamese"
],
"cuisine-map": null
},
{
"vendor-name": "Happy Dumplings",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 0
},
"about": "Happy Dumplings is the happy provider of dumplings to the happy dumpling lovers of San Francisco. But these aren't just any dumplings. Of course, you could describe them as happy, but they're also 100% authentic, cooked in the Shandong style culled from time tested Chinese recipes.The happy couple that makes the happy dumplings take pride in hand-making every bite sized bao. It's a two person job, and they're happy to do it. First, the dough is rolled flat by James as Shuhi stands over the grill, smoking the pork belly to tenderized perfection. A myriad of ingredients make up each original homemade dumpling, from the traditional cabbage and pork to the sweet and savory vegetarian chili. Everyone can be made happy from a menu that's accommodating to everyone's tastes. You'll find Happy Dumplings popping up at local farmer's markets, but why not spread the joy to your next event? James and Shuhi are happy to serve, and even happier doing the work to make sure you and your guests are the happiest you're ever gonna be. At least, when you're eating their happy dumplings. MUST TRYChive, Egg & Shrimp Dumpling - a thick bread like dough encases fresh chives, scrambled eggs and fresh caught bay shrimp for a dumpling that delivers on tradition and extraordinary taste",
"menu": "",
"schedule": [
{
"location": "UN Plaza",
"address": "10 United Nations Plaza ",
"city": "San Francisco",
"state": "CA",
"latitude": 37.7804816,
"longitude": -122.4131768,
"times": {
"month": 4,
"day": 24,
"startTime": 11,
"endTime": 14
}
},
{
"location": "Civic Center Truck Spot",
"address": "355 McAllister",
"city": "san francisco",
"state": "CA",
"latitude": 37.7794918,
"longitude": -122.417618,
"times": {
"month": 4,
"day": 26,
"startTime": 11,
"endTime": 14
}
},
{
"location": "5th & Townsend",
"address": "699 5th St.",
"city": "San Francisco",
"state": "CA",
"latitude": 37.7755303,
"longitude": -122.3974504,
"times": {
"month": 4,
"day": 27,
"startTime": 11,
"endTime": 14
}
},
{
"location": "Lake Merritt",
"address": "1000 Oak St",
"city": "Oakland",
"state": "CA",
"latitude": 37.798618,
"longitude": -122.264191,
"times": {
"month": 4,
"day": 27,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Alameda @ South Shore Center",
"address": "535 South Shore Center",
"city": "Alameda",
"state": "CA",
"latitude": 37.756599,
"longitude": -122.252953,
"times": {
"month": 4,
"day": 28,
"startTime": 11,
"endTime": 15
}
},
{
"location": "Vallejo & Front",
"address": "850 Front St. ",
"city": "San Francisco",
"state": "CA",
"latitude": 37.799164,
"longitude": -122.399971,
"times": {
"month": 4,
"day": 30,
"startTime": 11,
"endTime": 14
}
},
{
"location": "Civic Center Truck Spot",
"address": "355 McAllister",
"city": "san francisco",
"state": "CA",
"latitude": 37.7794918,
"longitude": -122.417618,
"times": {
"month": 5,
"day": 3,
"startTime": 11,
"endTime": 14
}
},
{
"location": "5M: 5th & Minna",
"address": "410 Minna St",
"city": "San Francisco",
"state": "CA",
"latitude": 37.782116,
"longitude": -122.406235,
"times": {
"month": 5,
"day": 4,
"startTime": 11,
"endTime": 14
}
}
],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Chinese"
],
"cuisine-map": null
},
{
"vendor-name": "Bowl'd Acai",
"type": "truck",
"price": 1,
"attribute": {
"savory": 0,
"sweet": 1,
"vegetarian": 1
},
"about": "You'll be bowled over with how good Bowl'd Acai is! Serving fresh and healthy acai bowls with fresh fruit and granola, smoothies and juices you'll feel good about what you put inside you. Bowl'd Acai is here to make it easy to get healthy, nutritious food anywhere.",
"menu": "",
"schedule": [],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Beverage",
"Acai Bowls"
],
"cuisine-map": null
},
{
"vendor-name": "Bonito Poke",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 0
},
"about": "Bonito Poke is brought to you by two Bay Area natives with a passion for crafting Hawaiian flavors with a chef-inspired twist. They exclusively use the highest-quality organic, biodynamic, and all-natural ingredients, including sustainable line-caught fish, to prepare their signature Pok\\u00e9 offerings. A few of their gourmet fusion toppings include mango, jicama, cilantro, onion, and spicy aioli, as well as cucumber, avocado, crab salad, nori furikake, and a tangy wasabi aioli. You just choose between fresh Tuna or Salmon and they\\u2019ll hand-cut your selection and dress it to order, guaranteeing maximum deliciousness in every bite. For all this and more, including delightfully refreshing specialty drinks, come by Bonito Poke and indulge in tasty seafood bliss!",
"menu": "",
"schedule": [
{
"location": "Lake Merritt",
"address": "1000 Oak St",
"city": "Oakland",
"state": "CA",
"latitude": 37.798618,
"longitude": -122.264191,
"times": {
"month": 4,
"day": 27,
"startTime": 17,
"endTime": 21
}
},
{
"location": "UN Plaza",
"address": "10 United Nations Plaza ",
"city": "San Francisco",
"state": "CA",
"latitude": 37.7804816,
"longitude": -122.4131768,
"times": {
"month": 5,
"day": 3,
"startTime": 11,
"endTime": 14
}
},
{
"location": "Fort Mason Center",
"address": "2 Marina Blvd",
"city": "San Francisco",
"state": "CA",
"latitude": 37.80573940449265,
"longitude": -122.43161905886075,
"times": {
"month": 5,
"day": 4,
"startTime": 17,
"endTime": 22
}
}
],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Hawaiian",
"Poke",
"Seafood"
],
"cuisine-map": null
},
{
"vendor-name": "Kabob Trolley",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 1,
"vegetarian": 1
},
"about": "The Kab\\u00f6b Tr\\u00f6lley is serving some craveable Middle Eastern street cuisine with an all-American twist!Their authentic menu offers something tasty for everyone, with a menu that is entirely made with gluten-free, Halal, and Kosher ingredients. You can taste the caliber of quality in every bite of their gyros, cheesesteaks, salads, sliders, fries, and much more!Whether you\\u2019re seeking your next meal or catering for your next event, you can always count on the The Kab\\u00f6b Tr\\u00f6lley for hearty, healthy, and delicious feasts served fast. ",
"menu": " Gyro Gyro Fries Gyro Salad Cheesesteak Slider Falafel Fries Pita Bread Entrees Served on soft pita bread with grilled onions, lettuce, tomatoes, and cucumbers topped with homemae tzatziki or spicy tzatziki. Entrees Beef/lamb gyro over golden brown fries topped with lettuce, grilled onions, and homemade tzatziki or spicy tzatziki. Entrees Served over romaine lettuce, tomatoes, and cucumbers, topped with homemade tzatziki or spicy tzatziki. Entrees Served on a sweet roll with grilled onions, cheese, lettuce, tomatoes, and cherry peppers topped with homemade tzatziki or spicy tzatziki. Entrees Served on a brioche roll with grilled onions, cheese, mixed greens, tomatoes, and cherry peppers topped with homemade tzatziki or spicy tzatziki. Sides Sides Sides ",
"schedule": [],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Afghan",
"Halal",
"Mediterranean",
"Middle Eastern"
],
"cuisine-map": null
},
{
"vendor-name": "The Chairman",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 1
},
"about": "San Francisco Magazine rated The Chairman as the best food truck in SF. In a city that is bustling with some of the most delicious and innovative food trucks in the country, this title truly means something. When you take one look at the vibrant baos being served at The Chairman, with soft plump buns (either baked or steamed), beautifully glazed meats, and bright pickled veggies, you instantly feel that you\\u2019re in the presence of a winning meal. Take one bite and you\\u2019ll find yourself uniting with the thousands of other loyal local fans. To read about the master behind these marvelous meals and fine wheels, Chef Hiroo, and the story of how The Chairman came to be, check out the Roaming Hunger blog here: http://roaminghunger.com/blog/7865/chef-hiroo-of-the-chairman-truck",
"menu": "",
"schedule": [
{
"location": "5M: 5th & Minna",
"address": "410 Minna St",
"city": "San Francisco",
"state": "CA",
"latitude": 37.782116,
"longitude": -122.406235,
"times": {
"month": 4,
"day": 25,
"startTime": 11,
"endTime": 14
}
},
{
"location": "El Cerrito",
"address": "6159 Fairmount Ave.",
"city": "El Cerrito",
"state": "CA",
"latitude": 37.900505,
"longitude": -122.303207,
"times": {
"month": 4,
"day": 25,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Upper Haight",
"address": "Stanyan St & Waller St",
"city": "San Francisco",
"state": "CA",
"latitude": 37.768246,
"longitude": -122.453377,
"times": {
"month": 4,
"day": 26,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Fort Mason Center",
"address": "2 Marina Blvd",
"city": "San Francisco",
"state": "CA",
"latitude": 37.80573940449265,
"longitude": -122.43161905886075,
"times": {
"month": 4,
"day": 27,
"startTime": 17,
"endTime": 22
}
},
{
"location": "Lake Merritt",
"address": "1000 Oak St",
"city": "Oakland",
"state": "CA",
"latitude": 37.798618,
"longitude": -122.264191,
"times": {
"month": 4,
"day": 27,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Larkspur",
"address": "2401 Larkspur Landing Circle ",
"city": "Larkspur",
"state": "CA",
"latitude": 37.946579,
"longitude": -122.508522,
"times": {
"month": 4,
"day": 29,
"startTime": 11,
"endTime": 15
}
},
{
"location": "Serramonte",
"address": "39 Serramonte Center",
"city": "Daly City",
"state": "CA",
"latitude": 37.672977,
"longitude": -122.468491,
"times": {
"month": 5,
"day": 1,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Vallejo & Front",
"address": "850 Front St. ",
"city": "San Francisco",
"state": "CA",
"latitude": 37.799164,
"longitude": -122.399971,
"times": {
"month": 5,
"day": 2,
"startTime": 11,
"endTime": 14
}
},
{
"location": "Civic Center",
"address": "355 McAllister ",
"city": "San Francisco",
"state": "CA",
"latitude": 37.779491,
"longitude": -122.417618,
"times": {
"month": 5,
"day": 4,
"startTime": 11,
"endTime": 14
}
},
{
"location": "Fort Mason Center",
"address": "2 Marina Blvd",
"city": "San Francisco",
"state": "CA",
"latitude": 37.80573940449265,
"longitude": -122.43161905886075,
"times": {
"month": 5,
"day": 4,
"startTime": 17,
"endTime": 22
}
},
{
"location": "Alameda @ South Shore Center",
"address": "535 South Shore Center",
"city": "Alameda",
"state": "CA",
"latitude": 37.756599,
"longitude": -122.252953,
"times": {
"month": 5,
"day": 5,
"startTime": 11,
"endTime": 15
}
}
],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Asian Fusion",
"Chinese"
],
"cuisine-map": null
},
{
"vendor-name": "Kome Sushi Burrito",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 1
},
"about": "What's in a name? In this case, pretty much everything you need to know. Kome Sushi Burrito is a food truck with a singular mission: deliver the best sushi burritos to Mission Street in San Francisco and beyond. They're keeping things simple with a menu that's built to satisfy. Choose from Kome's specialty burritos, or build yours with customizable fillings. Each sushi burrito is wrapped in light soy paper, with vinegar-y rice cushioning a center filled with seafood and fresh vegetables alike. It's a supersized sushi roll that brings big time flavor to an even bigger burrito, delivering a handful of yum. Find Kome Sushi Burrito in the Bay Area, and thank them for keeping your monstrous hunger at bay. MUST TRYGodzilla Burrito - because obviously. A monster sized burrito is packed full of tuna, eel, shrimp tempura, crab meat and avocado, with a bevy of fresh avocado, daikon, romaine lettuce, cucumber and carrots and drizzled with Kome's own Godzilla sauce",
"menu": "",
"schedule": [
{
"location": "Serramonte",
"address": "39 Serramonte Center",
"city": "Daly City",
"state": "CA",
"latitude": 37.672977,
"longitude": -122.468491,
"times": {
"month": 4,
"day": 24,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Vallejo & Front",
"address": "850 Front St. ",
"city": "San Francisco",
"state": "CA",
"latitude": 37.799164,
"longitude": -122.399971,
"times": {
"month": 4,
"day": 25,
"startTime": 11,
"endTime": 14
}
},
{
"location": "Foster City",
"address": "650 Shell Blvd",
"city": "Foster City",
"state": "CA",
"latitude": 37.557137,
"longitude": -122.270088,
"times": {
"month": 4,
"day": 25,
"startTime": 17,
"endTime": 21
}
},
{
"location": "UN Plaza",
"address": "10 United Nations Plaza ",
"city": "San Francisco",
"state": "CA",
"latitude": 37.7804816,
"longitude": -122.4131768,
"times": {
"month": 4,
"day": 26,
"startTime": 11,
"endTime": 14
}
},
{
"location": "Upper Haight",
"address": "Stanyan St & Waller St",
"city": "San Francisco",
"state": "CA",
"latitude": 37.768246,
"longitude": -122.453377,
"times": {
"month": 4,
"day": 26,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Lake Merritt",
"address": "1000 Oak St",
"city": "Oakland",
"state": "CA",
"latitude": 37.798618,
"longitude": -122.264191,
"times": {
"month": 4,
"day": 27,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Serramonte",
"address": "39 Serramonte Center",
"city": "Daly City",
"state": "CA",
"latitude": 37.672977,
"longitude": -122.468491,
"times": {
"month": 5,
"day": 1,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Menlo Park",
"address": "1120 Merrill St",
"city": "Menlo Park",
"state": "CA",
"latitude": 37.453712,
"longitude": -122.181122,
"times": {
"month": 5,
"day": 2,
"startTime": 17,
"endTime": 21
}
},
{
"location": "South Park",
"address": "340 Brannan St.",
"city": "San Francisco",
"state": "CA",
"latitude": 37.781174,
"longitude": -122.392975,
"times": {
"month": 5,
"day": 3,
"startTime": 11,
"endTime": 14
}
},
{
"location": "5M: 5th & Minna",
"address": "410 Minna St",
"city": "San Francisco",
"state": "CA",
"latitude": 37.782116,
"longitude": -122.406235,
"times": {
"month": 5,
"day": 4,
"startTime": 11,
"endTime": 14
}
},
{
"location": "San Carlos @ Devils Canyon Brewery",
"address": "935 Washington Street",
"city": "San Carlos",
"state": "CA",
"latitude": 37.498348,
"longitude": -122.244034,
"times": {
"month": 5,
"day": 4,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Alameda @ South Shore Center",
"address": "535 South Shore Center",
"city": "Alameda",
"state": "CA",
"latitude": 37.756599,
"longitude": -122.252953,
"times": {
"month": 5,
"day": 5,
"startTime": 11,
"endTime": 15
}
}
],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Asian Fusion",
"Sushi",
"Japanese"
],
"cuisine-map": null
},
{
"vendor-name": "Curry Up Now",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 1
},
"about": "Back in 2009, Curry Up Now truck appeared on the streets, San Francisco\\u2019s first and only Indian food truck. Inspired by the tasty street cuisine found all throughout India, Curry Up Now takes ever-so-savory and authentic Indian flavors, and wraps them up in on-the-go friendly tacos, quesadillas, burgers, burritos, bowls, and more. The food is so wonderfully delicious, the foodie love was quickly contagious. Now there are over four Curry Up Now trucks roaming through North California, serving everyone their scrumptious, affordable, and accessible menu. Their offerings include Burritos with creamy, tangy tikka masala, burgers with buttered buns, your choice of meat or veggies, and Maggi ketchup, chutney, and onions. Their Sexy Fries are certainly a hot item, with criss-cross sweet potato fries dressed with cheese and fried leek, and topped with a heap of juicy meat or veggies. And there\\u2019s so much more on their menu that\\u2019s sure to satisfy your curry cravings. So next time you\\u2019re hungry, you gotta hurry over to Curry Up Now. ",
"menu": " TIKKA MASALA Entrees \\nOur iconic tikka masala, turmeric rice, chana masala, onions, house pickles with a choice of chicken or paneer, turmeric white rice or riced cauliflower, chana garbanzo masala or daal lentils, with pico kachumber",
"schedule": [],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Indian"
],
"cuisine-map": null
},
{
"vendor-name": "Got Plate Lunch",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 0
},
"about": "Got Plate Lunch is bringing authentic Island flavors to the lucky foodies of the Bay Area!Their selection of Hawaiian-style plate lunches include 2 scoops of rice, a scoop of creamy macaroni salad, and an entree of your choice; Chicken Katsu, Garlic Shrimp Tacos, Kalua Pig, and so much more. Come on out to Got Plate Lunch for some of the most \\u201cOnolicious\\u201d comfort food you can find on the Mainland!",
"menu": " Kalua Pork and Cabbage BBQ Chicken Chicken Katsu BBQ Pork Kalbi Beef Short Ribs Hawaiian Style Mac Salad Tropical Slaw Pineapple/Cabbage Green Salad Garlic Saut\\u00c3\\u00a9ed Edamame Soy Beans White Rice Brown Rice Kimchi Fried Rice Garlic/Shoyu Chicken Wing Spam Musubi Blue Hawaiian Sliders BBQ Chicken Skewers Volcano Chicken w/ Fresh Tortilla Chips Spicy Cucumber Salad Entrees Slow cooked for 20 hours, then served with green cabbage Entrees Boneless, skinless chicken thighs marinated in our special BBQ sauce - soy sauce base, then grilled to perfection. It\\u2019s so \\u201cono. Served with dipping sauce. Entrees Seasoned and lighted breaded chicken thighs then fried to a golden crisp. With house katsu sauce. Entrees Thinly sliced pork, marinated in our special BBQ sauce - soy sauce base, then grilled with onions Entrees Approximately 45 pieces of Korean style 3-bone short ribs marinated in soy sauce base Entrees No filler, just mac noodles, seasoning, little bit of vegetables and Best Foods mayonnaise Entrees Cabbage, red bell peppers, fruits, and Asian/Fusion dressing Entrees Romaine lettuce, green cabbage, carrots, cucumbers and pineapple, served with our famous pineapple dressing Sides Sides Premium Calrose rice Sides Sides Sides Sides Grilled SPAM in between seasoned rice and wrapped in premium grade Nori. Topped with Furikaki. Sides 12 Hawaiian sweet roll, kalua pork, tropical slaw and blue sauce Sides 24 skewers: BBQ chicken, pineapples, onions, bell peppers Sides Sides ",
"schedule": [
{
"location": "Pleasant Hill",
"address": "138 Trelany Road ",
"city": "Pleasant Hill",
"state": "CA",
"latitude": 37.947578,
"longitude": -122.062576,
"times": {
"month": 5,
"day": 2,
"startTime": 17,
"endTime": 21
}
}
],
"chef-info": "",
"stars-count": 0,
"review-count": 0,
"cuisine": [
"Asian Fusion",
"Hawaiian"
],
"cuisine-map": null
},
{
"vendor-name": "Lobsta Truck",
"type": "truck",
"price": 1,
"attribute": {
"savory": 1,
"sweet": 0,
"vegetarian": 0
},
"about": "The Lobsta Truck is the premier LA provider of the ocean's most prized crustacean. Get a taste and find them to have a lobster dinner or lunch.A few weeks after a wonderful trip to the east coast, we decided that we were going to open the Lobsta Truck. With the lobster shacks in Maine similar to the taco shacks in LA, it seemed like the perfect fit. We proceeded to find a supplier that could deliver us fresh lobster and worked on developing our own lobster rolls. We tried a few types of bread, as we couldn't find the traditional split top New England rolls in LA, but it just wasn't right. As a result, like the lobster, we get our bread fresh from New England. We couldn't just have lobster rolls as our only menu item, so we decided to also add crab rolls, New England clam chowder, Cape Cod chips, and fresh squeezed lemonade. With all the pieces in place, we were ready to roll!",
"menu": " Shrimp & Chips (LA/OC Only) Shrimp & Chips (LA/OC Only) Fresh Squeezed Lemonade Fresh Squeezed Lemonade Fish & Chips (LA/OC Only) Fish & Chips (LA/OC Only) Clam Chowder (cup/pint) Clam Chowder (cup/pint) Lobsta Roll Fresh Maine Lobster on a toasted split top roll with Butter or seasoned mayo. Whoopie Pie Whoopie Pie Lobster Bisque (cup/pint) Lobster Bisque (cup/pint) Cape Cod Potato Chips Cape Cod Potato Chips Crab Roll Fresh Dungeness crab on a toasted split top roll with butter or seasoned mayo. French Fries (LA/OC Only) French Fries (LA/OC Only)",
"schedule": [
{
"location": "Vallejo & Front",
"address": "850 Front St. ",
"city": "San Francisco",
"state": "CA",
"latitude": 37.799164,
"longitude": -122.399971,
"times": {
"month": 4,
"day": 23,
"startTime": 11,
"endTime": 14
}
},
{
"location": "El Cerrito",
"address": "6159 Fairmount Ave.",
"city": "El Cerrito",
"state": "CA",
"latitude": 37.900505,
"longitude": -122.303207,
"times": {
"month": 4,
"day": 25,
"startTime": 17,
"endTime": 21
}
},
{
"location": "Fort Mason Center",
"address": "2 Marina Blvd",
"city": "San Francisco",
"state": "CA",
"latitude": 37.80573940449265,
"longitude": -122.43161905886075,