forked from doktorbro/jekyll-noita
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathAccelerators.json
More file actions
2530 lines (2530 loc) · 114 KB
/
Copy pathAccelerators.json
File metadata and controls
2530 lines (2530 loc) · 114 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Company":"AIA",
"Name":"AIA Accelerator",
"Index":"No",
"NAICS":"Insurance Carriers",
"NAICS Code":5241,
"NAICS Sector":52,
"Sector description":"Finance and Insurance",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, regularly?",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Company names of 1 cohort[s]",
"CVC data available":"Limited",
"Goal":"We are seeking up to 8 ambitious startup companies from across Asia with an innovative healthtech proposition",
"Areas of Interest":"We are seeking up to 8 ambitious startup companies from across Asia with an innovative healthtech proposition. If you are passionate about improving the lives of people through medical, lifestyle, and health monitoring technologies and believe you can bring in a new era of healthtech innovation, we want to hear from you! The types of teams we are looking for include:\n\n - remote medical solutions involving imaging, voice and sensor technology\n - technology-related products for healthcare providers\n - care-provider communication and coordination\n - client/patient monitoring solutions\n - predictive analytics\n - workflow and enterprise management",
"Partner":"Nest",
"Company HQ":"Hong Kong",
"Accelerator locations":"Hong Kong",
"Started":2014,
"Status":"Active",
"Last class":"",
"URL":"http://aia-accelerator.com/#",
"Sources":[],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Airbus Group SE",
"Name":"Airbus BizLab",
"Index":"S&P 350 Europe",
"NAICS":"Aircraft Manufacturing",
"NAICS Code":336411,
"NAICS Sector":33,
"Sector description":"Manufacturing",
"Self-description":"Accelerator",
"Term":"6 months",
"Cohort-based":"",
"Funding":"No",
"Equity":"No",
"Education":"Yes, coaches, experts, and mentors, prototyping, market access, ",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"No",
"CVC data available":"Yes",
"Goal":"...to speed up the transformation of ground-breaking ideas into valuable business propositions, all within an extended innovation eco-system. […] Airbus enhances its own access to – and knowledge of – the latest ideas, technologies and ways of working for the aerospace sector and beyond. Company employees, accustomed to working as part of a large enterprise, also learn from entrepreneurs adept at bringing new ideas to market as rapidly as possible.",
"Areas of Interest":"The projects will include the development of a product, a service, an application related to augmented reality, as well as data analysis and digitalisation which can be used in the aeronautical industry.",
"Partner":"No",
"Company HQ":"France",
"Accelerator locations":"Toulouse, France / Hamburg, Germany / Bangalore, India",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"https://airbus-bizlab.com/",
"Sources":["http://www.eturbonews.com/56303/airbus-launches-its-global-aerospace-business-accelerator-bizlab"],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-09-11 09:00:00"
},
{
"Company":"Anheuser Busch Inbev SA",
"Name":"Budweiser Dream Brewery",
"Index":"S&P 350 Europe",
"NAICS":"Breweries",
"NAICS Code":31212,
"NAICS Sector":31,
"Sector description":"Manufacturing",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, yearly",
"Funding":"$20K",
"Equity":"No",
"Education":"Yes, mentors",
"Office space":"",
"Pitch day":"",
"Cohort info":"No",
"CVC data available":"",
"Goal":"Budweiser Dream Brewery is a new platform to inspire and empower tech innovators to come up with and realize their creative ideas around beer consumption/shopping experience/responsible drinking.",
"Areas of Interest":"Anything that brings clear benefit to consumer in:\n\n- Beer Consumption Experience\n - Beer Shopping Experience\n - Responsible Drinking",
"Partner":"No",
"Company HQ":"Belgium",
"Accelerator locations":"Shanghai, China",
"Started":2015,
"Status":"Unclear",
"Last class":"",
"URL":"https://www.f6s.com/budweiserdreambrewery/about",
"Sources":[],
"Comment":"No dedicated homepage",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"AT&T Inc",
"Name":"AT&T Aspire Accelerator",
"Index":"S&P 500",
"NAICS":"Wireless Telecommunications Carriers (except Satellite)",
"NAICS Code":517210,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Accelerator",
"Term":"6 months",
"Cohort-based":"Yes, yearly",
"Funding":"$50K + $25K for expenses",
"Equity":"Up to 5%",
"Education":"Yes, mentors",
"Office space":"No",
"Pitch day":"Yes",
"Cohort info":"No",
"CVC data available":"Yes",
"Goal":"The Aspire Accelerator’s primary objective is to t and support innovative new products and services in education. The Aspire Accelerator’s Board of Advisors supports the program and shares our mission for social impact.",
"Areas of Interest":"A product or service that uses technology to support students’ educational and/or career success",
"Partner":"No",
"Company HQ":"USA",
"Accelerator locations":"Remote + San Francisco, USA",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"http://about.att.com/content/csr/home/people/at-t-aspire/mobilizing-learning/accelerator.html",
"Sources":["http://www.f6s.com/programs?filter=1&types[1]=accelerator&amount_default=0;5&fp_amount=0;5&equity_default=0;50&fp_equity=0;50"],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Axel Springer",
"Name":"Axel Springer Plug and Play Accelerator",
"Index":"No",
"NAICS":"Newspaper, Periodical, Book, and Directory Publishers",
"NAICS Code":5111,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, three times a year",
"Funding":"25K EUR",
"Equity":"5%",
"Education":"Yes, mentors and workshops",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Company names of 6 cohort[s]",
"CVC data available":"Yes",
"Goal":"Axel Springer Plug and Play Accelerator is a Berlin-based accelerator looking for trail-blazing digital entrepreneurs. We’re more than just an accelerator: we provide global opportunities from day one, through our international network in Europe and Silicon Valley.",
"Areas of Interest":"Axel Springer Plug and Play Accelerator is a Berlin-based accelerator looking for trail-blazing digital entrepreneurs. We are looking for innovative, technology and smart businesses.",
"Partner":"PlugAndPlay",
"Company HQ":"Germany",
"Accelerator locations":"Berlin, Germany",
"Started":2013,
"Status":"Active",
"Last class":"",
"URL":"http://www.axelspringerplugandplay.com/",
"Sources":["http://tech.eu/research/29/there-are-roughly-100-active-startup-accelerators-europe/"],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Bank of Ireland",
"Name":"Bank of Ireland Accelerator Programme",
"Index":"S&P 350 Europe",
"NAICS":"Commercial Banking",
"NAICS Code":52211,
"NAICS Sector":52,
"Sector description":"Finance and Insurance",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, regularly",
"Funding":"10K EUR",
"Equity":"3% shared by all startups",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Company names of 1 cohort[s]",
"CVC data available":"",
"Goal":"We aim to identify the 10 start-ups and early stage ventures that will benefit most from everything this exciting initiative can bring to an entrepreneur, his or her team and business.",
"Areas of Interest":"No focus",
"Partner":"StartPlanet",
"Company HQ":"Ireland",
"Accelerator locations":"Cork, Ireland",
"Started":2014,
"Status":"Inactive",
"Last class":2014,
"URL":"https://www.bankofireland.com/accelerator-programme/",
"Sources":[],
"Comment":"A not-for-profit fund shared by all startups (one startup succeeds, all win). Is it still alive?",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Barclays PLC",
"Name":"Barclays Accelerator",
"Index":"S&P 350 Europe",
"NAICS":"Commercial Banking",
"NAICS Code":52211,
"NAICS Sector":52,
"Sector description":"Finance and Insurance",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, yearly",
"Funding":"$20K",
"Equity":"6% to Techstars in the form of common stock, Barclays none",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"TechStars Portfolio + Company names of 1 cohort[s]",
"CVC data available":"Yes",
"Goal":"",
"Areas of Interest":"We're looking for technology-focused start-ups with a passion for innovation, lots of creativity and who share our revolutionary vision. We are open to businesses across all aspects of financial services.",
"Partner":"Techstars",
"Company HQ":"UK",
"Accelerator locations":"London, UK / New York, USA",
"Started":2014,
"Status":"Active",
"Last class":"",
"URL":"http://www.barclaysaccelerator.com/",
"Sources":["http://techcrunch.com/2014/08/25/corporate-accelerators-are-an-oxymoron/"],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Bayer AG",
"Name":"Grants4Apps Accelerator",
"Index":"S&P 350 Europe",
"NAICS":"Pharmaceutical Preparation Manufacturing",
"NAICS Code":325412,
"NAICS Sector":32,
"Sector description":"Manufacturing",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, yearly",
"Funding":"50K EUR",
"Equity":"<10% as an option in case of an exit",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Company names of 1 cohort[s]",
"CVC data available":"Yes",
"Goal":"We are looking for startups beyond the ideation phase developing health technology or IT solutions that can connect and empower patients or healthcare stakeholders – mobile apps, digital services, wearables, medical devices, software, hardware. Any integrated next-generation technology that supports adherence, diagnosis, therapy control or prevention is welcome to submit a nomination.",
"Areas of Interest":"We are looking for startups beyond the ideation phase developing health technology or IT solutions that can connect and empower patients or healthcare stakeholders – mobile apps, digital services, wearables, medical devices, software, hardware. Any integrated next-generation technology that supports adherence, diagnosis, therapy control or prevention is welcome to submit a nomination. We are particularly interested in solutions for patient compliance and digital therapies. Possible focus topics could cover:\n\n - Patients: empowerment, health checks, prevention\n - Therapies: compliance, digital therapies\n - Healthcare system: home health, lab work, clinical problem solving, clinical trials in connected healthcare\n - Animal health",
"Partner":"No",
"Company HQ":"Germany",
"Accelerator locations":"Berlin, Germany",
"Started":2014,
"Status":"Active",
"Last class":"",
"URL":"https://www.grants4apps.com/accelerator/#/history",
"Sources":[],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"BBC",
"Name":"BBC Worldwide Labs",
"Index":"No",
"NAICS":"Radio and Television Broadcasting",
"NAICS Code":5151,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Lab",
"Term":"6 months",
"Cohort-based":"Yes, twice a year",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"",
"Cohort info":"Company names of 3 cohort[s]",
"CVC data available":"Not listed",
"Goal":"Our goal is to strategically and commercially partner with and support the most innovative up-and-coming digital media companies that are helping to define the emerging digital landscape.",
"Areas of Interest":"Our goal is to strategically and commercially partner with and support the most innovative up-and-coming digital media companies that are helping to define the emerging digital landscape. We look at technology oriented companies, typically these are web-based or other software companies, but we will consider companies that don’t quite fit that mold as well.",
"Partner":"No",
"Company HQ":"UK",
"Accelerator locations":"London, UK / New York, USA",
"Started":2012,
"Status":"Active",
"Last class":"",
"URL":"http://www.bbcwlabs.com/",
"Sources":["http://tech.eu/research/29/there-are-roughly-100-active-startup-accelerators-europe/"],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"BNP Paribas",
"Name":"Innov&Connect",
"Index":"S&P 350 Europe",
"NAICS":"Commercial Banking",
"NAICS Code":52211,
"NAICS Sector":52,
"Sector description":"Finance and Insurance",
"Self-description":"Accelerator",
"Term":"6 months",
"Cohort-based":"Yes, yearly",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"No",
"CVC data available":"Yes",
"Goal":"Creates opportunities for win-win collaboration between startups and enterprises by drawing on the respective strengths of the participants",
"Areas of Interest":"B2B/Enterprise, Hardware, Mobile, Software, Software Development, Web",
"Partner":"No",
"Company HQ":"France",
"Accelerator locations":"Paris, France",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"http://www.innovandconnect.bnpparibas/en/accelerator/",
"Sources":["http://frenchweb.fr/bnp-paribas-lance-innovconnect-un-programme-pour-connecter-start-ups-et-eti/166178"],
"Comment":"",
"Created": "2015-08-01 09:00:00",
"Modified": "2015-08-01 09:00:00"
},
{
"Company":"Bonnier",
"Name":"Bonnier Accelerator",
"Index":"No",
"NAICS":"Newspaper, Periodical, Book, and Directory Publishers",
"NAICS Code":5111,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"",
"Funding":"Flexible + Potential follow-on investment",
"Equity":"Flexible",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Internal jury",
"Cohort info":"Partial [?] company names of 2 cohort[s]",
"CVC data available":"Not listed",
"Goal":"We are in the middle of a media revolution, and Bonnier stands at the center of it. Bonnier has been reinventing media for 200 years and continues to do so. This means we always need new ideas and new ways of doing things – and new people with a wide range of digital skills.",
"Areas of Interest":"We are looking for ideas that are scalable and use innovative new media formats. Our definition of media is quite broad – it would include the digital toys of app developer Toca Boca or the online gaming site Bingolotto.se, for example.",
"Partner":"No",
"Company HQ":"Sweden",
"Accelerator locations":"Stockholm, Sweden",
"Started":2013,
"Status":"Inactive",
"Last class":"",
"URL":"http://www.bonnieraccelerator.com",
"Sources":["http://tech.eu/research/29/there-are-roughly-100-active-startup-accelerators-europe/"],
"Comment":"Not active anymore (last cohort in 2014)",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Cisco Systems Inc",
"Name":"Cisco Entrepreneurs in Residence",
"Index":"S&P 500",
"NAICS":"Other Communications Equipment Manufacturing",
"NAICS Code":334290,
"NAICS Sector":33,
"Sector description":"Manufacturing",
"Self-description":"Startup incubation program",
"Term":"6 months",
"Cohort-based":"Yes, regularly",
"Funding":"Flexible",
"Equity":"",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Company names of 2 cohort[s]",
"CVC data available":"Yes",
"Goal":"Cisco Entrepreneurs in Residence (Cisco EIR) is designed to support early-stage entrepreneurs working on the next big ideas in the Internet of Things/Everything (IoT/IoE), enterprise security, cloud computing, Big Data/analytics, Smart Cities and other areas strategic to Cisco.",
"Areas of Interest":"- Internet of Things/Everything (IoT/IoE)\n - Enterprise security\n - Cloud computing\n - Big Data/analytics\n - Smart Cities\n - Other areas strategic to Cisco",
"Partner":"No",
"Company HQ":"USA",
"Accelerator locations":"San Jose, USA / Vienna, Austria",
"Started":2013,
"Status":"Active",
"Last class":"",
"URL":"https://eir.cisco.com/",
"Sources":[],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Citigroup Inc",
"Name":"Citi Accelerator",
"Index":"S&P 500",
"NAICS":"Commercial Banking",
"NAICS Code":522110,
"NAICS Sector":52,
"Sector description":"Finance and Insurance",
"Self-description":"Accelerator",
"Term":"4 months",
"Cohort-based":"Yes, yearly",
"Funding":"",
"Equity":"",
"Education":"Yes, mentors",
"Office space":"",
"Pitch day":"",
"Cohort info":"No",
"CVC data available":"",
"Goal":"The Accelerator program will allow startup companies to apply from all areas within financial technology, such as payments, markets, trading and analysis.",
"Areas of Interest":"",
"Partner":"No",
"Company HQ":"USA",
"Accelerator locations":"Tel Aviv, Israel",
"Started":2013,
"Status":"Unclear",
"Last class":"",
"URL":"http://www.citigroup.com/citi/news/2013/130802a.htm",
"Sources":["http://bankinnovation.net/2014/06/citi-expands-its-innovation-ventures-in-israel/"],
"Comment":"Probably already closed and replaced with a new initiative (likely Nov 14). One round took place according to the Bankinnovation article.",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Citigroup Inc",
"Name":"Citi Mobile Challenge",
"Index":"S&P 500",
"NAICS":"Commercial Banking",
"NAICS Code":522110,
"NAICS Sector":52,
"Sector description":"Finance and Insurance",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, regularly?",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors",
"Office space":"No",
"Pitch day":"Yes",
"Cohort info":"No",
"CVC data available":"",
"Goal":"The accelerator program is aimed to inspire developers to reimagine mobile banking.",
"Areas of Interest":"Banking, Fin-tech",
"Partner":"No",
"Company HQ":"USA",
"Accelerator locations":"Virtual",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"http://www.citimobilechallenge.com/",
"Sources":["http://economictimes.indiatimes.com/small-biz/startups/citigroup-launches-corporate-accelerator-program-for-apac-to-engage-with-startups/articleshow/48696768.cms"],
"Comment":"",
"Created": "2015-08-29 09:00:00",
"Modified": "2015-08-29 09:00:00"
},
{
"Company":"Citrix Systems Inc",
"Name":"Citrix Startup Accelerator",
"Index":"S&P 500",
"NAICS":"Software Publishers",
"NAICS Code":511210,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, regularly (freq.?)",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors and training",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Company names of 1 cohort[s]",
"CVC data available":"Yes",
"Goal":"",
"Areas of Interest":"The focus of our Santa Barbara Innovators Program is on earlier stage businesses focused on solving business problems and making a difference for employees globally.",
"Partner":"No",
"Company HQ":"USA",
"Accelerator locations":"Santa Clara, USA / Raleigh, USA / Bangalore, India",
"Started":2010,
"Status":"Active",
"Last class":"",
"URL":"http://citrixstartupaccelerator.com/",
"Sources":["http://techcrunch.com/2014/08/25/corporate-accelerators-are-an-oxymoron/"],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Coca-Cola Co",
"Name":"The Bridge",
"Index":"S&P 500",
"NAICS":"Soft Drink Manufacturing",
"NAICS Code":312111,
"NAICS Sector":31,
"Sector description":"Manufacturing",
"Self-description":"Commercialization Program",
"Term":"6 months",
"Cohort-based":"Yes, regularly?",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors and training",
"Office space":", Likely",
"Pitch day":"",
"Cohort info":"Company names of 1 cohort[s]",
"CVC data available":"Limited",
"Goal":"",
"Areas of Interest":"The Bridge startups range from early stage to growth startups. They offer software solutions that are ready to commercialize and that fit one of five core themes:\n\n - Consumer Engagement\n - Consumer Retail\n - Supply Chain\n - Marketing Innovation\n - Health & Wellness. ",
"Partner":"No",
"Company HQ":"USA",
"Accelerator locations":"Tel Aviv, Israel",
"Started":2013,
"Status":"Active",
"Last class":"",
"URL":"http://www.thebridgebycocacola.com/",
"Sources":["http://www.f6s.com/programs?filter=1&types[1]=accelerator&amount_default=0;5&fp_amount=0;5&equity_default=0;50&fp_equity=0;50"],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"DBS Group Holdings Ltd",
"Name":"DBS Accelerator",
"Index":"No",
"NAICS":"Commercial Banking",
"NAICS Code":52211,
"NAICS Sector":52,
"Sector description":"Finance and Insurance",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, regularly?",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"No",
"CVC data available":"",
"Goal":"We are seeking up to 8 ambitious startup companies from across the globe with an innovative FinTech proposition.",
"Areas of Interest":"The types of ideas we are looking for, but not limited to:\n\n - Artificial Intelligence\n - Big data and analytics, where large amounts of complex data can be processed in a second\n - Banking infrastructure, workflow and operational management\n - Mobility and payments\n - Risk monitoring and management\n - Security\n - SME Banking Solution",
"Partner":"Nest",
"Company HQ":"Singapore",
"Accelerator locations":"Hong Kong",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"https://www.dbs-accelerator.com/",
"Sources":[],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Deloitte",
"Name":"Beta-i",
"Index":"No",
"NAICS":"Accounting, Tax Preparation, Bookkeeping, and Payroll Services",
"NAICS Code":5412,
"NAICS Sector":54,
"Sector description":"Professional, Scientific, and Technical Services",
"Self-description":"Accelerator",
"Term":"2 months",
"Cohort-based":"Yes, regularly?",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"No",
"CVC data available":"",
"Goal":"Deloitte Digital Disruptors is a key ingredient of Deloitte Centre for Disruption (C4D) Innovation Strategy and in the concept of our vertical integration approach. With this program we are connecting with exciting startups while disrupting our clients most demanding needs.",
"Areas of Interest":"Insurance industry",
"Partner":"Beta-i",
"Company HQ":"United Kingdom",
"Accelerator locations":"Lisbon, Portugal",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"http://www.deloittedigitaldisruptors.com/",
"Sources":[],
"Comment":"",
"Created": "2015-09-03 09:00:00",
"Modified": "2015-09-03 09:00:00"
},
{
"Company":"Deutsche Telekom AG",
"Name":"hub:raum",
"Index":"S&P 350 Europe",
"NAICS":"Cellular and Other Wireless Telecommunications",
"NAICS Code":513322,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Turbo accelerator",
"Term":"8 days",
"Cohort-based":"Yes, yearly",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors and training",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Company names of 1 cohort[s]",
"CVC data available":"Yes",
"Goal":"Therefore hub:raum manages your connection to one of the world’s leading integrated telecommunications companies. In areas in which your team excels, we let you focus; in areas in which you need help, we support. Just as it should be.",
"Areas of Interest":"- Internet of things\n - Cyber security\n - Health\n - Cloud based business solutions\n - Customer analytics & big data\n - Mobile payment & commerce\n - Tv, video & multi screen\n - Telecommunication & connectivity",
"Partner":"Betahaus",
"Company HQ":"Germany",
"Accelerator locations":"Krakow, Poland",
"Started":2012,
"Status":"Active",
"Last class":"",
"URL":"https://www.hubraum.com/en/accelerator",
"Sources":["https://www.innovationleader.com/tracking-the-corporate-supported-startup-accelerators/"],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"dpa",
"Name":"next media accelerator",
"Index":"No",
"NAICS":"News Syndicates",
"NAICS Code":519110,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Accelerator",
"Term":"6 months",
"Cohort-based":"Yes, regularly",
"Funding":"0-50K EUR",
"Equity":"3-10%",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"",
"Cohort info":"No",
"CVC data available":"Not listed",
"Goal":"We are building an Accelerator. *We* means basically the German Press Agency dpa, as we are setting it up right now. Our main objective is not to become a player in the VC business. In fact we love news, we love journalism and we really want them to succeed in the digital world. In order to drive change in the media business we want to launch this accelerator.",
"Areas of Interest":"Your company is either about creating information and making it a valuable experiences for your users or your product helps publishers and broadcaster to create, evaluate, design, transfer, analyse, verificate or whatever else great thing with content.",
"Partner":"",
"Company HQ":"Germany",
"Accelerator locations":"Hamburg, Germany",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"http://nextmediaaccelerator.io/",
"Sources":[],
"Comment":"Not yet launched",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"DPD UK",
"Name":"DPD Last Mile labs",
"Index":"No",
"NAICS":"Couriers and Express Delivery Services",
"NAICS Code":492110,
"NAICS Sector":49,
"Sector description":"Transportation and Warehousing",
"Self-description":"Accelerator",
"Term":"2 months",
"Cohort-based":"Yes, yearly",
"Funding":"12.5K GBP + Potentially 100K GBP follow-on investment",
"Equity":"Flexible",
"Education":"Yes, mentors from DPD and L Marks",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Company names of 1 cohort[s]",
"CVC data available":"Parent not listed",
"Goal":"The Last Mile is essential to today's shopping experience. It is also extremely challenging for delivery companies. Technology is crucial to navigating the challenge and DPD are leading the way with innovative services like, Predict, and Follow My Parcel. Now they're looking to partner with startups, giving them unparalleled access to their data sets and APIs, to enhance the Last Mile experience and push the science of delivery to new heights!",
"Areas of Interest":"Can you revolutionise the parcel delivery experience of DPD customers? If your business is focused on catapulting the courier delivery experience into the future then Last Mile Labs is perfect for you, no matter what stage your business is at or where you're based.\n\n - Doorstep smiles: Develop the world's best final mile delivery experience\n - Closely connected: Using the parcel receiver's data, develop an interactive interface that allows the DPD driver and receiver to communicate in real time\n - Operational efficiency: Using historic and current delivery data plus predictive patterns identify cost savings and efficiency opportunities within the DPD operation\n - Wild card: Any innovative product or solution that enhances the last mile delivery experience and which isn't covered in the other categories",
"Partner":"Lmarks",
"Company HQ":"UK",
"Accelerator locations":"London, UK",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"http://www.lmarks.com/lastmilelabs",
"Sources":["http://www.f6s.com/programs?filter=1&types[1]=accelerator&amount_default=0;5&fp_amount=0;5&equity_default=0;50&fp_equity=0;50"],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"E.ON SE",
"Name":":agile accelerator",
"Index":"S&P 350 Europe",
"NAICS":"Hydroelectric Power Generation",
"NAICS Code":221111,
"NAICS Sector":22,
"Sector description":"Utilities",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, quarterly",
"Funding":"10-20K EUR",
"Equity":"",
"Education":"Yes, consulting and training",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Yes, partially",
"CVC data available":"TBC",
"Goal":"We want to develop new business ideas and bring them to life using our knowledge from the energy sector. That’s what :agile is all about!",
"Areas of Interest":"Energy-related ideas",
"Partner":"No",
"Company HQ":"Germany",
"Accelerator locations":"Berlin, Germany / Düsseldorf, Germany",
"Started":2014,
"Status":"Active",
"Last class":"",
"URL":"http://eon-agile.com/",
"Sources":[],
"Comment":"Former hybrid / internal Accelerator approach.",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Ernst & Young",
"Name":"EY Startup Challenge",
"Index":"No",
"NAICS":"Management Consulting Services",
"NAICS Code":54161,
"NAICS Sector":54,
"Sector description":"Professional, Scientific, and Technical Services",
"Self-description":"Challenge",
"Term":"2 months",
"Cohort-based":"Yes, yearly",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"No",
"Cohort info":"Company names of 1 cohort[s]",
"CVC data available":"",
"Goal":"The EY Startup Challenge brings together EY's leading clients with high-growth startups to explore solutions to pressing business problems. The objective is to collaboratively explore and validate different applications of strong business value for the startups’ technologies that address a clear business problem.",
"Areas of Interest":"As people, activities and objects become increasingly connected, data is now the currency of business. The scope to derive insight from data, to gain foresight, and enable better decision-making, has exponentially increased:\n\n - Insights into who your customers are, what they want and why, is a rapidly-rising strategic imperative - but given the sheer wealth of data now available, what is the potential for foresight into their evolving behaviours, demands and expectations?\n - Insights into who your suppliers are, and the unpredictable global environments in which the supply chain operates, is of increasing importance to businesses - so how could innovative technology provide greater visibility to help businesses avoid shocks and minimise risk?",
"Partner":"No",
"Company HQ":"USA / London office",
"Accelerator locations":"London, UK",
"Started":2014,
"Status":"Active",
"Last class":"",
"URL":"https://webforms.ey.com/UK/en/Services/Specialty-Services/EY-Startup-Challenge#3",
"Sources":[],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Gakken",
"Name":"GAKKEN Accelerator Program",
"Index":"No",
"NAICS":"Book Publishers",
"NAICS Code":51113,
"NAICS Sector":51,
"Sector description":"Educational Services",
"Self-description":"Accelerator",
"Term":"4 months",
"Cohort-based":"Yes, yearly",
"Funding":"100,000 JPY (price money)",
"Equity":"",
"Education":"",
"Office space":"",
"Pitch day":"",
"Cohort info":"No",
"CVC data available":"No",
"Goal":"GAKKEN Accelerator is designed to screen start-up teams/entrepreneurs (including small/middle companies and freelancers) who have a will to make innovation happen in publishing/media businesses, books/magazines, contents businesses and education businesses (also related business domains).",
"Areas of Interest": "Publishing/media, Books/magazines, Informational contents, Education",
"Partner":"01Booster",
"Company HQ":"Japan",
"Accelerator locations":"Tokyo, Japan",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"http://01booster.com/01blog/10310",
"Sources":[],
"Comment":"",
"Created": "2015-10-03 09:00:00",
"Modified": "2015-10-03 09:00:00"
},
{
"Company":"Google",
"Name":"Google Launchpad Accelerator",
"Index":"S&P 500",
"NAICS":"Internet Publishing and Broadcasting and Web Search Portals",
"NAICS Code":519130,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Accelerator",
"Term":"6 months",
"Cohort-based":"Yes, twice a year",
"Funding":"Up to $50k",
"Equity":"No",
"Education":"Yes, mentors and 2 weeks of training",
"Office space":"No",
"Pitch day":"Yes",
"Cohort info":"No",
"CVC data available":"",
"Goal":"There are a large number of great ideas around the world poised to make a positive impact. The Google Launchpad Accelerator aims to empower founders with these ideas by supporting the development of their apps through mentorship and equity-free funding.",
"Areas of Interest": "Mobile app startups",
"Partner":"No",
"Company HQ":"USA",
"Accelerator locations":"Sao Paulo, Brazil / Bangalore, India / Jakarta, Indonesia",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"https://developers.google.com/startups/accelerator/",
"Sources":[],
"Comment":"",
"Created": "2016-01-17 09:00:00",
"Modified": "2016-01-17 09:00:00"
},
{
"Company":"IBM",
"Name":"IBM Alpha Zone",
"Index":"S&P 500",
"NAICS":"Software Publishers",
"NAICS Code":511210,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Accelerator",
"Term":"20 weeks",
"Cohort-based":"Yes, three times a year",
"Funding":"No",
"Equity":"No",
"Education":"Yes, mentors and architecture design consulting and support",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Yes",
"CVC data available":"",
"Goal":"The program focuses on post Seed & Round A funded companies with the aim to create long term Technology and Business partnership with IBM worldwide.",
"Areas of Interest":"Cloud, Big Data & Analytics, Mobile, Internet of Things, Cognitive Computing Technologies, Machine Learning, AI, Healthcare, Retail, Travel & Transportation, Banking, Energy & Utilities, TelCo, Media",
"Partner":"No",
"Company HQ":"USA",
"Accelerator locations":"Israel",
"Started":2014,
"Status":"Active",
"Last class":"2016",
"URL":"http://www.ibmalphazone.com/",
"Sources":[],
"Comment":"",
"Created": "2016-12-20 09:00:00",
"Modified": "2016-12-20 09:00:00"
},
{
"Company":"ImmobilienScout24",
"Name":"You Is Now",
"Index":"No",
"NAICS":"Internet Publishing and Broadcasting and Web Search Portals",
"NAICS Code":519130,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, twice a year",
"Funding":"15K EUR",
"Equity":"No",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"Company names of 1 cohort[s]",
"CVC data available":"Not listed",
"Goal":"Based on the background of Scout24 we now support internet startups and founders from areas such as real estate and mobility.",
"Areas of Interest":"Early stage startups related to real estate or mobility.",
"Partner":"No",
"Company HQ":"Germany",
"Accelerator locations":"Munich, Germany",
"Started":2010,
"Status":"Active",
"Last class":"",
"URL":"http://www.youisnow.com/",
"Sources":[],
"Comment":"",
"Created": "2015-06-17 09:00:00",
"Modified": "2015-06-17 09:00:00"
},
{
"Company":"Illumina",
"Name":"Illumina Accelerator",
"Index":"",
"NAICS":"Research and Development in Biotechnology",
"NAICS Code":541711,
"NAICS Sector":54,
"Sector description":"Professional, Scientific, and Technical Services",
"Self-description":"Accelerator",
"Term":"6 months",
"Cohort-based":"Yes, twice a year",
"Funding":"Up to 100k USD (optional)",
"Equity":"10% (optional)",
"Education":"Yes, mentors, instrument access",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"No",
"CVC data available":"Yes",
"Goal":"Illumina Accelerator is the world’s first business accelerator focused solely on creating an innovation ecosystem for the genomics industry. It provides select startups with seed investment, business guidance, access to Illumina’s sequencing systems and reagents, and fully operational lab space.",
"Areas of Interest":"Genomics research",
"Partner":"No",
"Company HQ":"USA",
"Accelerator locations":"San Francisco, USA",
"Started":2016,
"Status":"Active",
"Last class":"",
"URL":"http://www.illumina.com/science/accelerator.html",
"Sources":[],
"Comment":"",
"Created": "2016-03-13 09:00:00",
"Modified": "2016-03-13 09:00:00"
},
{
"Company":"Infinity",
"Name":"Accelerator",
"Index":"No",
"NAICS":"Automobile Manufacturing",
"NAICS Code":336111,
"NAICS Sector":33,
"Sector description":"Manufacturing",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, regularly?",
"Funding":"No",
"Equity":"No, but Infinity and Nest are being granted preferred investment rights",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"Yes",
"Cohort info":"No",
"CVC data available":"",
"Goal":"We are seeking up to 8 ambitious startup companies from across the globe with an innovative Smart Cities / IoT proposition.",
"Areas of Interest":"Internet of Things, Smart Cities",
"Partner":"Nest",
"Company HQ":"Japan",
"Accelerator locations":"Hong Kong",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"http://www.infiniti-accelerator.com",
"Sources":[],
"Comment":"",
"Created": "2015-08-01 09:00:00",
"Modified": "2015-08-01 09:00:00"
},
{
"Company":"ING Group",
"Name":"Innovation Studio",
"Index":"S&P 350 Europe",
"NAICS":"Commercial Banking",
"NAICS Code":52211,
"NAICS Sector":52,
"Sector description":"Finance and Insurance",
"Self-description":"Accelerator",
"Term":"6 months",
"Cohort-based":"Yes, regularly?",
"Funding":"Up to 50K EUR",
"Equity":"Flexible",
"Education":"Yes, mentors",
"Office space":"Yes",
"Pitch day":"",
"Cohort info":"No",
"CVC data available":"No",
"Goal":"A safe environment where startups and ING teams can quickly experiment with new business models.",
"Areas of Interest":"Fintech",
"Partner":"",
"Company HQ":"Netherlands",
"Accelerator locations":"Amsterdam, Netherlands",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"http://www.innovationstudio.ninja/index.html",
"Sources":[],
"Comment":"",
"Created": "2015-07-22 09:00:00",
"Modified": "2015-07-22 09:00:00"
},
{
"Company":"Ingram Content Group",
"Name":"1440",
"Index":"",
"NAICS":"Book Pubishers",
"NAICS Code":511130,
"NAICS Sector":51,
"Sector description":"Information",
"Self-description":"Accelerator",
"Term":"3 months",
"Cohort-based":"Yes, regularly?",
"Funding":"$30K",
"Equity":"10%",
"Education":"Yes, mentors",
"Office space":"",
"Pitch day":"",
"Cohort info":"No",
"CVC data available":"No",
"Goal":"We're looking for the companies that are changing today's publishing world by changing the way that people interact with content.",
"Areas of Interest":"Publishing, Content",
"Partner":"Jumpstart Foundry",
"Company HQ":"USA",
"Accelerator locations":"",
"Started":2015,
"Status":"Active",
"Last class":"",
"URL":"http://www.fourteenforty.co/",
"Sources":[],
"Comment":"",
"Created": "2015-07-22 09:00:00",
"Modified": "2015-07-22 09:00:00"
},
{
"Company":"Intel Corp",
"Name":"Intel Education Accelerator",
"Index":"S&P 500",
"NAICS":"Semiconductor and Related Device Manufacturing",
"NAICS Code":334413,
"NAICS Sector":33,