crunchbase-ruby-library 0.1.7 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +66 -0
- data/.rubocop_todo.yml +47 -0
- data/.travis.yml +12 -0
- data/Gemfile +4 -0
- data/README.md +44 -54
- data/Rakefile +4 -1
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/crunchbase-ruby-library.gemspec +15 -12
- data/lib/crunchbase.rb +12 -3
- data/lib/crunchbase/api.rb +110 -102
- data/lib/crunchbase/client.rb +50 -0
- data/lib/crunchbase/exception.rb +13 -11
- data/lib/crunchbase/model.rb +50 -48
- data/lib/crunchbase/model/acquired_by.rb +23 -20
- data/lib/crunchbase/model/acquiree.rb +2 -1
- data/lib/crunchbase/model/acquirer.rb +2 -1
- data/lib/crunchbase/model/acquisition.rb +16 -19
- data/lib/crunchbase/model/address.rb +4 -6
- data/lib/crunchbase/model/advisory_role.rb +2 -2
- data/lib/crunchbase/model/board_members_and_advisor.rb +10 -9
- data/lib/crunchbase/model/category.rb +6 -7
- data/lib/crunchbase/model/competitor.rb +3 -2
- data/lib/crunchbase/model/current_team.rb +7 -11
- data/lib/crunchbase/model/customer.rb +3 -2
- data/lib/crunchbase/model/degree.rb +4 -5
- data/lib/crunchbase/model/entity.rb +98 -108
- data/lib/crunchbase/model/error.rb +3 -4
- data/lib/crunchbase/model/featured_team.rb +19 -0
- data/lib/crunchbase/model/founded_company.rb +2 -3
- data/lib/crunchbase/model/founder.rb +3 -4
- data/lib/crunchbase/model/fund.rb +8 -11
- data/lib/crunchbase/model/fund_raise.rb +7 -8
- data/lib/crunchbase/model/funding_round.rb +29 -24
- data/lib/crunchbase/model/headquarter.rb +2 -1
- data/lib/crunchbase/model/image.rb +6 -7
- data/lib/crunchbase/model/investment.rb +20 -27
- data/lib/crunchbase/model/investor.rb +6 -7
- data/lib/crunchbase/model/ipo.rb +12 -12
- data/lib/crunchbase/model/job.rb +11 -10
- data/lib/crunchbase/model/location.rb +20 -11
- data/lib/crunchbase/model/member.rb +3 -4
- data/lib/crunchbase/model/membership.rb +7 -8
- data/lib/crunchbase/model/new.rb +5 -6
- data/lib/crunchbase/model/office.rb +3 -4
- data/lib/crunchbase/model/organization.rb +39 -38
- data/lib/crunchbase/model/organization_summary.rb +7 -8
- data/lib/crunchbase/model/owned_by.rb +4 -5
- data/lib/crunchbase/model/parent_location.rb +3 -3
- data/lib/crunchbase/model/past_team.rb +7 -11
- data/lib/crunchbase/model/person.rb +53 -46
- data/lib/crunchbase/model/person_summary.rb +13 -14
- data/lib/crunchbase/model/primary_affiliation.rb +6 -6
- data/lib/crunchbase/model/primary_image.rb +3 -3
- data/lib/crunchbase/model/primary_location.rb +8 -7
- data/lib/crunchbase/model/product.rb +14 -13
- data/lib/crunchbase/model/product_summary.rb +4 -5
- data/lib/crunchbase/model/school.rb +3 -2
- data/lib/crunchbase/model/search.rb +39 -40
- data/lib/crunchbase/model/search_result.rb +7 -6
- data/lib/crunchbase/model/simple_organization.rb +9 -10
- data/lib/crunchbase/model/sub_organization.rb +3 -4
- data/lib/crunchbase/model/video.rb +4 -5
- data/lib/crunchbase/model/website.rb +7 -11
- data/lib/crunchbase/request.rb +8 -0
- data/lib/crunchbase/request/client.rb +69 -0
- data/lib/crunchbase/version.rb +2 -1
- data/spec/crunchbase.yml.example +2 -2
- data/spec/crunchbase/client_spec.rb +25 -0
- data/spec/crunchbase/data/board_members_and_advisors/facebook.json +462 -0
- data/spec/crunchbase/data/categories/facebook.json +67 -0
- data/spec/crunchbase/data/current_team/facebook.json +4335 -0
- data/spec/crunchbase/data/featured_team/facebook.json +286 -0
- data/spec/crunchbase/data/funding_rounds/37bd05f961af726ba3c1b279da842805.json +484 -0
- data/spec/crunchbase/data/funding_rounds/facebook.json +2049 -0
- data/spec/crunchbase/data/headquarters/facebook.json +50 -0
- data/spec/crunchbase/data/investors/facebook.json +776 -0
- data/spec/crunchbase/data/news/facebook.json +1426 -0
- data/spec/crunchbase/data/news/facebook_2.json +1426 -0
- data/spec/crunchbase/data/offices/facebook.json +50 -0
- data/spec/crunchbase/data/organizations/crunchbase.json +2845 -0
- data/spec/crunchbase/data/organizations/ekohe.json +654 -0
- data/spec/crunchbase/data/organizations/facebook-without-relationships.json +45 -0
- data/spec/crunchbase/data/organizations/facebook.json +6723 -0
- data/spec/crunchbase/data/organizations/mx-media-llc.json +7 -0
- data/spec/crunchbase/data/past_team/facebook.json +4336 -0
- data/spec/crunchbase/data/people/facebook_founders.json +148 -0
- data/spec/crunchbase/data/people/mark-zuckerberg.json +2602 -0
- data/spec/crunchbase/data/websites/facebook.json +74 -0
- data/spec/crunchbase/model/board_members_and_advisor_spec.rb +39 -11
- data/spec/crunchbase/model/category_spec.rb +47 -0
- data/spec/crunchbase/model/current_team_spec.rb +50 -0
- data/spec/crunchbase/model/featured_team_spec.rb +40 -0
- data/spec/crunchbase/model/founders_spec.rb +49 -0
- data/spec/crunchbase/model/fund_raise_spec.rb +4 -24
- data/spec/crunchbase/model/funding_round_spec.rb +75 -32
- data/spec/crunchbase/model/headquarter_spec.rb +37 -0
- data/spec/crunchbase/model/investment_spec.rb +4 -15
- data/spec/crunchbase/model/investor_spec.rb +37 -0
- data/spec/crunchbase/model/new_spec.rb +86 -0
- data/spec/crunchbase/model/office_spec.rb +29 -9
- data/spec/crunchbase/model/organization_spec.rb +160 -34
- data/spec/crunchbase/model/past_team_spec.rb +36 -14
- data/spec/crunchbase/model/person_spec.rb +21 -19
- data/spec/crunchbase/model/product_spec.rb +4 -31
- data/spec/crunchbase/model/search_spec.rb +25 -49
- data/spec/crunchbase/model/website_spec.rb +36 -9
- data/spec/crunchbase/support/api_helper.rb +19 -0
- data/spec/spec_helper.rb +14 -4
- metadata +103 -6
@@ -0,0 +1,148 @@
|
|
1
|
+
{
|
2
|
+
"metadata":
|
3
|
+
{
|
4
|
+
"version": 31,
|
5
|
+
"www_path_prefix": "https://www.crunchbase.com",
|
6
|
+
"api_path_prefix": "https://api.crunchbase.com",
|
7
|
+
"image_path_prefix": "http://public.crunchbase.com/t_api_images/"
|
8
|
+
},
|
9
|
+
"data":
|
10
|
+
{
|
11
|
+
"paging":
|
12
|
+
{
|
13
|
+
"total_items": 5,
|
14
|
+
"number_of_pages": 1,
|
15
|
+
"current_page": 1,
|
16
|
+
"sort_order": "created_at DESC",
|
17
|
+
"items_per_page": 100,
|
18
|
+
"next_page_url": null,
|
19
|
+
"prev_page_url": null,
|
20
|
+
"key_set_url": null,
|
21
|
+
"collection_url": "https://api.crunchbase.com/v3.1/organizations/facebook/founders",
|
22
|
+
"updated_since": null
|
23
|
+
},
|
24
|
+
"items": [
|
25
|
+
{
|
26
|
+
"type": "Person",
|
27
|
+
"uuid": "084aaa0707951fe89c4698bbeb02cd64",
|
28
|
+
"properties":
|
29
|
+
{
|
30
|
+
"permalink": "dustin-moskovitz",
|
31
|
+
"api_path": "people/dustin-moskovitz",
|
32
|
+
"web_path": "person/dustin-moskovitz",
|
33
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/dustin-moskovitz",
|
34
|
+
"first_name": "Dustin",
|
35
|
+
"last_name": "Moskovitz",
|
36
|
+
"gender": "Male",
|
37
|
+
"also_known_as": null,
|
38
|
+
"bio": "Dustin Moskovitz is an American internet entrepreneur who co-founded the social networking website Facebook along with Mark Zuckerberg, Eduardo Saverin, Andrew McCollum and Chris Hughes.\r\n\r\nIn 2008, he left Facebook to co-found Asana with Justin Rosenstein.",
|
39
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1487977138/xrboecldujx1ey7ejmun.png",
|
40
|
+
"role_investor": true,
|
41
|
+
"born_on": "1984-05-22",
|
42
|
+
"born_on_trust_code": 7,
|
43
|
+
"died_on": null,
|
44
|
+
"died_on_trust_code": null,
|
45
|
+
"created_at": 1180156505,
|
46
|
+
"updated_at": 1508608110
|
47
|
+
}
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"type": "Person",
|
51
|
+
"uuid": "5ac8203a540aab6c46ee84463834fe72",
|
52
|
+
"properties":
|
53
|
+
{
|
54
|
+
"permalink": "chris-hughes",
|
55
|
+
"api_path": "people/chris-hughes",
|
56
|
+
"web_path": "person/chris-hughes",
|
57
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/chris-hughes",
|
58
|
+
"first_name": "Chris",
|
59
|
+
"last_name": "Hughes",
|
60
|
+
"gender": "Male",
|
61
|
+
"also_known_as": null,
|
62
|
+
"bio": "Chris Hughes, an original Co-founder of [Facebook](http://www.crunchbase.com/person/chris-hughes/), is a founder of [Jumo](/organization/jumo), a startup that aims to use the social web to foster long-term relationships of responsibility between individuals and organizations working to change the world. \r\nPrior to founding Jumo, Chris worked as an Entrepreneur in Residence (EIR) at [General Catalyst Partners](http://www.crunchbase.com/financial-organization/general-catalyst-partners) in 2009. \r\n\r\n\r\nHughes served as developer of President Obama's [campaign website](http://my.barackobama.com) and social media campaign for the 2008 Presidential election.",
|
63
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1488569999/anozlgz8nl3fkqcbqg7n.png",
|
64
|
+
"role_investor": true,
|
65
|
+
"born_on": "1983-11-26",
|
66
|
+
"born_on_trust_code": 7,
|
67
|
+
"died_on": null,
|
68
|
+
"died_on_trust_code": null,
|
69
|
+
"created_at": 1180156647,
|
70
|
+
"updated_at": 1507988838
|
71
|
+
}
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"type": "Person",
|
75
|
+
"uuid": "76742b37a375321b1ddcde1c929894fa",
|
76
|
+
"properties":
|
77
|
+
{
|
78
|
+
"permalink": "andrew-mccollum",
|
79
|
+
"api_path": "people/andrew-mccollum",
|
80
|
+
"web_path": "person/andrew-mccollum",
|
81
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/andrew-mccollum",
|
82
|
+
"first_name": "Andrew",
|
83
|
+
"last_name": "McCollum",
|
84
|
+
"gender": "Male",
|
85
|
+
"also_known_as": null,
|
86
|
+
"bio": "Andrew joined Flybridge as an EIR in May 2011. \r\n\r\nPreviously, he was part of the founding team of Facebook, the world's largest social network, where he contributed to numerous aspects of the core product and architecture. \r\n\r\nSince Facebook, Andrew has also been part of startups covering such disparate areas as social file sharing (Wirehog), computational finance (Babel Research), and online resume creation (JobSpice). \r\n\r\nAndrew received his A.B. in Computer Science and Ed.M. in Human Development and Psychology, both from Harvard University.",
|
87
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1488570133/ctw95dlpt7conikukdc8.png",
|
88
|
+
"role_investor": true,
|
89
|
+
"born_on": null,
|
90
|
+
"born_on_trust_code": null,
|
91
|
+
"died_on": null,
|
92
|
+
"died_on_trust_code": null,
|
93
|
+
"created_at": 1249986631,
|
94
|
+
"updated_at": 1492410550
|
95
|
+
}
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"type": "Person",
|
99
|
+
"uuid": "a01b8d46d31133337c34aa3ae9c03f22",
|
100
|
+
"properties":
|
101
|
+
{
|
102
|
+
"permalink": "mark-zuckerberg",
|
103
|
+
"api_path": "people/mark-zuckerberg",
|
104
|
+
"web_path": "person/mark-zuckerberg",
|
105
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg",
|
106
|
+
"first_name": "Mark",
|
107
|
+
"last_name": "Zuckerberg",
|
108
|
+
"gender": "Male",
|
109
|
+
"also_known_as": [
|
110
|
+
"Zuck"
|
111
|
+
],
|
112
|
+
"bio": "Mark Zuckerberg is the founder and CEO of Facebook, which he started in his college dorm room in 2004 with roomates Dustin Moskovitz and Chris Hughes and from New York.\r\n\r\nZuckerberg is responsible for setting the overall direction and product strategy for the company. He leads the design of Facebook's service and development of its core technology and infrastructure. Mark studied computer science at Harvard University before moving the company to Palo Alto, California.\r\n\r\nEarlier in life, Zuckerberg developed a music recommendation system called Synapse and a peer-to-peer client called Wirehog. However, he abandoned both to pursue new projects.\r\n\r\nZuckerberg attended Harvard University and studied computer science before founding Facebook.\r\n\r\nWhile at Harvard, Zuckerberg created Facemash, a website that compared students' dorm photos side-by-side in a fashion similar to HOT or NOT. Harvard administration was not amused, and Zuckerberg faced subsequent disciplinary action. Less than three months later, he launched Facebook.\r\n\r\nIn September 2010, Zuckerberg donated $100 million to the Newark Public School System to help renovate and revamp the system.\r\n\r\nZuckerberg won the 2007 Crunchie Award for 'Best Startup CEO.' He was the Time Magazine 2010 Person Of The Year. He also won the 2012 Crunchie Award for CEO of the year.",
|
113
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1448830269/gzcifut4c2xah95x0ewd.jpg",
|
114
|
+
"role_investor": true,
|
115
|
+
"born_on": "1984-05-14",
|
116
|
+
"born_on_trust_code": 7,
|
117
|
+
"died_on": null,
|
118
|
+
"died_on_trust_code": null,
|
119
|
+
"created_at": 1180155106,
|
120
|
+
"updated_at": 1509284644
|
121
|
+
}
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"type": "Person",
|
125
|
+
"uuid": "fb5b458c0aaba97771b9ecf78d3ec756",
|
126
|
+
"properties":
|
127
|
+
{
|
128
|
+
"permalink": "eduardo-saverin",
|
129
|
+
"api_path": "people/eduardo-saverin",
|
130
|
+
"web_path": "person/eduardo-saverin",
|
131
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/eduardo-saverin",
|
132
|
+
"first_name": "Eduardo",
|
133
|
+
"last_name": "Saverin",
|
134
|
+
"gender": "Male",
|
135
|
+
"also_known_as": null,
|
136
|
+
"bio": "Eduardo Saverin is a Co-founder and Partner of B Capital Group. Mr. Saverin was the first investor in and co-founder of Facebook. Today, Facebook, as a publicly traded company with a market cap surpassing $300 billion, empowers more than one billion people of all age groups, geographies, languages and cultural affinities to share and make the world a more open and connected place. Mr. Saverin is squarely focused on investing in the next wave of technological innovation. As a technology investor and mentor, he has advised and worked closely with an array of companies of all sizes and stages that share one common thread: a passion for people-centric innovation, alongside a mobile platform bias with pan-global ambitions. Mr. Saverin earned a BA from Harvard University.",
|
137
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1488569689/tguyaajkbrzranyecmg0.png",
|
138
|
+
"role_investor": true,
|
139
|
+
"born_on": "1982-03-19",
|
140
|
+
"born_on_trust_code": 7,
|
141
|
+
"died_on": null,
|
142
|
+
"died_on_trust_code": null,
|
143
|
+
"created_at": 1285115504,
|
144
|
+
"updated_at": 1506579158
|
145
|
+
}
|
146
|
+
}]
|
147
|
+
}
|
148
|
+
}
|
@@ -0,0 +1,2602 @@
|
|
1
|
+
{
|
2
|
+
"metadata":
|
3
|
+
{
|
4
|
+
"version": 31,
|
5
|
+
"www_path_prefix": "https://www.crunchbase.com",
|
6
|
+
"api_path_prefix": "https://api.crunchbase.com",
|
7
|
+
"image_path_prefix": "http://public.crunchbase.com/t_api_images/"
|
8
|
+
},
|
9
|
+
"data":
|
10
|
+
{
|
11
|
+
"type": "Person",
|
12
|
+
"uuid": "a01b8d46d31133337c34aa3ae9c03f22",
|
13
|
+
"properties":
|
14
|
+
{
|
15
|
+
"permalink": "mark-zuckerberg",
|
16
|
+
"api_path": "people/mark-zuckerberg",
|
17
|
+
"web_path": "person/mark-zuckerberg",
|
18
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg",
|
19
|
+
"first_name": "Mark",
|
20
|
+
"last_name": "Zuckerberg",
|
21
|
+
"gender": "Male",
|
22
|
+
"also_known_as": [
|
23
|
+
"Zuck"
|
24
|
+
],
|
25
|
+
"bio": "Mark Zuckerberg is the founder and CEO of Facebook, which he started in his college dorm room in 2004 with roomates Dustin Moskovitz and Chris Hughes and from New York.\r\n\r\nZuckerberg is responsible for setting the overall direction and product strategy for the company. He leads the design of Facebook's service and development of its core technology and infrastructure. Mark studied computer science at Harvard University before moving the company to Palo Alto, California.\r\n\r\nEarlier in life, Zuckerberg developed a music recommendation system called Synapse and a peer-to-peer client called Wirehog. However, he abandoned both to pursue new projects.\r\n\r\nZuckerberg attended Harvard University and studied computer science before founding Facebook.\r\n\r\nWhile at Harvard, Zuckerberg created Facemash, a website that compared students' dorm photos side-by-side in a fashion similar to HOT or NOT. Harvard administration was not amused, and Zuckerberg faced subsequent disciplinary action. Less than three months later, he launched Facebook.\r\n\r\nIn September 2010, Zuckerberg donated $100 million to the Newark Public School System to help renovate and revamp the system.\r\n\r\nZuckerberg won the 2007 Crunchie Award for 'Best Startup CEO.' He was the Time Magazine 2010 Person Of The Year. He also won the 2012 Crunchie Award for CEO of the year.",
|
26
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1448830269/gzcifut4c2xah95x0ewd.jpg",
|
27
|
+
"role_investor": true,
|
28
|
+
"born_on": "1984-05-14",
|
29
|
+
"born_on_trust_code": 7,
|
30
|
+
"died_on": null,
|
31
|
+
"died_on_trust_code": null,
|
32
|
+
"created_at": 1180155106,
|
33
|
+
"updated_at": 1509284644
|
34
|
+
},
|
35
|
+
"relationships":
|
36
|
+
{
|
37
|
+
"primary_affiliation":
|
38
|
+
{
|
39
|
+
"cardinality": "OneToOne",
|
40
|
+
"paging":
|
41
|
+
{
|
42
|
+
"total_items": 1,
|
43
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/primary_affiliation",
|
44
|
+
"sort_order": "not_ordered"
|
45
|
+
},
|
46
|
+
"item":
|
47
|
+
{
|
48
|
+
"type": "Job",
|
49
|
+
"uuid": "befc22dec7892096e4d6919935cf4204",
|
50
|
+
"properties":
|
51
|
+
{
|
52
|
+
"title": "Founder & CEO",
|
53
|
+
"started_on": "2004-01-01",
|
54
|
+
"started_on_trust_code": 5,
|
55
|
+
"ended_on": null,
|
56
|
+
"ended_on_trust_code": null,
|
57
|
+
"is_current": true,
|
58
|
+
"created_at": 1180129906,
|
59
|
+
"updated_at": 1463234740
|
60
|
+
},
|
61
|
+
"relationships":
|
62
|
+
{
|
63
|
+
"organization":
|
64
|
+
{
|
65
|
+
"type": "Organization",
|
66
|
+
"uuid": "df6628127f970b439d3e12f64f504fbb",
|
67
|
+
"properties":
|
68
|
+
{
|
69
|
+
"permalink": "facebook",
|
70
|
+
"api_path": "organizations/facebook",
|
71
|
+
"web_path": "organization/facebook",
|
72
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/facebook",
|
73
|
+
"name": "Facebook",
|
74
|
+
"also_known_as": null,
|
75
|
+
"short_description": "Facebook is an online social networking service that enables its users to connect with friends and family as well as make new connections.!",
|
76
|
+
"description": "Facebook is an online social networking service that allows its users to connect with friends and family as well as make new connections. It provides its users with the ability to create a profile, update information, add images, send friend requests, and accept requests from other users. Its features include status update, photo tagging and sharing, and more.\r\n\r\n\r\nFacebook’s profile structure includes a timeline, information related to the user, images of the user, images added by friends of the user, notes, pages, groups, and more. It enables its users to create pages related to entertainment, sports, business, finance, preferences, hobbies, culture, religion, causes, organizations, and a number of other categories. It also enables its users to join or create groups related to a vast number of categories.\r\n\r\n\r\nWith millions of more users, [Friendster](http://www.crunchbase.com/organization/friendster) attempted to acquire the company for $10 million in mid-2004. Facebook turned down the offer and subsequently received $12.7 million in funding from [Accel Partners](http://www.crunchbase.com/organization/accel-partners) at a valuation of around $100 million. Facebook continued to grow opening up to high school students in September 2005 and adding a photo sharing feature the next month. The next spring, Facebook received $25 million in funding from [Greylock Partners](http://www.crunchbase.com/organization/greylock) and [Meritech Capital](http://www.crunchbase.com/organization/meritech-capital-partners) as well as previous investors [Accel Partners](http://www.crunchbase.com/organization/accel-partners) and [Peter Thiel](http://www.crunchbase.com/person/peter-thiel). The pre-money valuation for this deal was about $525 million. Facebook subsequently opened up to work networks eventually amassing over 20,000 work networks. Finally in September 2006, Facebook was opened to anyone with an email address.\r\n\r\n\r\nFacebook continued to receive funding most notably in January 2011 receiving $1.5 billion and valuing the company at $50 billion. A year later in February 2012, Facebook announced that it was filing for its long-anticipated initial public offering. The company went public on May 18, 2012 opening in [NASDAQ](http://www.crunchbase.com/organization/nasdaq-private-market) with shares trading at $42.05.\r\n\r\n\r\nFacebook announced positive numbers in February 2012 upon filing for its IPO. As of July 2013 over 1.15 billion users have logged into Facebook every month and 669 million users daily. Mobile users now make up half of Facebook’s user base with 819 million monthly actives. Facebook is one of the most trafficked sites in the United States. Additionally, Facebook is the top photo sharing site with 250 million photos uploaded per day.\r\n\r\n\r\nThe company has strategic partnership with AXA Group to develop marketing and commercial collaboration in the digital, social, and mobile sphere.\r\n\r\n\r\nFacebook is currently the owner of many applications and services such as Pagemodo Pagebuilder, [RSS Graffiti](http://www.crunchbase.com/organization/rss-graffiti), [Huddle](http://www.crunchbase.com/product/huddle), and more. It is the world’s largest social network with over 1.32 billion monthly active users.\r\n\r\n\r\nFacebook was founded by Mark Zuckerberg on February 4, 2004 in Menlo Park, California.",
|
77
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1502744477/anzcz7nix0gjwho8mfpu.png",
|
78
|
+
"primary_role": "company",
|
79
|
+
"role_company": true,
|
80
|
+
"role_investor": true,
|
81
|
+
"role_group": false,
|
82
|
+
"role_school": false,
|
83
|
+
"investor_type": null,
|
84
|
+
"founded_on": "2004-02-04",
|
85
|
+
"founded_on_trust_code": 7,
|
86
|
+
"is_closed": false,
|
87
|
+
"closed_on": null,
|
88
|
+
"closed_on_trust_code": null,
|
89
|
+
"num_employees_min": 10001,
|
90
|
+
"num_employees_max": 1000000,
|
91
|
+
"stock_exchange": null,
|
92
|
+
"stock_symbol": null,
|
93
|
+
"total_funding_usd": 0,
|
94
|
+
"number_of_investments": 11,
|
95
|
+
"homepage_url": null,
|
96
|
+
"contact_email": null,
|
97
|
+
"phone_number": null,
|
98
|
+
"created_at": 1180153335,
|
99
|
+
"updated_at": 1509400028
|
100
|
+
}
|
101
|
+
}
|
102
|
+
}
|
103
|
+
}
|
104
|
+
},
|
105
|
+
"primary_location":
|
106
|
+
{
|
107
|
+
"cardinality": "ManyToOne",
|
108
|
+
"paging":
|
109
|
+
{
|
110
|
+
"total_items": 1,
|
111
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/primary_location",
|
112
|
+
"sort_order": "not_ordered"
|
113
|
+
},
|
114
|
+
"item":
|
115
|
+
{
|
116
|
+
"type": "Location",
|
117
|
+
"uuid": "0d81d68c9c59f14f01163ad9ce7145ca",
|
118
|
+
"properties":
|
119
|
+
{
|
120
|
+
"name": "Palo Alto",
|
121
|
+
"web_path": null,
|
122
|
+
"location_type": "city",
|
123
|
+
"parent_location_uuid": null,
|
124
|
+
"city": "Palo Alto",
|
125
|
+
"region": "California",
|
126
|
+
"region_code2": null,
|
127
|
+
"country": "United States",
|
128
|
+
"country_code2": null,
|
129
|
+
"country_code3": null,
|
130
|
+
"continent": "North America",
|
131
|
+
"created_at": 1397982041,
|
132
|
+
"updated_at": 1501093669
|
133
|
+
}
|
134
|
+
}
|
135
|
+
},
|
136
|
+
"primary_image":
|
137
|
+
{
|
138
|
+
"cardinality": "OneToOne",
|
139
|
+
"paging":
|
140
|
+
{
|
141
|
+
"total_items": 1,
|
142
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/primary_image",
|
143
|
+
"sort_order": "not_ordered"
|
144
|
+
},
|
145
|
+
"item":
|
146
|
+
{
|
147
|
+
"type": "Image",
|
148
|
+
"uuid": "a01b8d46d31133337c34aa3ae9c03f22",
|
149
|
+
"properties":
|
150
|
+
{
|
151
|
+
"asset_path": "http://public.crunchbase.com/t_api_images/v1448830269/gzcifut4c2xah95x0ewd.jpg",
|
152
|
+
"asset_url": "http://public.crunchbase.com/t_api_images/v1448830269/gzcifut4c2xah95x0ewd.jpg",
|
153
|
+
"content_type": "jpg",
|
154
|
+
"height": null,
|
155
|
+
"width": null,
|
156
|
+
"filesize": null,
|
157
|
+
"created_at": 1180155106,
|
158
|
+
"updated_at": 1509284644
|
159
|
+
}
|
160
|
+
}
|
161
|
+
},
|
162
|
+
"websites":
|
163
|
+
{
|
164
|
+
"cardinality": "OneToMany",
|
165
|
+
"paging":
|
166
|
+
{
|
167
|
+
"total_items": 2,
|
168
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/websites",
|
169
|
+
"sort_order": "not_ordered"
|
170
|
+
},
|
171
|
+
"items": [
|
172
|
+
{
|
173
|
+
"type": "Website",
|
174
|
+
"uuid": "a01b8d46d31133337c34aa3ae9c03f22",
|
175
|
+
"properties":
|
176
|
+
{
|
177
|
+
"website_type": "facebook",
|
178
|
+
"website_name": "facebook",
|
179
|
+
"url": "https://www.facebook.com/zuck",
|
180
|
+
"created_at": 1180155106,
|
181
|
+
"updated_at": 1509284644
|
182
|
+
}
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"type": "Website",
|
186
|
+
"uuid": "a01b8d46d31133337c34aa3ae9c03f22",
|
187
|
+
"properties":
|
188
|
+
{
|
189
|
+
"website_type": "twitter",
|
190
|
+
"website_name": "twitter",
|
191
|
+
"url": "https://twitter.com/finkd",
|
192
|
+
"created_at": 1180155106,
|
193
|
+
"updated_at": 1509284644
|
194
|
+
}
|
195
|
+
}]
|
196
|
+
},
|
197
|
+
"degrees":
|
198
|
+
{
|
199
|
+
"cardinality": "OneToMany",
|
200
|
+
"paging":
|
201
|
+
{
|
202
|
+
"total_items": 1,
|
203
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/degrees",
|
204
|
+
"sort_order": "not_ordered"
|
205
|
+
},
|
206
|
+
"items": [
|
207
|
+
{
|
208
|
+
"type": "Degree",
|
209
|
+
"uuid": "e75e14342ace92552da83943f5bbae7c",
|
210
|
+
"properties":
|
211
|
+
{
|
212
|
+
"started_on": "2002-01-01",
|
213
|
+
"started_on_trust_code": 5,
|
214
|
+
"completed_on": "2004-01-01",
|
215
|
+
"completed_on_trust_code": 5,
|
216
|
+
"degree_type_name": "Dropped Out",
|
217
|
+
"degree_subject": "Computer Science",
|
218
|
+
"created_at": 1237935022,
|
219
|
+
"updated_at": 1444838205
|
220
|
+
},
|
221
|
+
"relationships":
|
222
|
+
{
|
223
|
+
"school":
|
224
|
+
{
|
225
|
+
"type": "Organization",
|
226
|
+
"uuid": "d8b57c0e9f0f4dcbd207a12a90c64a2d",
|
227
|
+
"properties":
|
228
|
+
{
|
229
|
+
"permalink": "harvard-university",
|
230
|
+
"api_path": "organizations/harvard-university",
|
231
|
+
"web_path": "organization/harvard-university",
|
232
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/harvard-university",
|
233
|
+
"name": "Harvard University",
|
234
|
+
"also_known_as": null,
|
235
|
+
"short_description": "Harvard University is devoted to excellence in teaching, learning, and research, and to developing leaders who make a difference globally.",
|
236
|
+
"description": "Harvard University is devoted to excellence in teaching, learning, and research, and to developing leaders in many disciplines who make a difference globally. Harvard faculty are engaged with teaching and research to push the boundaries of human knowledge. For students who are excited to investigate the biggest issues of the 21st century, Harvard offers an unparalleled student experience and a generous financial aid program, with over $160 million awarded to more than 60% of our undergraduate students. The University has twelve degree-granting Schools in addition to the Radcliffe Institute for Advanced Study, offering a truly global education.\r\n\r\nEstablished in 1636, Harvard is the oldest institution of higher education in the United States. The University, which is based in Cambridge and Boston, Massachusetts, has an enrollment of over 20,000 degree candidates, including undergraduate, graduate, and professional students. Harvard has more than 360,000 alumni around the world.",
|
237
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1487976798/h1cxdzljiq6sqgjtzfev.png",
|
238
|
+
"primary_role": "school",
|
239
|
+
"role_company": false,
|
240
|
+
"role_investor": true,
|
241
|
+
"role_group": false,
|
242
|
+
"role_school": true,
|
243
|
+
"investor_type": null,
|
244
|
+
"founded_on": "1636-09-08",
|
245
|
+
"founded_on_trust_code": 7,
|
246
|
+
"is_closed": false,
|
247
|
+
"closed_on": null,
|
248
|
+
"closed_on_trust_code": null,
|
249
|
+
"num_employees_min": null,
|
250
|
+
"num_employees_max": null,
|
251
|
+
"stock_exchange": null,
|
252
|
+
"stock_symbol": null,
|
253
|
+
"total_funding_usd": 0,
|
254
|
+
"number_of_investments": 7,
|
255
|
+
"homepage_url": null,
|
256
|
+
"contact_email": null,
|
257
|
+
"phone_number": "(617) 495-1551",
|
258
|
+
"created_at": 1398010580,
|
259
|
+
"updated_at": 1509399871
|
260
|
+
}
|
261
|
+
}
|
262
|
+
}
|
263
|
+
}]
|
264
|
+
},
|
265
|
+
"jobs":
|
266
|
+
{
|
267
|
+
"cardinality": "OneToMany",
|
268
|
+
"paging":
|
269
|
+
{
|
270
|
+
"total_items": 11,
|
271
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/jobs",
|
272
|
+
"sort_order": "not_ordered"
|
273
|
+
},
|
274
|
+
"items": [
|
275
|
+
{
|
276
|
+
"type": "Job",
|
277
|
+
"uuid": "001042769716f3eed500150bfa40627f",
|
278
|
+
"properties":
|
279
|
+
{
|
280
|
+
"title": "Founder",
|
281
|
+
"started_on": "2013-08-01",
|
282
|
+
"started_on_trust_code": 6,
|
283
|
+
"ended_on": null,
|
284
|
+
"ended_on_trust_code": null,
|
285
|
+
"is_current": true,
|
286
|
+
"created_at": 1444159912,
|
287
|
+
"updated_at": 1444160026
|
288
|
+
},
|
289
|
+
"relationships":
|
290
|
+
{
|
291
|
+
"organization":
|
292
|
+
{
|
293
|
+
"type": "Organization",
|
294
|
+
"uuid": "b3b721ad502ea7bec76201b4bc172dec",
|
295
|
+
"properties":
|
296
|
+
{
|
297
|
+
"permalink": "internet-org",
|
298
|
+
"api_path": "organizations/internet-org",
|
299
|
+
"web_path": "organization/internet-org",
|
300
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/internet-org",
|
301
|
+
"name": "Internet.org",
|
302
|
+
"also_known_as": null,
|
303
|
+
"short_description": "Every one of us. Everywhere. Connected.",
|
304
|
+
"description": "Internet.org is a global partnership between technology leaders, nonprofits, local communities and experts who are working together to bring the internet to the two thirds of the world's population that doesn't have it. Sharing tools, resources and best practices, Internet.org partners will explore solutions in three major opportunity areas: affordability, efficiency and business models.\r\n\r\nMaking the internet available to every person on earth is a goal too large and too important for any one company, group, or government to solve alone. Internet.org’s partners have come together to meet this challenge because they believe in the power of a connected world: Ericsson, MediaTek, Opera, Samsung, Facebook, Nokia, Qualcomm.",
|
305
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1419461907/pdggqsswgmetd5fza6az.png",
|
306
|
+
"primary_role": "company",
|
307
|
+
"role_company": true,
|
308
|
+
"role_investor": false,
|
309
|
+
"role_group": false,
|
310
|
+
"role_school": false,
|
311
|
+
"investor_type": null,
|
312
|
+
"founded_on": "2013-09-09",
|
313
|
+
"founded_on_trust_code": 7,
|
314
|
+
"is_closed": false,
|
315
|
+
"closed_on": null,
|
316
|
+
"closed_on_trust_code": null,
|
317
|
+
"num_employees_min": null,
|
318
|
+
"num_employees_max": null,
|
319
|
+
"stock_exchange": null,
|
320
|
+
"stock_symbol": null,
|
321
|
+
"total_funding_usd": 0,
|
322
|
+
"number_of_investments": 0,
|
323
|
+
"homepage_url": null,
|
324
|
+
"contact_email": null,
|
325
|
+
"phone_number": null,
|
326
|
+
"created_at": 1377129623,
|
327
|
+
"updated_at": 1506472117
|
328
|
+
}
|
329
|
+
}
|
330
|
+
}
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"type": "Job",
|
334
|
+
"uuid": "182077ba170765b07275fc7b953fcbfa",
|
335
|
+
"properties":
|
336
|
+
{
|
337
|
+
"title": "Member of the Board of Directors",
|
338
|
+
"started_on": null,
|
339
|
+
"started_on_trust_code": null,
|
340
|
+
"ended_on": null,
|
341
|
+
"ended_on_trust_code": 0,
|
342
|
+
"is_current": false,
|
343
|
+
"created_at": 1404426356,
|
344
|
+
"updated_at": 1463234867
|
345
|
+
},
|
346
|
+
"relationships":
|
347
|
+
{
|
348
|
+
"organization":
|
349
|
+
{
|
350
|
+
"type": "Organization",
|
351
|
+
"uuid": "e34528b02b91839edc948485cf1a90c6",
|
352
|
+
"properties":
|
353
|
+
{
|
354
|
+
"permalink": "beatmed",
|
355
|
+
"api_path": "organizations/beatmed",
|
356
|
+
"web_path": "organization/beatmed",
|
357
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/beatmed",
|
358
|
+
"name": "BeatMed",
|
359
|
+
"also_known_as": null,
|
360
|
+
"short_description": "BeatMed is a personalized purchasing service and online medical supply marketplace for the medical industry.",
|
361
|
+
"description": "What is BeatMed?\r\n\r\nBeatMed is a personalized purchasing service and online medical supply marketplace for the medical industry. Dedicated to finding customers the best medical supplies at the lowest prices, they enable small suppliers and manufacturers direct access to a vast global network of new customers.\r\n\r\nWho is BeatMed for?\r\n\r\nWhether you run an ambulatory surgery center, a multi-partner clinic or simply your own private practice, your time is limited and better spent with your patients. BeatMed streamlines supply purchasing, allowing you to maximize your monthly cash flow.\r\n\r\nThe Folks Behind BeatMed\r\n\r\nBeatMed was founded by a team of dedicated entrepreneurs and surgery center administrators from the medical supply and medical device industries. With expertise in the international manufacture, distribution and sales of medical supplies, combined with broad experience in technology, software and ecommerce, they established BeatMed out of a passion to make healthcare more efficient and affordable.\r\n\r\nBeatMed for Buyers\r\n\r\nBy purchasing through BeatMed, you join a powerful community that’s transforming today’s medical supply marketplace. As part of this influential group, you get purchasing power otherwise unavailable, and BeatMed leverages that power to get you deals exclusive to their users.\r\n\r\nBeatMed for Suppliers\r\n\r\nAs a BeatMed supplier, you gain direct access to their customer base and invaluable feedback on their products.\r\n\r\nBeatMed users share and access product reviews, service feedback and price comparisons – all in one transparent forum, open to the entire BeatMed community. That’s wisdom of the crowd at its best, allowing businesses to source high quality products at the lowest prices.",
|
362
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1491805379/mqxbgt5x5zcjhe2xia5j.png",
|
363
|
+
"primary_role": "company",
|
364
|
+
"role_company": true,
|
365
|
+
"role_investor": false,
|
366
|
+
"role_group": false,
|
367
|
+
"role_school": false,
|
368
|
+
"investor_type": null,
|
369
|
+
"founded_on": "2013-11-01",
|
370
|
+
"founded_on_trust_code": 7,
|
371
|
+
"is_closed": false,
|
372
|
+
"closed_on": null,
|
373
|
+
"closed_on_trust_code": null,
|
374
|
+
"num_employees_min": 11,
|
375
|
+
"num_employees_max": 50,
|
376
|
+
"stock_exchange": null,
|
377
|
+
"stock_symbol": null,
|
378
|
+
"total_funding_usd": 0,
|
379
|
+
"number_of_investments": 0,
|
380
|
+
"homepage_url": null,
|
381
|
+
"contact_email": "oren@beatmed.com",
|
382
|
+
"phone_number": "+1 (917) 535-1497",
|
383
|
+
"created_at": 1404426158,
|
384
|
+
"updated_at": 1491805390
|
385
|
+
}
|
386
|
+
}
|
387
|
+
}
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"type": "Job",
|
391
|
+
"uuid": "388c35e65a2d8f8629f3f6c07220ed7f",
|
392
|
+
"properties":
|
393
|
+
{
|
394
|
+
"title": "Chairman of the Board of Directors",
|
395
|
+
"started_on": null,
|
396
|
+
"started_on_trust_code": null,
|
397
|
+
"ended_on": null,
|
398
|
+
"ended_on_trust_code": null,
|
399
|
+
"is_current": true,
|
400
|
+
"created_at": 1460697941,
|
401
|
+
"updated_at": 1463234800
|
402
|
+
},
|
403
|
+
"relationships":
|
404
|
+
{
|
405
|
+
"organization":
|
406
|
+
{
|
407
|
+
"type": "Organization",
|
408
|
+
"uuid": "df6628127f970b439d3e12f64f504fbb",
|
409
|
+
"properties":
|
410
|
+
{
|
411
|
+
"permalink": "facebook",
|
412
|
+
"api_path": "organizations/facebook",
|
413
|
+
"web_path": "organization/facebook",
|
414
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/facebook",
|
415
|
+
"name": "Facebook",
|
416
|
+
"also_known_as": null,
|
417
|
+
"short_description": "Facebook is an online social networking service that enables its users to connect with friends and family as well as make new connections.!",
|
418
|
+
"description": "Facebook is an online social networking service that allows its users to connect with friends and family as well as make new connections. It provides its users with the ability to create a profile, update information, add images, send friend requests, and accept requests from other users. Its features include status update, photo tagging and sharing, and more.\r\n\r\n\r\nFacebook’s profile structure includes a timeline, information related to the user, images of the user, images added by friends of the user, notes, pages, groups, and more. It enables its users to create pages related to entertainment, sports, business, finance, preferences, hobbies, culture, religion, causes, organizations, and a number of other categories. It also enables its users to join or create groups related to a vast number of categories.\r\n\r\n\r\nWith millions of more users, [Friendster](http://www.crunchbase.com/organization/friendster) attempted to acquire the company for $10 million in mid-2004. Facebook turned down the offer and subsequently received $12.7 million in funding from [Accel Partners](http://www.crunchbase.com/organization/accel-partners) at a valuation of around $100 million. Facebook continued to grow opening up to high school students in September 2005 and adding a photo sharing feature the next month. The next spring, Facebook received $25 million in funding from [Greylock Partners](http://www.crunchbase.com/organization/greylock) and [Meritech Capital](http://www.crunchbase.com/organization/meritech-capital-partners) as well as previous investors [Accel Partners](http://www.crunchbase.com/organization/accel-partners) and [Peter Thiel](http://www.crunchbase.com/person/peter-thiel). The pre-money valuation for this deal was about $525 million. Facebook subsequently opened up to work networks eventually amassing over 20,000 work networks. Finally in September 2006, Facebook was opened to anyone with an email address.\r\n\r\n\r\nFacebook continued to receive funding most notably in January 2011 receiving $1.5 billion and valuing the company at $50 billion. A year later in February 2012, Facebook announced that it was filing for its long-anticipated initial public offering. The company went public on May 18, 2012 opening in [NASDAQ](http://www.crunchbase.com/organization/nasdaq-private-market) with shares trading at $42.05.\r\n\r\n\r\nFacebook announced positive numbers in February 2012 upon filing for its IPO. As of July 2013 over 1.15 billion users have logged into Facebook every month and 669 million users daily. Mobile users now make up half of Facebook’s user base with 819 million monthly actives. Facebook is one of the most trafficked sites in the United States. Additionally, Facebook is the top photo sharing site with 250 million photos uploaded per day.\r\n\r\n\r\nThe company has strategic partnership with AXA Group to develop marketing and commercial collaboration in the digital, social, and mobile sphere.\r\n\r\n\r\nFacebook is currently the owner of many applications and services such as Pagemodo Pagebuilder, [RSS Graffiti](http://www.crunchbase.com/organization/rss-graffiti), [Huddle](http://www.crunchbase.com/product/huddle), and more. It is the world’s largest social network with over 1.32 billion monthly active users.\r\n\r\n\r\nFacebook was founded by Mark Zuckerberg on February 4, 2004 in Menlo Park, California.",
|
419
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1502744477/anzcz7nix0gjwho8mfpu.png",
|
420
|
+
"primary_role": "company",
|
421
|
+
"role_company": true,
|
422
|
+
"role_investor": true,
|
423
|
+
"role_group": false,
|
424
|
+
"role_school": false,
|
425
|
+
"investor_type": null,
|
426
|
+
"founded_on": "2004-02-04",
|
427
|
+
"founded_on_trust_code": 7,
|
428
|
+
"is_closed": false,
|
429
|
+
"closed_on": null,
|
430
|
+
"closed_on_trust_code": null,
|
431
|
+
"num_employees_min": 10001,
|
432
|
+
"num_employees_max": 1000000,
|
433
|
+
"stock_exchange": null,
|
434
|
+
"stock_symbol": null,
|
435
|
+
"total_funding_usd": 0,
|
436
|
+
"number_of_investments": 11,
|
437
|
+
"homepage_url": null,
|
438
|
+
"contact_email": null,
|
439
|
+
"phone_number": null,
|
440
|
+
"created_at": 1180153335,
|
441
|
+
"updated_at": 1509400028
|
442
|
+
}
|
443
|
+
}
|
444
|
+
}
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"type": "Job",
|
448
|
+
"uuid": "4368ea4ebc550cd880f0060ba3c3b635",
|
449
|
+
"properties":
|
450
|
+
{
|
451
|
+
"title": "Mentor",
|
452
|
+
"started_on": "2014-07-01",
|
453
|
+
"started_on_trust_code": 7,
|
454
|
+
"ended_on": null,
|
455
|
+
"ended_on_trust_code": null,
|
456
|
+
"is_current": true,
|
457
|
+
"created_at": 1406183022,
|
458
|
+
"updated_at": 1437771265
|
459
|
+
},
|
460
|
+
"relationships":
|
461
|
+
{
|
462
|
+
"organization":
|
463
|
+
{
|
464
|
+
"type": "Organization",
|
465
|
+
"uuid": "53fe51910d9fa9103b6891cabab1bc24",
|
466
|
+
"properties":
|
467
|
+
{
|
468
|
+
"permalink": "chord",
|
469
|
+
"api_path": "organizations/chord",
|
470
|
+
"web_path": "organization/chord",
|
471
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/chord",
|
472
|
+
"name": "CHORD",
|
473
|
+
"also_known_as": null,
|
474
|
+
"short_description": "‘Show off your chord of goods’ - CHORD is photo sharing service that show off one's goods & personal shopping chord.",
|
475
|
+
"description": "‘Show off your chord of goods’ CHORD is photo sharing service that show off one's goods & personal shopping chord. That is based in social networking media via the mobile and online. They will make a new paradigm of SNS market and shopping media. Chord will be launch with iOS in Oct 2014. ",
|
476
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1406182419/ppznevcscjpkepftu1rz.png",
|
477
|
+
"primary_role": "company",
|
478
|
+
"role_company": true,
|
479
|
+
"role_investor": false,
|
480
|
+
"role_group": false,
|
481
|
+
"role_school": false,
|
482
|
+
"investor_type": null,
|
483
|
+
"founded_on": "2013-01-24",
|
484
|
+
"founded_on_trust_code": 7,
|
485
|
+
"is_closed": false,
|
486
|
+
"closed_on": null,
|
487
|
+
"closed_on_trust_code": null,
|
488
|
+
"num_employees_min": 1,
|
489
|
+
"num_employees_max": 10,
|
490
|
+
"stock_exchange": null,
|
491
|
+
"stock_symbol": null,
|
492
|
+
"total_funding_usd": 0,
|
493
|
+
"number_of_investments": 0,
|
494
|
+
"homepage_url": null,
|
495
|
+
"contact_email": null,
|
496
|
+
"phone_number": null,
|
497
|
+
"created_at": 1406182569,
|
498
|
+
"updated_at": 1509270213
|
499
|
+
}
|
500
|
+
}
|
501
|
+
}
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"type": "Job",
|
505
|
+
"uuid": "619295152940f4486c2237457649a10c",
|
506
|
+
"properties":
|
507
|
+
{
|
508
|
+
"title": "Founder",
|
509
|
+
"started_on": null,
|
510
|
+
"started_on_trust_code": null,
|
511
|
+
"ended_on": null,
|
512
|
+
"ended_on_trust_code": null,
|
513
|
+
"is_current": true,
|
514
|
+
"created_at": 1382366050,
|
515
|
+
"updated_at": 1398003029
|
516
|
+
},
|
517
|
+
"relationships":
|
518
|
+
{
|
519
|
+
"organization":
|
520
|
+
{
|
521
|
+
"type": "Organization",
|
522
|
+
"uuid": "94a457f016b987a6970a735c7f4ddd4e",
|
523
|
+
"properties":
|
524
|
+
{
|
525
|
+
"permalink": "startup-education",
|
526
|
+
"api_path": "organizations/startup-education",
|
527
|
+
"web_path": "organization/startup-education",
|
528
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/startup-education",
|
529
|
+
"name": "Startup:Education",
|
530
|
+
"also_known_as": null,
|
531
|
+
"short_description": "Startup:Education is a new foundation launched by Facebook founder and CEO Mark Zuckerberg with $100 million in September, 2010.",
|
532
|
+
"description": "Startup:Education is a new foundation launched by Facebook founder and CEO Mark Zuckerberg with $100 million in September, 2010. Their mission is to take a startup approach to building a better education system for all students.\r\n\r\nStartup:Education's initial focus is Newark, N.J., working to transform the city's public schools so that all children have access to a high quality education and so that other cities can use Newark as a model to reform their own schools.",
|
533
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1491540639/p1vcwwlyz1jaawmpyes1.png",
|
534
|
+
"primary_role": "investor",
|
535
|
+
"role_company": false,
|
536
|
+
"role_investor": true,
|
537
|
+
"role_group": false,
|
538
|
+
"role_school": false,
|
539
|
+
"investor_type": [
|
540
|
+
"venture_debt"
|
541
|
+
],
|
542
|
+
"founded_on": null,
|
543
|
+
"founded_on_trust_code": null,
|
544
|
+
"is_closed": false,
|
545
|
+
"closed_on": null,
|
546
|
+
"closed_on_trust_code": null,
|
547
|
+
"num_employees_min": null,
|
548
|
+
"num_employees_max": null,
|
549
|
+
"stock_exchange": null,
|
550
|
+
"stock_symbol": null,
|
551
|
+
"total_funding_usd": 0,
|
552
|
+
"number_of_investments": 3,
|
553
|
+
"homepage_url": null,
|
554
|
+
"contact_email": "info@startupeducation.org",
|
555
|
+
"phone_number": null,
|
556
|
+
"created_at": 1382388666,
|
557
|
+
"updated_at": 1491540647
|
558
|
+
}
|
559
|
+
}
|
560
|
+
}
|
561
|
+
},
|
562
|
+
{
|
563
|
+
"type": "Job",
|
564
|
+
"uuid": "7077e1634d08b67e0bec8d4f56dc017b",
|
565
|
+
"properties":
|
566
|
+
{
|
567
|
+
"title": "FaceBook-Vendredvd",
|
568
|
+
"started_on": null,
|
569
|
+
"started_on_trust_code": null,
|
570
|
+
"ended_on": null,
|
571
|
+
"ended_on_trust_code": null,
|
572
|
+
"is_current": true,
|
573
|
+
"created_at": 1489961252,
|
574
|
+
"updated_at": 1489961252
|
575
|
+
},
|
576
|
+
"relationships":
|
577
|
+
{
|
578
|
+
"organization":
|
579
|
+
{
|
580
|
+
"type": "Organization",
|
581
|
+
"uuid": "5c1a7d1435f5873cdd3a140c61434f8e",
|
582
|
+
"properties":
|
583
|
+
{
|
584
|
+
"permalink": "vendredvd-com",
|
585
|
+
"api_path": "organizations/vendredvd-com",
|
586
|
+
"web_path": "organization/vendredvd-com",
|
587
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/vendredvd-com",
|
588
|
+
"name": "Vendredvd",
|
589
|
+
"also_known_as": [
|
590
|
+
"Vendredvd",
|
591
|
+
"vendredvd.com",
|
592
|
+
"vendredvd.fr",
|
593
|
+
"vendredvdavis",
|
594
|
+
"www.vendredvd.com"
|
595
|
+
],
|
596
|
+
"short_description": "VENDREDVD.COM Vendeur de matériel informatique en France",
|
597
|
+
"description": "Notre enseigne vous propose un savoir-faire professionnel ainsi qu'un accueil chaleureux et convivial.\r\n\r\nDiverses prestations vous sont proposées telles que la réparation d'ordinateurs et de tablettes, la vente de pièces détachées, le stockage, la téléphonie et les accessoires.\r\n\r\nUn rayon dédié à l'image, le son et les jeux vidéo est également à votre disposition.\r\n\r\nSpécialiste de l'informatique depuis 2011, vendredvd.com reste à votre disposition pour toutes informations complémentaires.\r\n\r\n\"Nos tarifs sont exprimés en TTC\"\r\n\r\nHoraires\r\n\r\nLundi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nMardi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nMercredi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nJeudi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nVendredi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nSamedi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nInformations clés\r\n\r\nhoraires d'ouverture, vendredvd, vendredvd ouverture, horraire vendredvd, site de vendredvd, avis site de vendredvd, vendredvd avis client, site vendredvd, houre vendredvd, open vendredvd, vendredvd.\r\nClientèle\r\n\r\nParticuliers\r\nProfessionnels\r\nSites et réseaux sociaux\r\n\r\n www.vendredvd.com\r\n https://www.facebook.com/notes/vendredvdcom/page-officiel-vendredvd/808232532522095\r\n https://twitter.com/vendredvd\r\n www.vendredvd.com/service-blog.html\r\nPrestations\r\n\r\nCommande en ligne Livraison offerte à partir de 75 € Service après-vente Suivi de commande Frais de port gratuit à partir de 75 € d'achat sur le site internet 20 € de réduction pour 100 € d'achat sur le site internet 60 € de réduction dès 500 € d'achat sur le site internet\r\n\r\nVendredvd sells computers, mobile devices, PC equipment, PS4s, PSPs, Apple mac, imac, macbook air, macbook pro, macbook retina, and accessories for individuals and businesses.\r\n\r\nVendredvd is a France-based company that was founded in 2011.\r\n\r\n\r\n***********\r\ninformatique vendredvd, achat sur vendredvd, Vendredvd avis, avis vendredvd, (www.vendredvd.com), site de vendredvd, vendredvd.com, vendredvd.fr, avis sur le site de vendredvd, critiques vendredvd",
|
598
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1449870983/u7vdygjugbammi4jf8vy.jpg",
|
599
|
+
"primary_role": "company",
|
600
|
+
"role_company": true,
|
601
|
+
"role_investor": false,
|
602
|
+
"role_group": false,
|
603
|
+
"role_school": false,
|
604
|
+
"investor_type": null,
|
605
|
+
"founded_on": "2011-01-01",
|
606
|
+
"founded_on_trust_code": 7,
|
607
|
+
"is_closed": false,
|
608
|
+
"closed_on": null,
|
609
|
+
"closed_on_trust_code": null,
|
610
|
+
"num_employees_min": 1,
|
611
|
+
"num_employees_max": 10,
|
612
|
+
"stock_exchange": null,
|
613
|
+
"stock_symbol": null,
|
614
|
+
"total_funding_usd": 0,
|
615
|
+
"number_of_investments": 0,
|
616
|
+
"homepage_url": null,
|
617
|
+
"contact_email": "contact@vendredvd.com",
|
618
|
+
"phone_number": "+033678777594",
|
619
|
+
"created_at": 1449871074,
|
620
|
+
"updated_at": 1506684380
|
621
|
+
}
|
622
|
+
}
|
623
|
+
}
|
624
|
+
},
|
625
|
+
{
|
626
|
+
"type": "Job",
|
627
|
+
"uuid": "befc22dec7892096e4d6919935cf4204",
|
628
|
+
"properties":
|
629
|
+
{
|
630
|
+
"title": "Founder & CEO",
|
631
|
+
"started_on": "2004-01-01",
|
632
|
+
"started_on_trust_code": 5,
|
633
|
+
"ended_on": null,
|
634
|
+
"ended_on_trust_code": null,
|
635
|
+
"is_current": true,
|
636
|
+
"created_at": 1180129906,
|
637
|
+
"updated_at": 1463234740
|
638
|
+
},
|
639
|
+
"relationships":
|
640
|
+
{
|
641
|
+
"organization":
|
642
|
+
{
|
643
|
+
"type": "Organization",
|
644
|
+
"uuid": "df6628127f970b439d3e12f64f504fbb",
|
645
|
+
"properties":
|
646
|
+
{
|
647
|
+
"permalink": "facebook",
|
648
|
+
"api_path": "organizations/facebook",
|
649
|
+
"web_path": "organization/facebook",
|
650
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/facebook",
|
651
|
+
"name": "Facebook",
|
652
|
+
"also_known_as": null,
|
653
|
+
"short_description": "Facebook is an online social networking service that enables its users to connect with friends and family as well as make new connections.!",
|
654
|
+
"description": "Facebook is an online social networking service that allows its users to connect with friends and family as well as make new connections. It provides its users with the ability to create a profile, update information, add images, send friend requests, and accept requests from other users. Its features include status update, photo tagging and sharing, and more.\r\n\r\n\r\nFacebook’s profile structure includes a timeline, information related to the user, images of the user, images added by friends of the user, notes, pages, groups, and more. It enables its users to create pages related to entertainment, sports, business, finance, preferences, hobbies, culture, religion, causes, organizations, and a number of other categories. It also enables its users to join or create groups related to a vast number of categories.\r\n\r\n\r\nWith millions of more users, [Friendster](http://www.crunchbase.com/organization/friendster) attempted to acquire the company for $10 million in mid-2004. Facebook turned down the offer and subsequently received $12.7 million in funding from [Accel Partners](http://www.crunchbase.com/organization/accel-partners) at a valuation of around $100 million. Facebook continued to grow opening up to high school students in September 2005 and adding a photo sharing feature the next month. The next spring, Facebook received $25 million in funding from [Greylock Partners](http://www.crunchbase.com/organization/greylock) and [Meritech Capital](http://www.crunchbase.com/organization/meritech-capital-partners) as well as previous investors [Accel Partners](http://www.crunchbase.com/organization/accel-partners) and [Peter Thiel](http://www.crunchbase.com/person/peter-thiel). The pre-money valuation for this deal was about $525 million. Facebook subsequently opened up to work networks eventually amassing over 20,000 work networks. Finally in September 2006, Facebook was opened to anyone with an email address.\r\n\r\n\r\nFacebook continued to receive funding most notably in January 2011 receiving $1.5 billion and valuing the company at $50 billion. A year later in February 2012, Facebook announced that it was filing for its long-anticipated initial public offering. The company went public on May 18, 2012 opening in [NASDAQ](http://www.crunchbase.com/organization/nasdaq-private-market) with shares trading at $42.05.\r\n\r\n\r\nFacebook announced positive numbers in February 2012 upon filing for its IPO. As of July 2013 over 1.15 billion users have logged into Facebook every month and 669 million users daily. Mobile users now make up half of Facebook’s user base with 819 million monthly actives. Facebook is one of the most trafficked sites in the United States. Additionally, Facebook is the top photo sharing site with 250 million photos uploaded per day.\r\n\r\n\r\nThe company has strategic partnership with AXA Group to develop marketing and commercial collaboration in the digital, social, and mobile sphere.\r\n\r\n\r\nFacebook is currently the owner of many applications and services such as Pagemodo Pagebuilder, [RSS Graffiti](http://www.crunchbase.com/organization/rss-graffiti), [Huddle](http://www.crunchbase.com/product/huddle), and more. It is the world’s largest social network with over 1.32 billion monthly active users.\r\n\r\n\r\nFacebook was founded by Mark Zuckerberg on February 4, 2004 in Menlo Park, California.",
|
655
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1502744477/anzcz7nix0gjwho8mfpu.png",
|
656
|
+
"primary_role": "company",
|
657
|
+
"role_company": true,
|
658
|
+
"role_investor": true,
|
659
|
+
"role_group": false,
|
660
|
+
"role_school": false,
|
661
|
+
"investor_type": null,
|
662
|
+
"founded_on": "2004-02-04",
|
663
|
+
"founded_on_trust_code": 7,
|
664
|
+
"is_closed": false,
|
665
|
+
"closed_on": null,
|
666
|
+
"closed_on_trust_code": null,
|
667
|
+
"num_employees_min": 10001,
|
668
|
+
"num_employees_max": 1000000,
|
669
|
+
"stock_exchange": null,
|
670
|
+
"stock_symbol": null,
|
671
|
+
"total_funding_usd": 0,
|
672
|
+
"number_of_investments": 11,
|
673
|
+
"homepage_url": null,
|
674
|
+
"contact_email": null,
|
675
|
+
"phone_number": null,
|
676
|
+
"created_at": 1180153335,
|
677
|
+
"updated_at": 1509400028
|
678
|
+
}
|
679
|
+
}
|
680
|
+
}
|
681
|
+
},
|
682
|
+
{
|
683
|
+
"type": "Job",
|
684
|
+
"uuid": "c03da96b3cacc7a143023646fcd40c64",
|
685
|
+
"properties":
|
686
|
+
{
|
687
|
+
"title": "Founder",
|
688
|
+
"started_on": "2009-01-01",
|
689
|
+
"started_on_trust_code": 5,
|
690
|
+
"ended_on": null,
|
691
|
+
"ended_on_trust_code": null,
|
692
|
+
"is_current": true,
|
693
|
+
"created_at": 1462472759,
|
694
|
+
"updated_at": 1462472759
|
695
|
+
},
|
696
|
+
"relationships":
|
697
|
+
{
|
698
|
+
"organization":
|
699
|
+
{
|
700
|
+
"type": "Organization",
|
701
|
+
"uuid": "959cb6063a54bf70a50e8049ebb781be",
|
702
|
+
"properties":
|
703
|
+
{
|
704
|
+
"permalink": "chan-zuckerberg-initiative",
|
705
|
+
"api_path": "organizations/chan-zuckerberg-initiative",
|
706
|
+
"web_path": "organization/chan-zuckerberg-initiative",
|
707
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/chan-zuckerberg-initiative",
|
708
|
+
"name": "Chan Zuckerberg Initiative",
|
709
|
+
"also_known_as": null,
|
710
|
+
"short_description": "Chan Zuckerberg Initiative promotes equality and focuses on advancing human potential.",
|
711
|
+
"description": "At the Chan Zuckerberg Initiative, they empower strong, independent leaders from academia and government, as well as the technology and nonprofit sectors to do the best work possible. They engage directly in the communities they serve because no one understands their society’s challenges like those who live them everyday. These partners help us identify problems and opportunities, learn fast and iterate toward their goals for the next century.",
|
712
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1485204241/cnl8h4nejt6jzc3ji3oi.png",
|
713
|
+
"primary_role": "company",
|
714
|
+
"role_company": true,
|
715
|
+
"role_investor": true,
|
716
|
+
"role_group": false,
|
717
|
+
"role_school": false,
|
718
|
+
"investor_type": null,
|
719
|
+
"founded_on": "2009-12-01",
|
720
|
+
"founded_on_trust_code": 6,
|
721
|
+
"is_closed": false,
|
722
|
+
"closed_on": null,
|
723
|
+
"closed_on_trust_code": null,
|
724
|
+
"num_employees_min": 1,
|
725
|
+
"num_employees_max": 10,
|
726
|
+
"stock_exchange": null,
|
727
|
+
"stock_symbol": null,
|
728
|
+
"total_funding_usd": 0,
|
729
|
+
"number_of_investments": 13,
|
730
|
+
"homepage_url": null,
|
731
|
+
"contact_email": null,
|
732
|
+
"phone_number": null,
|
733
|
+
"created_at": 1462472131,
|
734
|
+
"updated_at": 1509400083
|
735
|
+
}
|
736
|
+
}
|
737
|
+
}
|
738
|
+
},
|
739
|
+
{
|
740
|
+
"type": "Job",
|
741
|
+
"uuid": "c7bb6b3d29dc5f5a6b4cd7b4b387140f",
|
742
|
+
"properties":
|
743
|
+
{
|
744
|
+
"title": "Co-Founder",
|
745
|
+
"started_on": "2015-11-01",
|
746
|
+
"started_on_trust_code": 6,
|
747
|
+
"ended_on": null,
|
748
|
+
"ended_on_trust_code": null,
|
749
|
+
"is_current": true,
|
750
|
+
"created_at": 1448912764,
|
751
|
+
"updated_at": 1448912764
|
752
|
+
},
|
753
|
+
"relationships":
|
754
|
+
{
|
755
|
+
"organization":
|
756
|
+
{
|
757
|
+
"type": "Organization",
|
758
|
+
"uuid": "308a053871fdc7543c9dcc536d613e2a",
|
759
|
+
"properties":
|
760
|
+
{
|
761
|
+
"permalink": "breakthrough-energy-pty-ltd",
|
762
|
+
"api_path": "organizations/breakthrough-energy-pty-ltd",
|
763
|
+
"web_path": "organization/breakthrough-energy-pty-ltd",
|
764
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/breakthrough-energy-pty-ltd",
|
765
|
+
"name": "Breakthrough Energy Coalition",
|
766
|
+
"also_known_as": null,
|
767
|
+
"short_description": "The world needs widely available energy that is reliable, affordable and does not produce carbon.",
|
768
|
+
"description": "Technology will help solve our energy issues. The urgency of climate change and the energy needs in the poorest parts of the world require an aggressive global program for zero-emission energy innovation. The new model will be a public-private partnership between governments, research institutions, and investors. Scientists, engineers, and entrepreneurs can invent and scale the innovative technologies that will limit the impact of climate change while providing affordable and reliable energy to everyone. The existing system of basic research, clean energy investment, regulatory frameworks, and subsidies fails to sufficiently mobilize investment in truly transformative energy solutions for the future. We can’t wait for the system to change through normal cycles.",
|
769
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1491533103/qngyyqxrzm5nv32ywipp.png",
|
770
|
+
"primary_role": "company",
|
771
|
+
"role_company": true,
|
772
|
+
"role_investor": false,
|
773
|
+
"role_group": false,
|
774
|
+
"role_school": false,
|
775
|
+
"investor_type": null,
|
776
|
+
"founded_on": "2015-01-01",
|
777
|
+
"founded_on_trust_code": 5,
|
778
|
+
"is_closed": false,
|
779
|
+
"closed_on": null,
|
780
|
+
"closed_on_trust_code": null,
|
781
|
+
"num_employees_min": null,
|
782
|
+
"num_employees_max": null,
|
783
|
+
"stock_exchange": null,
|
784
|
+
"stock_symbol": null,
|
785
|
+
"total_funding_usd": 0,
|
786
|
+
"number_of_investments": 0,
|
787
|
+
"homepage_url": null,
|
788
|
+
"contact_email": null,
|
789
|
+
"phone_number": null,
|
790
|
+
"created_at": 1390569120,
|
791
|
+
"updated_at": 1498047429
|
792
|
+
}
|
793
|
+
}
|
794
|
+
}
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"type": "Job",
|
798
|
+
"uuid": "c7f89ea619a7eefe23a72c8fdbcd3526",
|
799
|
+
"properties":
|
800
|
+
{
|
801
|
+
"title": "Founder",
|
802
|
+
"started_on": null,
|
803
|
+
"started_on_trust_code": null,
|
804
|
+
"ended_on": null,
|
805
|
+
"ended_on_trust_code": null,
|
806
|
+
"is_current": true,
|
807
|
+
"created_at": 1401982507,
|
808
|
+
"updated_at": 1401982507
|
809
|
+
},
|
810
|
+
"relationships":
|
811
|
+
{
|
812
|
+
"organization":
|
813
|
+
{
|
814
|
+
"type": "Organization",
|
815
|
+
"uuid": "a43794f6e5277a20ea52ed8025e1244d",
|
816
|
+
"properties":
|
817
|
+
{
|
818
|
+
"permalink": "fwd-us",
|
819
|
+
"api_path": "organizations/fwd-us",
|
820
|
+
"web_path": "organization/fwd-us",
|
821
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/fwd-us",
|
822
|
+
"name": "FWD.us",
|
823
|
+
"also_known_as": null,
|
824
|
+
"short_description": "FWD.us is a 501(c)(4) lobbying group that aims to lobby and advocate for its version of immigration reform.",
|
825
|
+
"description": "FWD.us is a 501(c)(4) lobbying group based in the United States that aims to lobby and advocate for its version of immigration reform, changes to the U.S. education system to improve science and technology education, and the facilitation of scientific breakthroughs with broad public benefits.\r\n\r\nIt is primarily supported and funded by Silicon Valley entrepreneurs. The initiative is led by [Mark Zuckerberg](https://www.crunchbase.com/person/mark-zuckerberg).",
|
826
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1491533381/etwy1qli8sbbobotwq8v.png",
|
827
|
+
"primary_role": "investor",
|
828
|
+
"role_company": false,
|
829
|
+
"role_investor": true,
|
830
|
+
"role_group": false,
|
831
|
+
"role_school": false,
|
832
|
+
"investor_type": null,
|
833
|
+
"founded_on": "2013-04-10",
|
834
|
+
"founded_on_trust_code": 7,
|
835
|
+
"is_closed": false,
|
836
|
+
"closed_on": null,
|
837
|
+
"closed_on_trust_code": null,
|
838
|
+
"num_employees_min": null,
|
839
|
+
"num_employees_max": null,
|
840
|
+
"stock_exchange": null,
|
841
|
+
"stock_symbol": null,
|
842
|
+
"total_funding_usd": 0,
|
843
|
+
"number_of_investments": 0,
|
844
|
+
"homepage_url": null,
|
845
|
+
"contact_email": null,
|
846
|
+
"phone_number": null,
|
847
|
+
"created_at": 1365696721,
|
848
|
+
"updated_at": 1508621436
|
849
|
+
}
|
850
|
+
}
|
851
|
+
}
|
852
|
+
}]
|
853
|
+
},
|
854
|
+
"advisory_roles":
|
855
|
+
{
|
856
|
+
"cardinality": "OneToMany",
|
857
|
+
"paging":
|
858
|
+
{
|
859
|
+
"total_items": 4,
|
860
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/advisory_roles",
|
861
|
+
"sort_order": "not_ordered"
|
862
|
+
},
|
863
|
+
"items": [
|
864
|
+
{
|
865
|
+
"type": "Job",
|
866
|
+
"uuid": "388c35e65a2d8f8629f3f6c07220ed7f",
|
867
|
+
"properties":
|
868
|
+
{
|
869
|
+
"title": "Chairman of the Board of Directors",
|
870
|
+
"started_on": null,
|
871
|
+
"started_on_trust_code": null,
|
872
|
+
"ended_on": null,
|
873
|
+
"ended_on_trust_code": null,
|
874
|
+
"is_current": true,
|
875
|
+
"created_at": 1460697941,
|
876
|
+
"updated_at": 1463234800
|
877
|
+
},
|
878
|
+
"relationships":
|
879
|
+
{
|
880
|
+
"organization":
|
881
|
+
{
|
882
|
+
"type": "Organization",
|
883
|
+
"uuid": "df6628127f970b439d3e12f64f504fbb",
|
884
|
+
"properties":
|
885
|
+
{
|
886
|
+
"permalink": "facebook",
|
887
|
+
"api_path": "organizations/facebook",
|
888
|
+
"web_path": "organization/facebook",
|
889
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/facebook",
|
890
|
+
"name": "Facebook",
|
891
|
+
"also_known_as": null,
|
892
|
+
"short_description": "Facebook is an online social networking service that enables its users to connect with friends and family as well as make new connections.!",
|
893
|
+
"description": "Facebook is an online social networking service that allows its users to connect with friends and family as well as make new connections. It provides its users with the ability to create a profile, update information, add images, send friend requests, and accept requests from other users. Its features include status update, photo tagging and sharing, and more.\r\n\r\n\r\nFacebook’s profile structure includes a timeline, information related to the user, images of the user, images added by friends of the user, notes, pages, groups, and more. It enables its users to create pages related to entertainment, sports, business, finance, preferences, hobbies, culture, religion, causes, organizations, and a number of other categories. It also enables its users to join or create groups related to a vast number of categories.\r\n\r\n\r\nWith millions of more users, [Friendster](http://www.crunchbase.com/organization/friendster) attempted to acquire the company for $10 million in mid-2004. Facebook turned down the offer and subsequently received $12.7 million in funding from [Accel Partners](http://www.crunchbase.com/organization/accel-partners) at a valuation of around $100 million. Facebook continued to grow opening up to high school students in September 2005 and adding a photo sharing feature the next month. The next spring, Facebook received $25 million in funding from [Greylock Partners](http://www.crunchbase.com/organization/greylock) and [Meritech Capital](http://www.crunchbase.com/organization/meritech-capital-partners) as well as previous investors [Accel Partners](http://www.crunchbase.com/organization/accel-partners) and [Peter Thiel](http://www.crunchbase.com/person/peter-thiel). The pre-money valuation for this deal was about $525 million. Facebook subsequently opened up to work networks eventually amassing over 20,000 work networks. Finally in September 2006, Facebook was opened to anyone with an email address.\r\n\r\n\r\nFacebook continued to receive funding most notably in January 2011 receiving $1.5 billion and valuing the company at $50 billion. A year later in February 2012, Facebook announced that it was filing for its long-anticipated initial public offering. The company went public on May 18, 2012 opening in [NASDAQ](http://www.crunchbase.com/organization/nasdaq-private-market) with shares trading at $42.05.\r\n\r\n\r\nFacebook announced positive numbers in February 2012 upon filing for its IPO. As of July 2013 over 1.15 billion users have logged into Facebook every month and 669 million users daily. Mobile users now make up half of Facebook’s user base with 819 million monthly actives. Facebook is one of the most trafficked sites in the United States. Additionally, Facebook is the top photo sharing site with 250 million photos uploaded per day.\r\n\r\n\r\nThe company has strategic partnership with AXA Group to develop marketing and commercial collaboration in the digital, social, and mobile sphere.\r\n\r\n\r\nFacebook is currently the owner of many applications and services such as Pagemodo Pagebuilder, [RSS Graffiti](http://www.crunchbase.com/organization/rss-graffiti), [Huddle](http://www.crunchbase.com/product/huddle), and more. It is the world’s largest social network with over 1.32 billion monthly active users.\r\n\r\n\r\nFacebook was founded by Mark Zuckerberg on February 4, 2004 in Menlo Park, California.",
|
894
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1502744477/anzcz7nix0gjwho8mfpu.png",
|
895
|
+
"primary_role": "company",
|
896
|
+
"role_company": true,
|
897
|
+
"role_investor": true,
|
898
|
+
"role_group": false,
|
899
|
+
"role_school": false,
|
900
|
+
"investor_type": null,
|
901
|
+
"founded_on": "2004-02-04",
|
902
|
+
"founded_on_trust_code": 7,
|
903
|
+
"is_closed": false,
|
904
|
+
"closed_on": null,
|
905
|
+
"closed_on_trust_code": null,
|
906
|
+
"num_employees_min": 10001,
|
907
|
+
"num_employees_max": 1000000,
|
908
|
+
"stock_exchange": null,
|
909
|
+
"stock_symbol": null,
|
910
|
+
"total_funding_usd": 0,
|
911
|
+
"number_of_investments": 11,
|
912
|
+
"homepage_url": null,
|
913
|
+
"contact_email": null,
|
914
|
+
"phone_number": null,
|
915
|
+
"created_at": 1180153335,
|
916
|
+
"updated_at": 1509400028
|
917
|
+
}
|
918
|
+
}
|
919
|
+
}
|
920
|
+
},
|
921
|
+
{
|
922
|
+
"type": "Job",
|
923
|
+
"uuid": "4368ea4ebc550cd880f0060ba3c3b635",
|
924
|
+
"properties":
|
925
|
+
{
|
926
|
+
"title": "Mentor",
|
927
|
+
"started_on": "2014-07-01",
|
928
|
+
"started_on_trust_code": 7,
|
929
|
+
"ended_on": null,
|
930
|
+
"ended_on_trust_code": null,
|
931
|
+
"is_current": true,
|
932
|
+
"created_at": 1406183022,
|
933
|
+
"updated_at": 1437771265
|
934
|
+
},
|
935
|
+
"relationships":
|
936
|
+
{
|
937
|
+
"organization":
|
938
|
+
{
|
939
|
+
"type": "Organization",
|
940
|
+
"uuid": "53fe51910d9fa9103b6891cabab1bc24",
|
941
|
+
"properties":
|
942
|
+
{
|
943
|
+
"permalink": "chord",
|
944
|
+
"api_path": "organizations/chord",
|
945
|
+
"web_path": "organization/chord",
|
946
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/chord",
|
947
|
+
"name": "CHORD",
|
948
|
+
"also_known_as": null,
|
949
|
+
"short_description": "‘Show off your chord of goods’ - CHORD is photo sharing service that show off one's goods & personal shopping chord.",
|
950
|
+
"description": "‘Show off your chord of goods’ CHORD is photo sharing service that show off one's goods & personal shopping chord. That is based in social networking media via the mobile and online. They will make a new paradigm of SNS market and shopping media. Chord will be launch with iOS in Oct 2014. ",
|
951
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1406182419/ppznevcscjpkepftu1rz.png",
|
952
|
+
"primary_role": "company",
|
953
|
+
"role_company": true,
|
954
|
+
"role_investor": false,
|
955
|
+
"role_group": false,
|
956
|
+
"role_school": false,
|
957
|
+
"investor_type": null,
|
958
|
+
"founded_on": "2013-01-24",
|
959
|
+
"founded_on_trust_code": 7,
|
960
|
+
"is_closed": false,
|
961
|
+
"closed_on": null,
|
962
|
+
"closed_on_trust_code": null,
|
963
|
+
"num_employees_min": 1,
|
964
|
+
"num_employees_max": 10,
|
965
|
+
"stock_exchange": null,
|
966
|
+
"stock_symbol": null,
|
967
|
+
"total_funding_usd": 0,
|
968
|
+
"number_of_investments": 0,
|
969
|
+
"homepage_url": null,
|
970
|
+
"contact_email": null,
|
971
|
+
"phone_number": null,
|
972
|
+
"created_at": 1406182569,
|
973
|
+
"updated_at": 1509270213
|
974
|
+
}
|
975
|
+
}
|
976
|
+
}
|
977
|
+
},
|
978
|
+
{
|
979
|
+
"type": "Job",
|
980
|
+
"uuid": "7077e1634d08b67e0bec8d4f56dc017b",
|
981
|
+
"properties":
|
982
|
+
{
|
983
|
+
"title": "FaceBook-Vendredvd",
|
984
|
+
"started_on": null,
|
985
|
+
"started_on_trust_code": null,
|
986
|
+
"ended_on": null,
|
987
|
+
"ended_on_trust_code": null,
|
988
|
+
"is_current": true,
|
989
|
+
"created_at": 1489961252,
|
990
|
+
"updated_at": 1489961252
|
991
|
+
},
|
992
|
+
"relationships":
|
993
|
+
{
|
994
|
+
"organization":
|
995
|
+
{
|
996
|
+
"type": "Organization",
|
997
|
+
"uuid": "5c1a7d1435f5873cdd3a140c61434f8e",
|
998
|
+
"properties":
|
999
|
+
{
|
1000
|
+
"permalink": "vendredvd-com",
|
1001
|
+
"api_path": "organizations/vendredvd-com",
|
1002
|
+
"web_path": "organization/vendredvd-com",
|
1003
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/vendredvd-com",
|
1004
|
+
"name": "Vendredvd",
|
1005
|
+
"also_known_as": [
|
1006
|
+
"Vendredvd",
|
1007
|
+
"vendredvd.com",
|
1008
|
+
"vendredvd.fr",
|
1009
|
+
"vendredvdavis",
|
1010
|
+
"www.vendredvd.com"
|
1011
|
+
],
|
1012
|
+
"short_description": "VENDREDVD.COM Vendeur de matériel informatique en France",
|
1013
|
+
"description": "Notre enseigne vous propose un savoir-faire professionnel ainsi qu'un accueil chaleureux et convivial.\r\n\r\nDiverses prestations vous sont proposées telles que la réparation d'ordinateurs et de tablettes, la vente de pièces détachées, le stockage, la téléphonie et les accessoires.\r\n\r\nUn rayon dédié à l'image, le son et les jeux vidéo est également à votre disposition.\r\n\r\nSpécialiste de l'informatique depuis 2011, vendredvd.com reste à votre disposition pour toutes informations complémentaires.\r\n\r\n\"Nos tarifs sont exprimés en TTC\"\r\n\r\nHoraires\r\n\r\nLundi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nMardi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nMercredi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nJeudi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nVendredi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nSamedi\r\n09h00 - 12h00\r\n14h00 - 19h00\r\nInformations clés\r\n\r\nhoraires d'ouverture, vendredvd, vendredvd ouverture, horraire vendredvd, site de vendredvd, avis site de vendredvd, vendredvd avis client, site vendredvd, houre vendredvd, open vendredvd, vendredvd.\r\nClientèle\r\n\r\nParticuliers\r\nProfessionnels\r\nSites et réseaux sociaux\r\n\r\n www.vendredvd.com\r\n https://www.facebook.com/notes/vendredvdcom/page-officiel-vendredvd/808232532522095\r\n https://twitter.com/vendredvd\r\n www.vendredvd.com/service-blog.html\r\nPrestations\r\n\r\nCommande en ligne Livraison offerte à partir de 75 € Service après-vente Suivi de commande Frais de port gratuit à partir de 75 € d'achat sur le site internet 20 € de réduction pour 100 € d'achat sur le site internet 60 € de réduction dès 500 € d'achat sur le site internet\r\n\r\nVendredvd sells computers, mobile devices, PC equipment, PS4s, PSPs, Apple mac, imac, macbook air, macbook pro, macbook retina, and accessories for individuals and businesses.\r\n\r\nVendredvd is a France-based company that was founded in 2011.\r\n\r\n\r\n***********\r\ninformatique vendredvd, achat sur vendredvd, Vendredvd avis, avis vendredvd, (www.vendredvd.com), site de vendredvd, vendredvd.com, vendredvd.fr, avis sur le site de vendredvd, critiques vendredvd",
|
1014
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1449870983/u7vdygjugbammi4jf8vy.jpg",
|
1015
|
+
"primary_role": "company",
|
1016
|
+
"role_company": true,
|
1017
|
+
"role_investor": false,
|
1018
|
+
"role_group": false,
|
1019
|
+
"role_school": false,
|
1020
|
+
"investor_type": null,
|
1021
|
+
"founded_on": "2011-01-01",
|
1022
|
+
"founded_on_trust_code": 7,
|
1023
|
+
"is_closed": false,
|
1024
|
+
"closed_on": null,
|
1025
|
+
"closed_on_trust_code": null,
|
1026
|
+
"num_employees_min": 1,
|
1027
|
+
"num_employees_max": 10,
|
1028
|
+
"stock_exchange": null,
|
1029
|
+
"stock_symbol": null,
|
1030
|
+
"total_funding_usd": 0,
|
1031
|
+
"number_of_investments": 0,
|
1032
|
+
"homepage_url": null,
|
1033
|
+
"contact_email": "contact@vendredvd.com",
|
1034
|
+
"phone_number": "+033678777594",
|
1035
|
+
"created_at": 1449871074,
|
1036
|
+
"updated_at": 1506684380
|
1037
|
+
}
|
1038
|
+
}
|
1039
|
+
}
|
1040
|
+
},
|
1041
|
+
{
|
1042
|
+
"type": "Job",
|
1043
|
+
"uuid": "cc909f2b0bb009eb727edd963e86c9d7",
|
1044
|
+
"properties":
|
1045
|
+
{
|
1046
|
+
"title": "Member of the Board of Directors",
|
1047
|
+
"started_on": null,
|
1048
|
+
"started_on_trust_code": null,
|
1049
|
+
"ended_on": null,
|
1050
|
+
"ended_on_trust_code": null,
|
1051
|
+
"is_current": true,
|
1052
|
+
"created_at": 1426400558,
|
1053
|
+
"updated_at": 1463234833
|
1054
|
+
},
|
1055
|
+
"relationships":
|
1056
|
+
{
|
1057
|
+
"organization":
|
1058
|
+
{
|
1059
|
+
"type": "Organization",
|
1060
|
+
"uuid": "9f283fa81cb10cfe2eb0585377b3f99f",
|
1061
|
+
"properties":
|
1062
|
+
{
|
1063
|
+
"permalink": "breakthrough-prize",
|
1064
|
+
"api_path": "organizations/breakthrough-prize",
|
1065
|
+
"web_path": "organization/breakthrough-prize",
|
1066
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/breakthrough-prize",
|
1067
|
+
"name": "Breakthrough Prize",
|
1068
|
+
"also_known_as": null,
|
1069
|
+
"short_description": "Breakthrough Prize honors important achievements in the categories of fundamental physics.",
|
1070
|
+
"description": "Breakthrough Prize honors important achievements in the categories of fundamental physics. It is sponsored by Sergey Brin and Anne Wojcicki, Mark Zuckerberg and Priscilla Chan, Yuri and Julia Milner, and Jack Ma and Cathy Zhang.\n\nBreakthrough Prize offers $3 million dollars each in prize money to the laureates. They are supposed to attend a televised award ceremony designed to celebrate their achievements and inspire the next generation of scientists. As part of the ceremony schedule, they also engage in a program of lectures and discussions.\n\nBreakthrough Prize was founded on July 29, 2012.",
|
1071
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1491533612/b3xzwx6rzhixmhvmpsxo.png",
|
1072
|
+
"primary_role": "company",
|
1073
|
+
"role_company": true,
|
1074
|
+
"role_investor": false,
|
1075
|
+
"role_group": false,
|
1076
|
+
"role_school": false,
|
1077
|
+
"investor_type": null,
|
1078
|
+
"founded_on": "2012-07-29",
|
1079
|
+
"founded_on_trust_code": 7,
|
1080
|
+
"is_closed": false,
|
1081
|
+
"closed_on": null,
|
1082
|
+
"closed_on_trust_code": null,
|
1083
|
+
"num_employees_min": null,
|
1084
|
+
"num_employees_max": null,
|
1085
|
+
"stock_exchange": null,
|
1086
|
+
"stock_symbol": null,
|
1087
|
+
"total_funding_usd": 0,
|
1088
|
+
"number_of_investments": 0,
|
1089
|
+
"homepage_url": null,
|
1090
|
+
"contact_email": "office@breakthroughprize.org",
|
1091
|
+
"phone_number": null,
|
1092
|
+
"created_at": 1415891403,
|
1093
|
+
"updated_at": 1502961050
|
1094
|
+
}
|
1095
|
+
}
|
1096
|
+
}
|
1097
|
+
}]
|
1098
|
+
},
|
1099
|
+
"founded_companies":
|
1100
|
+
{
|
1101
|
+
"cardinality": "OneToMany",
|
1102
|
+
"paging":
|
1103
|
+
{
|
1104
|
+
"total_items": 10,
|
1105
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/founded_companies",
|
1106
|
+
"sort_order": "not_ordered"
|
1107
|
+
},
|
1108
|
+
"items": [
|
1109
|
+
{
|
1110
|
+
"type": "Organization",
|
1111
|
+
"uuid": "059c9ae2ff8e8d162c03ed823639265c",
|
1112
|
+
"properties":
|
1113
|
+
{
|
1114
|
+
"permalink": "telecom-infra-project",
|
1115
|
+
"api_path": "organizations/telecom-infra-project",
|
1116
|
+
"web_path": "organization/telecom-infra-project",
|
1117
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/telecom-infra-project",
|
1118
|
+
"name": "Telecom Infra Project",
|
1119
|
+
"also_known_as": null,
|
1120
|
+
"short_description": "The \"TIP\" is a Facebook founded initiative, uniting telco companies to bring internet connection to the missing 4BN people in the world",
|
1121
|
+
"description": "TIP members include operators, infrastructure providers, system integrators, and other technology companies joining together to innovate new technologies and approaches to building and deploying telecom network infrastructure across emerging and more mature markets.",
|
1122
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1505312764/lvitjb6ioo7hun0vr591.png",
|
1123
|
+
"primary_role": "company",
|
1124
|
+
"role_company": true,
|
1125
|
+
"role_investor": false,
|
1126
|
+
"role_group": false,
|
1127
|
+
"role_school": false,
|
1128
|
+
"investor_type": null,
|
1129
|
+
"founded_on": "2016-03-01",
|
1130
|
+
"founded_on_trust_code": 6,
|
1131
|
+
"is_closed": false,
|
1132
|
+
"closed_on": null,
|
1133
|
+
"closed_on_trust_code": null,
|
1134
|
+
"num_employees_min": null,
|
1135
|
+
"num_employees_max": null,
|
1136
|
+
"stock_exchange": null,
|
1137
|
+
"stock_symbol": null,
|
1138
|
+
"total_funding_usd": 0,
|
1139
|
+
"number_of_investments": 0,
|
1140
|
+
"homepage_url": null,
|
1141
|
+
"contact_email": null,
|
1142
|
+
"phone_number": null,
|
1143
|
+
"created_at": 1463149329,
|
1144
|
+
"updated_at": 1506472101
|
1145
|
+
}
|
1146
|
+
},
|
1147
|
+
{
|
1148
|
+
"type": "Organization",
|
1149
|
+
"uuid": "308a053871fdc7543c9dcc536d613e2a",
|
1150
|
+
"properties":
|
1151
|
+
{
|
1152
|
+
"permalink": "breakthrough-energy-pty-ltd",
|
1153
|
+
"api_path": "organizations/breakthrough-energy-pty-ltd",
|
1154
|
+
"web_path": "organization/breakthrough-energy-pty-ltd",
|
1155
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/breakthrough-energy-pty-ltd",
|
1156
|
+
"name": "Breakthrough Energy Coalition",
|
1157
|
+
"also_known_as": null,
|
1158
|
+
"short_description": "The world needs widely available energy that is reliable, affordable and does not produce carbon.",
|
1159
|
+
"description": "Technology will help solve our energy issues. The urgency of climate change and the energy needs in the poorest parts of the world require an aggressive global program for zero-emission energy innovation. The new model will be a public-private partnership between governments, research institutions, and investors. Scientists, engineers, and entrepreneurs can invent and scale the innovative technologies that will limit the impact of climate change while providing affordable and reliable energy to everyone. The existing system of basic research, clean energy investment, regulatory frameworks, and subsidies fails to sufficiently mobilize investment in truly transformative energy solutions for the future. We can’t wait for the system to change through normal cycles.",
|
1160
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1491533103/qngyyqxrzm5nv32ywipp.png",
|
1161
|
+
"primary_role": "company",
|
1162
|
+
"role_company": true,
|
1163
|
+
"role_investor": false,
|
1164
|
+
"role_group": false,
|
1165
|
+
"role_school": false,
|
1166
|
+
"investor_type": null,
|
1167
|
+
"founded_on": "2015-01-01",
|
1168
|
+
"founded_on_trust_code": 5,
|
1169
|
+
"is_closed": false,
|
1170
|
+
"closed_on": null,
|
1171
|
+
"closed_on_trust_code": null,
|
1172
|
+
"num_employees_min": null,
|
1173
|
+
"num_employees_max": null,
|
1174
|
+
"stock_exchange": null,
|
1175
|
+
"stock_symbol": null,
|
1176
|
+
"total_funding_usd": 0,
|
1177
|
+
"number_of_investments": 0,
|
1178
|
+
"homepage_url": null,
|
1179
|
+
"contact_email": null,
|
1180
|
+
"phone_number": null,
|
1181
|
+
"created_at": 1390569120,
|
1182
|
+
"updated_at": 1498047429
|
1183
|
+
}
|
1184
|
+
},
|
1185
|
+
{
|
1186
|
+
"type": "Organization",
|
1187
|
+
"uuid": "94a457f016b987a6970a735c7f4ddd4e",
|
1188
|
+
"properties":
|
1189
|
+
{
|
1190
|
+
"permalink": "startup-education",
|
1191
|
+
"api_path": "organizations/startup-education",
|
1192
|
+
"web_path": "organization/startup-education",
|
1193
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/startup-education",
|
1194
|
+
"name": "Startup:Education",
|
1195
|
+
"also_known_as": null,
|
1196
|
+
"short_description": "Startup:Education is a new foundation launched by Facebook founder and CEO Mark Zuckerberg with $100 million in September, 2010.",
|
1197
|
+
"description": "Startup:Education is a new foundation launched by Facebook founder and CEO Mark Zuckerberg with $100 million in September, 2010. Their mission is to take a startup approach to building a better education system for all students.\r\n\r\nStartup:Education's initial focus is Newark, N.J., working to transform the city's public schools so that all children have access to a high quality education and so that other cities can use Newark as a model to reform their own schools.",
|
1198
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1491540639/p1vcwwlyz1jaawmpyes1.png",
|
1199
|
+
"primary_role": "investor",
|
1200
|
+
"role_company": false,
|
1201
|
+
"role_investor": true,
|
1202
|
+
"role_group": false,
|
1203
|
+
"role_school": false,
|
1204
|
+
"investor_type": [
|
1205
|
+
"venture_debt"
|
1206
|
+
],
|
1207
|
+
"founded_on": null,
|
1208
|
+
"founded_on_trust_code": null,
|
1209
|
+
"is_closed": false,
|
1210
|
+
"closed_on": null,
|
1211
|
+
"closed_on_trust_code": null,
|
1212
|
+
"num_employees_min": null,
|
1213
|
+
"num_employees_max": null,
|
1214
|
+
"stock_exchange": null,
|
1215
|
+
"stock_symbol": null,
|
1216
|
+
"total_funding_usd": 0,
|
1217
|
+
"number_of_investments": 3,
|
1218
|
+
"homepage_url": null,
|
1219
|
+
"contact_email": "info@startupeducation.org",
|
1220
|
+
"phone_number": null,
|
1221
|
+
"created_at": 1382388666,
|
1222
|
+
"updated_at": 1491540647
|
1223
|
+
}
|
1224
|
+
},
|
1225
|
+
{
|
1226
|
+
"type": "Organization",
|
1227
|
+
"uuid": "959cb6063a54bf70a50e8049ebb781be",
|
1228
|
+
"properties":
|
1229
|
+
{
|
1230
|
+
"permalink": "chan-zuckerberg-initiative",
|
1231
|
+
"api_path": "organizations/chan-zuckerberg-initiative",
|
1232
|
+
"web_path": "organization/chan-zuckerberg-initiative",
|
1233
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/chan-zuckerberg-initiative",
|
1234
|
+
"name": "Chan Zuckerberg Initiative",
|
1235
|
+
"also_known_as": null,
|
1236
|
+
"short_description": "Chan Zuckerberg Initiative promotes equality and focuses on advancing human potential.",
|
1237
|
+
"description": "At the Chan Zuckerberg Initiative, they empower strong, independent leaders from academia and government, as well as the technology and nonprofit sectors to do the best work possible. They engage directly in the communities they serve because no one understands their society’s challenges like those who live them everyday. These partners help us identify problems and opportunities, learn fast and iterate toward their goals for the next century.",
|
1238
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1485204241/cnl8h4nejt6jzc3ji3oi.png",
|
1239
|
+
"primary_role": "company",
|
1240
|
+
"role_company": true,
|
1241
|
+
"role_investor": true,
|
1242
|
+
"role_group": false,
|
1243
|
+
"role_school": false,
|
1244
|
+
"investor_type": null,
|
1245
|
+
"founded_on": "2009-12-01",
|
1246
|
+
"founded_on_trust_code": 6,
|
1247
|
+
"is_closed": false,
|
1248
|
+
"closed_on": null,
|
1249
|
+
"closed_on_trust_code": null,
|
1250
|
+
"num_employees_min": 1,
|
1251
|
+
"num_employees_max": 10,
|
1252
|
+
"stock_exchange": null,
|
1253
|
+
"stock_symbol": null,
|
1254
|
+
"total_funding_usd": 0,
|
1255
|
+
"number_of_investments": 13,
|
1256
|
+
"homepage_url": null,
|
1257
|
+
"contact_email": null,
|
1258
|
+
"phone_number": null,
|
1259
|
+
"created_at": 1462472131,
|
1260
|
+
"updated_at": 1509400083
|
1261
|
+
}
|
1262
|
+
},
|
1263
|
+
{
|
1264
|
+
"type": "Organization",
|
1265
|
+
"uuid": "9f283fa81cb10cfe2eb0585377b3f99f",
|
1266
|
+
"properties":
|
1267
|
+
{
|
1268
|
+
"permalink": "breakthrough-prize",
|
1269
|
+
"api_path": "organizations/breakthrough-prize",
|
1270
|
+
"web_path": "organization/breakthrough-prize",
|
1271
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/breakthrough-prize",
|
1272
|
+
"name": "Breakthrough Prize",
|
1273
|
+
"also_known_as": null,
|
1274
|
+
"short_description": "Breakthrough Prize honors important achievements in the categories of fundamental physics.",
|
1275
|
+
"description": "Breakthrough Prize honors important achievements in the categories of fundamental physics. It is sponsored by Sergey Brin and Anne Wojcicki, Mark Zuckerberg and Priscilla Chan, Yuri and Julia Milner, and Jack Ma and Cathy Zhang.\n\nBreakthrough Prize offers $3 million dollars each in prize money to the laureates. They are supposed to attend a televised award ceremony designed to celebrate their achievements and inspire the next generation of scientists. As part of the ceremony schedule, they also engage in a program of lectures and discussions.\n\nBreakthrough Prize was founded on July 29, 2012.",
|
1276
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1491533612/b3xzwx6rzhixmhvmpsxo.png",
|
1277
|
+
"primary_role": "company",
|
1278
|
+
"role_company": true,
|
1279
|
+
"role_investor": false,
|
1280
|
+
"role_group": false,
|
1281
|
+
"role_school": false,
|
1282
|
+
"investor_type": null,
|
1283
|
+
"founded_on": "2012-07-29",
|
1284
|
+
"founded_on_trust_code": 7,
|
1285
|
+
"is_closed": false,
|
1286
|
+
"closed_on": null,
|
1287
|
+
"closed_on_trust_code": null,
|
1288
|
+
"num_employees_min": null,
|
1289
|
+
"num_employees_max": null,
|
1290
|
+
"stock_exchange": null,
|
1291
|
+
"stock_symbol": null,
|
1292
|
+
"total_funding_usd": 0,
|
1293
|
+
"number_of_investments": 0,
|
1294
|
+
"homepage_url": null,
|
1295
|
+
"contact_email": "office@breakthroughprize.org",
|
1296
|
+
"phone_number": null,
|
1297
|
+
"created_at": 1415891403,
|
1298
|
+
"updated_at": 1502961050
|
1299
|
+
}
|
1300
|
+
},
|
1301
|
+
{
|
1302
|
+
"type": "Organization",
|
1303
|
+
"uuid": "a43794f6e5277a20ea52ed8025e1244d",
|
1304
|
+
"properties":
|
1305
|
+
{
|
1306
|
+
"permalink": "fwd-us",
|
1307
|
+
"api_path": "organizations/fwd-us",
|
1308
|
+
"web_path": "organization/fwd-us",
|
1309
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/fwd-us",
|
1310
|
+
"name": "FWD.us",
|
1311
|
+
"also_known_as": null,
|
1312
|
+
"short_description": "FWD.us is a 501(c)(4) lobbying group that aims to lobby and advocate for its version of immigration reform.",
|
1313
|
+
"description": "FWD.us is a 501(c)(4) lobbying group based in the United States that aims to lobby and advocate for its version of immigration reform, changes to the U.S. education system to improve science and technology education, and the facilitation of scientific breakthroughs with broad public benefits.\r\n\r\nIt is primarily supported and funded by Silicon Valley entrepreneurs. The initiative is led by [Mark Zuckerberg](https://www.crunchbase.com/person/mark-zuckerberg).",
|
1314
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1491533381/etwy1qli8sbbobotwq8v.png",
|
1315
|
+
"primary_role": "investor",
|
1316
|
+
"role_company": false,
|
1317
|
+
"role_investor": true,
|
1318
|
+
"role_group": false,
|
1319
|
+
"role_school": false,
|
1320
|
+
"investor_type": null,
|
1321
|
+
"founded_on": "2013-04-10",
|
1322
|
+
"founded_on_trust_code": 7,
|
1323
|
+
"is_closed": false,
|
1324
|
+
"closed_on": null,
|
1325
|
+
"closed_on_trust_code": null,
|
1326
|
+
"num_employees_min": null,
|
1327
|
+
"num_employees_max": null,
|
1328
|
+
"stock_exchange": null,
|
1329
|
+
"stock_symbol": null,
|
1330
|
+
"total_funding_usd": 0,
|
1331
|
+
"number_of_investments": 0,
|
1332
|
+
"homepage_url": null,
|
1333
|
+
"contact_email": null,
|
1334
|
+
"phone_number": null,
|
1335
|
+
"created_at": 1365696721,
|
1336
|
+
"updated_at": 1508621436
|
1337
|
+
}
|
1338
|
+
},
|
1339
|
+
{
|
1340
|
+
"type": "Organization",
|
1341
|
+
"uuid": "af7a8b39bff740c61d2aeb89709b9540",
|
1342
|
+
"properties":
|
1343
|
+
{
|
1344
|
+
"permalink": "chan-zuckerberg-biohub",
|
1345
|
+
"api_path": "organizations/chan-zuckerberg-biohub",
|
1346
|
+
"web_path": "organization/chan-zuckerberg-biohub",
|
1347
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/chan-zuckerberg-biohub",
|
1348
|
+
"name": "Chan Zuckerberg Biohub",
|
1349
|
+
"also_known_as": [
|
1350
|
+
"Biohub",
|
1351
|
+
"CZ Biohub"
|
1352
|
+
],
|
1353
|
+
"short_description": "Chan Zuckerberg Biohub is a non-profit medical research organization started by Priscilla Chan and Mark Zuckerberg.",
|
1354
|
+
"description": "Chan Zuckerberg Biohub is a non-profit medical research organization started by Priscilla Chan and Mark Zuckerberg.",
|
1355
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1486561349/xthpn1jrdvzaciqmuf2z.png",
|
1356
|
+
"primary_role": "company",
|
1357
|
+
"role_company": true,
|
1358
|
+
"role_investor": false,
|
1359
|
+
"role_group": false,
|
1360
|
+
"role_school": false,
|
1361
|
+
"investor_type": null,
|
1362
|
+
"founded_on": "2016-01-01",
|
1363
|
+
"founded_on_trust_code": 5,
|
1364
|
+
"is_closed": false,
|
1365
|
+
"closed_on": null,
|
1366
|
+
"closed_on_trust_code": null,
|
1367
|
+
"num_employees_min": 11,
|
1368
|
+
"num_employees_max": 50,
|
1369
|
+
"stock_exchange": null,
|
1370
|
+
"stock_symbol": null,
|
1371
|
+
"total_funding_usd": 0,
|
1372
|
+
"number_of_investments": 0,
|
1373
|
+
"homepage_url": null,
|
1374
|
+
"contact_email": "jobs@czbiohub.org",
|
1375
|
+
"phone_number": null,
|
1376
|
+
"created_at": 1486561465,
|
1377
|
+
"updated_at": 1497152657
|
1378
|
+
}
|
1379
|
+
},
|
1380
|
+
{
|
1381
|
+
"type": "Organization",
|
1382
|
+
"uuid": "b3b721ad502ea7bec76201b4bc172dec",
|
1383
|
+
"properties":
|
1384
|
+
{
|
1385
|
+
"permalink": "internet-org",
|
1386
|
+
"api_path": "organizations/internet-org",
|
1387
|
+
"web_path": "organization/internet-org",
|
1388
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/internet-org",
|
1389
|
+
"name": "Internet.org",
|
1390
|
+
"also_known_as": null,
|
1391
|
+
"short_description": "Every one of us. Everywhere. Connected.",
|
1392
|
+
"description": "Internet.org is a global partnership between technology leaders, nonprofits, local communities and experts who are working together to bring the internet to the two thirds of the world's population that doesn't have it. Sharing tools, resources and best practices, Internet.org partners will explore solutions in three major opportunity areas: affordability, efficiency and business models.\r\n\r\nMaking the internet available to every person on earth is a goal too large and too important for any one company, group, or government to solve alone. Internet.org’s partners have come together to meet this challenge because they believe in the power of a connected world: Ericsson, MediaTek, Opera, Samsung, Facebook, Nokia, Qualcomm.",
|
1393
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1419461907/pdggqsswgmetd5fza6az.png",
|
1394
|
+
"primary_role": "company",
|
1395
|
+
"role_company": true,
|
1396
|
+
"role_investor": false,
|
1397
|
+
"role_group": false,
|
1398
|
+
"role_school": false,
|
1399
|
+
"investor_type": null,
|
1400
|
+
"founded_on": "2013-09-09",
|
1401
|
+
"founded_on_trust_code": 7,
|
1402
|
+
"is_closed": false,
|
1403
|
+
"closed_on": null,
|
1404
|
+
"closed_on_trust_code": null,
|
1405
|
+
"num_employees_min": null,
|
1406
|
+
"num_employees_max": null,
|
1407
|
+
"stock_exchange": null,
|
1408
|
+
"stock_symbol": null,
|
1409
|
+
"total_funding_usd": 0,
|
1410
|
+
"number_of_investments": 0,
|
1411
|
+
"homepage_url": null,
|
1412
|
+
"contact_email": null,
|
1413
|
+
"phone_number": null,
|
1414
|
+
"created_at": 1377129623,
|
1415
|
+
"updated_at": 1506472117
|
1416
|
+
}
|
1417
|
+
},
|
1418
|
+
{
|
1419
|
+
"type": "Organization",
|
1420
|
+
"uuid": "c83cc9902b6ead2d1a85649e53a54264",
|
1421
|
+
"properties":
|
1422
|
+
{
|
1423
|
+
"permalink": "mdl-digital",
|
1424
|
+
"api_path": "organizations/mdl-digital",
|
1425
|
+
"web_path": "organization/mdl-digital",
|
1426
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/mdl-digital",
|
1427
|
+
"name": "Alphabet Videos",
|
1428
|
+
"also_known_as": null,
|
1429
|
+
"short_description": "Alphabet Videos",
|
1430
|
+
"description": null,
|
1431
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1474580770/uzhcvhn46hreuf4jj4iv.png",
|
1432
|
+
"primary_role": "company",
|
1433
|
+
"role_company": true,
|
1434
|
+
"role_investor": false,
|
1435
|
+
"role_group": false,
|
1436
|
+
"role_school": false,
|
1437
|
+
"investor_type": null,
|
1438
|
+
"founded_on": "2016-02-08",
|
1439
|
+
"founded_on_trust_code": 7,
|
1440
|
+
"is_closed": false,
|
1441
|
+
"closed_on": null,
|
1442
|
+
"closed_on_trust_code": null,
|
1443
|
+
"num_employees_min": null,
|
1444
|
+
"num_employees_max": null,
|
1445
|
+
"stock_exchange": null,
|
1446
|
+
"stock_symbol": null,
|
1447
|
+
"total_funding_usd": 0,
|
1448
|
+
"number_of_investments": 0,
|
1449
|
+
"homepage_url": null,
|
1450
|
+
"contact_email": null,
|
1451
|
+
"phone_number": null,
|
1452
|
+
"created_at": 1471725144,
|
1453
|
+
"updated_at": 1474581504
|
1454
|
+
}
|
1455
|
+
},
|
1456
|
+
{
|
1457
|
+
"type": "Organization",
|
1458
|
+
"uuid": "df6628127f970b439d3e12f64f504fbb",
|
1459
|
+
"properties":
|
1460
|
+
{
|
1461
|
+
"permalink": "facebook",
|
1462
|
+
"api_path": "organizations/facebook",
|
1463
|
+
"web_path": "organization/facebook",
|
1464
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/facebook",
|
1465
|
+
"name": "Facebook",
|
1466
|
+
"also_known_as": null,
|
1467
|
+
"short_description": "Facebook is an online social networking service that enables its users to connect with friends and family as well as make new connections.!",
|
1468
|
+
"description": "Facebook is an online social networking service that allows its users to connect with friends and family as well as make new connections. It provides its users with the ability to create a profile, update information, add images, send friend requests, and accept requests from other users. Its features include status update, photo tagging and sharing, and more.\r\n\r\n\r\nFacebook’s profile structure includes a timeline, information related to the user, images of the user, images added by friends of the user, notes, pages, groups, and more. It enables its users to create pages related to entertainment, sports, business, finance, preferences, hobbies, culture, religion, causes, organizations, and a number of other categories. It also enables its users to join or create groups related to a vast number of categories.\r\n\r\n\r\nWith millions of more users, [Friendster](http://www.crunchbase.com/organization/friendster) attempted to acquire the company for $10 million in mid-2004. Facebook turned down the offer and subsequently received $12.7 million in funding from [Accel Partners](http://www.crunchbase.com/organization/accel-partners) at a valuation of around $100 million. Facebook continued to grow opening up to high school students in September 2005 and adding a photo sharing feature the next month. The next spring, Facebook received $25 million in funding from [Greylock Partners](http://www.crunchbase.com/organization/greylock) and [Meritech Capital](http://www.crunchbase.com/organization/meritech-capital-partners) as well as previous investors [Accel Partners](http://www.crunchbase.com/organization/accel-partners) and [Peter Thiel](http://www.crunchbase.com/person/peter-thiel). The pre-money valuation for this deal was about $525 million. Facebook subsequently opened up to work networks eventually amassing over 20,000 work networks. Finally in September 2006, Facebook was opened to anyone with an email address.\r\n\r\n\r\nFacebook continued to receive funding most notably in January 2011 receiving $1.5 billion and valuing the company at $50 billion. A year later in February 2012, Facebook announced that it was filing for its long-anticipated initial public offering. The company went public on May 18, 2012 opening in [NASDAQ](http://www.crunchbase.com/organization/nasdaq-private-market) with shares trading at $42.05.\r\n\r\n\r\nFacebook announced positive numbers in February 2012 upon filing for its IPO. As of July 2013 over 1.15 billion users have logged into Facebook every month and 669 million users daily. Mobile users now make up half of Facebook’s user base with 819 million monthly actives. Facebook is one of the most trafficked sites in the United States. Additionally, Facebook is the top photo sharing site with 250 million photos uploaded per day.\r\n\r\n\r\nThe company has strategic partnership with AXA Group to develop marketing and commercial collaboration in the digital, social, and mobile sphere.\r\n\r\n\r\nFacebook is currently the owner of many applications and services such as Pagemodo Pagebuilder, [RSS Graffiti](http://www.crunchbase.com/organization/rss-graffiti), [Huddle](http://www.crunchbase.com/product/huddle), and more. It is the world’s largest social network with over 1.32 billion monthly active users.\r\n\r\n\r\nFacebook was founded by Mark Zuckerberg on February 4, 2004 in Menlo Park, California.",
|
1469
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1502744477/anzcz7nix0gjwho8mfpu.png",
|
1470
|
+
"primary_role": "company",
|
1471
|
+
"role_company": true,
|
1472
|
+
"role_investor": true,
|
1473
|
+
"role_group": false,
|
1474
|
+
"role_school": false,
|
1475
|
+
"investor_type": null,
|
1476
|
+
"founded_on": "2004-02-04",
|
1477
|
+
"founded_on_trust_code": 7,
|
1478
|
+
"is_closed": false,
|
1479
|
+
"closed_on": null,
|
1480
|
+
"closed_on_trust_code": null,
|
1481
|
+
"num_employees_min": 10001,
|
1482
|
+
"num_employees_max": 1000000,
|
1483
|
+
"stock_exchange": null,
|
1484
|
+
"stock_symbol": null,
|
1485
|
+
"total_funding_usd": 0,
|
1486
|
+
"number_of_investments": 11,
|
1487
|
+
"homepage_url": null,
|
1488
|
+
"contact_email": null,
|
1489
|
+
"phone_number": null,
|
1490
|
+
"created_at": 1180153335,
|
1491
|
+
"updated_at": 1509400028
|
1492
|
+
}
|
1493
|
+
}]
|
1494
|
+
},
|
1495
|
+
"investments":
|
1496
|
+
{
|
1497
|
+
"cardinality": "OneToMany",
|
1498
|
+
"paging":
|
1499
|
+
{
|
1500
|
+
"total_items": 7,
|
1501
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/investments",
|
1502
|
+
"sort_order": "announced_on DESC"
|
1503
|
+
},
|
1504
|
+
"items": [
|
1505
|
+
{
|
1506
|
+
"type": "Investment",
|
1507
|
+
"uuid": "cb9843771203c00b5099da7ed57ef642",
|
1508
|
+
"properties":
|
1509
|
+
{
|
1510
|
+
"money_invested": null,
|
1511
|
+
"money_invested_currency_code": null,
|
1512
|
+
"money_invested_usd": null,
|
1513
|
+
"is_lead_investor": false,
|
1514
|
+
"announced_on": "2016-04-26",
|
1515
|
+
"announced_on_trust_code": 7,
|
1516
|
+
"created_at": 1476353678,
|
1517
|
+
"updated_at": 1476353678
|
1518
|
+
},
|
1519
|
+
"relationships":
|
1520
|
+
{
|
1521
|
+
"funding_round":
|
1522
|
+
{
|
1523
|
+
"type": "FundingRound",
|
1524
|
+
"uuid": "3a19043431f504b4885666ff6eee1b3e",
|
1525
|
+
"properties":
|
1526
|
+
{
|
1527
|
+
"permalink": "3a19043431f504b4885666ff6eee1b3e",
|
1528
|
+
"api_path": "funding-rounds/3a19043431f504b4885666ff6eee1b3e",
|
1529
|
+
"web_path": "funding-round/3a19043431f504b4885666ff6eee1b3e",
|
1530
|
+
"api_url": "https://api.crunchbase.com/v3.1/funding-rounds/3a19043431f504b4885666ff6eee1b3e",
|
1531
|
+
"funding_type": "grant",
|
1532
|
+
"series": null,
|
1533
|
+
"series_qualifier": null,
|
1534
|
+
"announced_on": "2016-04-26",
|
1535
|
+
"announced_on_trust_code": 7,
|
1536
|
+
"closed_on": null,
|
1537
|
+
"closed_on_trust_code": null,
|
1538
|
+
"money_raised": 23000000,
|
1539
|
+
"money_raised_currency_code": "USD",
|
1540
|
+
"money_raised_usd": 23000000,
|
1541
|
+
"target_money_raised": null,
|
1542
|
+
"target_money_raised_currency_code": null,
|
1543
|
+
"target_money_raised_usd": null,
|
1544
|
+
"pre_money_valuation": null,
|
1545
|
+
"pre_money_valuation_currency_code": null,
|
1546
|
+
"pre_money_valuation_usd": null,
|
1547
|
+
"created_at": 1461735998,
|
1548
|
+
"updated_at": 1476353688
|
1549
|
+
},
|
1550
|
+
"relationships":
|
1551
|
+
{
|
1552
|
+
"funded_organization":
|
1553
|
+
{
|
1554
|
+
"type": "Organization",
|
1555
|
+
"uuid": "3adf836501a3c703a2748bc22fbbf4b3",
|
1556
|
+
"properties":
|
1557
|
+
{
|
1558
|
+
"permalink": "code-org",
|
1559
|
+
"api_path": "organizations/code-org",
|
1560
|
+
"web_path": "organization/code-org",
|
1561
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/code-org",
|
1562
|
+
"name": "Code.org",
|
1563
|
+
"also_known_as": null,
|
1564
|
+
"short_description": "Code.org is a non-profit foundation focusing on developing computer programming education in the U.S.",
|
1565
|
+
"description": "Code.org is a non-profit foundation dedicated to growing computer programming education. \r\n\r\nCode.org plans to do the following: \r\nSpreading the word that there is a worldwide shortage of computer programmers, and that it's much easier to learn to program than you think.\r\n\r\nBuilding an authoritative database of all programming schools, whether they are online courses, brick+mortar schools or summer camps.\r\n\r\nOur vision is that computer science and computer programming are included in the core curriculum in U.S. education, alongside other STEM (science technology engineering math) courses, such as biology, physics, chemistry and math.",
|
1566
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397195815/8f56cb6f52abc278589ec53e5a62ef65.png",
|
1567
|
+
"primary_role": "company",
|
1568
|
+
"role_company": true,
|
1569
|
+
"role_investor": false,
|
1570
|
+
"role_group": false,
|
1571
|
+
"role_school": false,
|
1572
|
+
"investor_type": null,
|
1573
|
+
"founded_on": "2012-01-01",
|
1574
|
+
"founded_on_trust_code": 5,
|
1575
|
+
"is_closed": false,
|
1576
|
+
"closed_on": null,
|
1577
|
+
"closed_on_trust_code": null,
|
1578
|
+
"num_employees_min": 51,
|
1579
|
+
"num_employees_max": 100,
|
1580
|
+
"stock_exchange": null,
|
1581
|
+
"stock_symbol": null,
|
1582
|
+
"total_funding_usd": 0,
|
1583
|
+
"number_of_investments": 0,
|
1584
|
+
"homepage_url": null,
|
1585
|
+
"contact_email": null,
|
1586
|
+
"phone_number": null,
|
1587
|
+
"created_at": 1358907252,
|
1588
|
+
"updated_at": 1509370862
|
1589
|
+
}
|
1590
|
+
}
|
1591
|
+
}
|
1592
|
+
},
|
1593
|
+
"partners": [],
|
1594
|
+
"invested_in":
|
1595
|
+
{
|
1596
|
+
"type": "Organization",
|
1597
|
+
"uuid": "3adf836501a3c703a2748bc22fbbf4b3",
|
1598
|
+
"properties":
|
1599
|
+
{
|
1600
|
+
"permalink": "code-org",
|
1601
|
+
"api_path": "organizations/code-org",
|
1602
|
+
"web_path": "organization/code-org",
|
1603
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/code-org",
|
1604
|
+
"name": "Code.org",
|
1605
|
+
"also_known_as": null,
|
1606
|
+
"short_description": "Code.org is a non-profit foundation focusing on developing computer programming education in the U.S.",
|
1607
|
+
"description": "Code.org is a non-profit foundation dedicated to growing computer programming education. \r\n\r\nCode.org plans to do the following: \r\nSpreading the word that there is a worldwide shortage of computer programmers, and that it's much easier to learn to program than you think.\r\n\r\nBuilding an authoritative database of all programming schools, whether they are online courses, brick+mortar schools or summer camps.\r\n\r\nOur vision is that computer science and computer programming are included in the core curriculum in U.S. education, alongside other STEM (science technology engineering math) courses, such as biology, physics, chemistry and math.",
|
1608
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397195815/8f56cb6f52abc278589ec53e5a62ef65.png",
|
1609
|
+
"primary_role": "company",
|
1610
|
+
"role_company": true,
|
1611
|
+
"role_investor": false,
|
1612
|
+
"role_group": false,
|
1613
|
+
"role_school": false,
|
1614
|
+
"investor_type": null,
|
1615
|
+
"founded_on": "2012-01-01",
|
1616
|
+
"founded_on_trust_code": 5,
|
1617
|
+
"is_closed": false,
|
1618
|
+
"closed_on": null,
|
1619
|
+
"closed_on_trust_code": null,
|
1620
|
+
"num_employees_min": 51,
|
1621
|
+
"num_employees_max": 100,
|
1622
|
+
"stock_exchange": null,
|
1623
|
+
"stock_symbol": null,
|
1624
|
+
"total_funding_usd": 0,
|
1625
|
+
"number_of_investments": 0,
|
1626
|
+
"homepage_url": null,
|
1627
|
+
"contact_email": null,
|
1628
|
+
"phone_number": null,
|
1629
|
+
"created_at": 1358907252,
|
1630
|
+
"updated_at": 1509370862
|
1631
|
+
}
|
1632
|
+
}
|
1633
|
+
}
|
1634
|
+
},
|
1635
|
+
{
|
1636
|
+
"type": "Investment",
|
1637
|
+
"uuid": "0951cfcbbbb97216982b36e003efc8a1",
|
1638
|
+
"properties":
|
1639
|
+
{
|
1640
|
+
"money_invested": null,
|
1641
|
+
"money_invested_currency_code": null,
|
1642
|
+
"money_invested_usd": null,
|
1643
|
+
"is_lead_investor": false,
|
1644
|
+
"announced_on": "2016-04-07",
|
1645
|
+
"announced_on_trust_code": 7,
|
1646
|
+
"created_at": 1460013154,
|
1647
|
+
"updated_at": 1494376472
|
1648
|
+
},
|
1649
|
+
"relationships":
|
1650
|
+
{
|
1651
|
+
"funding_round":
|
1652
|
+
{
|
1653
|
+
"type": "FundingRound",
|
1654
|
+
"uuid": "07a0141d2d3e2694469c77f1ce6c46e8",
|
1655
|
+
"properties":
|
1656
|
+
{
|
1657
|
+
"permalink": "07a0141d2d3e2694469c77f1ce6c46e8",
|
1658
|
+
"api_path": "funding-rounds/07a0141d2d3e2694469c77f1ce6c46e8",
|
1659
|
+
"web_path": "funding-round/07a0141d2d3e2694469c77f1ce6c46e8",
|
1660
|
+
"api_url": "https://api.crunchbase.com/v3.1/funding-rounds/07a0141d2d3e2694469c77f1ce6c46e8",
|
1661
|
+
"funding_type": "venture",
|
1662
|
+
"series": "C",
|
1663
|
+
"series_qualifier": null,
|
1664
|
+
"announced_on": "2016-04-07",
|
1665
|
+
"announced_on_trust_code": 7,
|
1666
|
+
"closed_on": null,
|
1667
|
+
"closed_on_trust_code": null,
|
1668
|
+
"money_raised": 50000000,
|
1669
|
+
"money_raised_currency_code": "USD",
|
1670
|
+
"money_raised_usd": 50000000,
|
1671
|
+
"target_money_raised": null,
|
1672
|
+
"target_money_raised_currency_code": null,
|
1673
|
+
"target_money_raised_usd": null,
|
1674
|
+
"pre_money_valuation": null,
|
1675
|
+
"pre_money_valuation_currency_code": null,
|
1676
|
+
"pre_money_valuation_usd": null,
|
1677
|
+
"created_at": 1460013037,
|
1678
|
+
"updated_at": 1481574974
|
1679
|
+
},
|
1680
|
+
"relationships":
|
1681
|
+
{
|
1682
|
+
"funded_organization":
|
1683
|
+
{
|
1684
|
+
"type": "Organization",
|
1685
|
+
"uuid": "53e64a6af9547bf3b505345db3d6c7bb",
|
1686
|
+
"properties":
|
1687
|
+
{
|
1688
|
+
"permalink": "intercom",
|
1689
|
+
"api_path": "organizations/intercom",
|
1690
|
+
"web_path": "organization/intercom",
|
1691
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/intercom",
|
1692
|
+
"name": "Intercom",
|
1693
|
+
"also_known_as": null,
|
1694
|
+
"short_description": "Intercom is a computer software and messaging platform that helps businesses connect with customers.",
|
1695
|
+
"description": "Intercom is a fundamentally new way for internet businesses to communicate with customers, personally, at scale. It's a customer communication platform with a suite of integrated products for every team—including sales, marketing, product, and support. Our products enable targeted communication with customers on your website, inside your web and mobile apps, and by email.\r\n\r\nThis contrasts with the old way where a business uses a tangle of point solutions, like marketing automation or helpdesk products, with every team operating in a silo. This makes it hard for teams to work together and be on the same page, resulting in a disjointed and very impersonal experience for the customer.\r\n\r\nIntercom has 7,000 paying customers in over 85 countries, ranging from startups like General Assembly, ZenPayroll and Invision, to public companies like Ancestry.com, New Relic and Shopify.",
|
1696
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1444670820/w2kggum5wsqoaccrsyhw.png",
|
1697
|
+
"primary_role": "company",
|
1698
|
+
"role_company": true,
|
1699
|
+
"role_investor": false,
|
1700
|
+
"role_group": false,
|
1701
|
+
"role_school": false,
|
1702
|
+
"investor_type": null,
|
1703
|
+
"founded_on": "2011-08-01",
|
1704
|
+
"founded_on_trust_code": 7,
|
1705
|
+
"is_closed": false,
|
1706
|
+
"closed_on": null,
|
1707
|
+
"closed_on_trust_code": null,
|
1708
|
+
"num_employees_min": 101,
|
1709
|
+
"num_employees_max": 250,
|
1710
|
+
"stock_exchange": null,
|
1711
|
+
"stock_symbol": null,
|
1712
|
+
"total_funding_usd": 0,
|
1713
|
+
"number_of_investments": 0,
|
1714
|
+
"homepage_url": null,
|
1715
|
+
"contact_email": "team@intercom.com",
|
1716
|
+
"phone_number": "877-595-5175",
|
1717
|
+
"created_at": 1309828246,
|
1718
|
+
"updated_at": 1509313062
|
1719
|
+
}
|
1720
|
+
}
|
1721
|
+
}
|
1722
|
+
},
|
1723
|
+
"partners": [],
|
1724
|
+
"invested_in":
|
1725
|
+
{
|
1726
|
+
"type": "Organization",
|
1727
|
+
"uuid": "53e64a6af9547bf3b505345db3d6c7bb",
|
1728
|
+
"properties":
|
1729
|
+
{
|
1730
|
+
"permalink": "intercom",
|
1731
|
+
"api_path": "organizations/intercom",
|
1732
|
+
"web_path": "organization/intercom",
|
1733
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/intercom",
|
1734
|
+
"name": "Intercom",
|
1735
|
+
"also_known_as": null,
|
1736
|
+
"short_description": "Intercom is a computer software and messaging platform that helps businesses connect with customers.",
|
1737
|
+
"description": "Intercom is a fundamentally new way for internet businesses to communicate with customers, personally, at scale. It's a customer communication platform with a suite of integrated products for every team—including sales, marketing, product, and support. Our products enable targeted communication with customers on your website, inside your web and mobile apps, and by email.\r\n\r\nThis contrasts with the old way where a business uses a tangle of point solutions, like marketing automation or helpdesk products, with every team operating in a silo. This makes it hard for teams to work together and be on the same page, resulting in a disjointed and very impersonal experience for the customer.\r\n\r\nIntercom has 7,000 paying customers in over 85 countries, ranging from startups like General Assembly, ZenPayroll and Invision, to public companies like Ancestry.com, New Relic and Shopify.",
|
1738
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1444670820/w2kggum5wsqoaccrsyhw.png",
|
1739
|
+
"primary_role": "company",
|
1740
|
+
"role_company": true,
|
1741
|
+
"role_investor": false,
|
1742
|
+
"role_group": false,
|
1743
|
+
"role_school": false,
|
1744
|
+
"investor_type": null,
|
1745
|
+
"founded_on": "2011-08-01",
|
1746
|
+
"founded_on_trust_code": 7,
|
1747
|
+
"is_closed": false,
|
1748
|
+
"closed_on": null,
|
1749
|
+
"closed_on_trust_code": null,
|
1750
|
+
"num_employees_min": 101,
|
1751
|
+
"num_employees_max": 250,
|
1752
|
+
"stock_exchange": null,
|
1753
|
+
"stock_symbol": null,
|
1754
|
+
"total_funding_usd": 0,
|
1755
|
+
"number_of_investments": 0,
|
1756
|
+
"homepage_url": null,
|
1757
|
+
"contact_email": "team@intercom.com",
|
1758
|
+
"phone_number": "877-595-5175",
|
1759
|
+
"created_at": 1309828246,
|
1760
|
+
"updated_at": 1509313062
|
1761
|
+
}
|
1762
|
+
}
|
1763
|
+
}
|
1764
|
+
},
|
1765
|
+
{
|
1766
|
+
"type": "Investment",
|
1767
|
+
"uuid": "c2c49bc3a2a47045159b1f533978a000",
|
1768
|
+
"properties":
|
1769
|
+
{
|
1770
|
+
"money_invested": null,
|
1771
|
+
"money_invested_currency_code": null,
|
1772
|
+
"money_invested_usd": null,
|
1773
|
+
"is_lead_investor": false,
|
1774
|
+
"announced_on": "2016-03-30",
|
1775
|
+
"announced_on_trust_code": 7,
|
1776
|
+
"created_at": 1459361860,
|
1777
|
+
"updated_at": 1493873386
|
1778
|
+
},
|
1779
|
+
"relationships":
|
1780
|
+
{
|
1781
|
+
"funding_round":
|
1782
|
+
{
|
1783
|
+
"type": "FundingRound",
|
1784
|
+
"uuid": "2f53454986994d2b72127daa2d78ca8b",
|
1785
|
+
"properties":
|
1786
|
+
{
|
1787
|
+
"permalink": "2f53454986994d2b72127daa2d78ca8b",
|
1788
|
+
"api_path": "funding-rounds/2f53454986994d2b72127daa2d78ca8b",
|
1789
|
+
"web_path": "funding-round/2f53454986994d2b72127daa2d78ca8b",
|
1790
|
+
"api_url": "https://api.crunchbase.com/v3.1/funding-rounds/2f53454986994d2b72127daa2d78ca8b",
|
1791
|
+
"funding_type": "venture",
|
1792
|
+
"series": "C",
|
1793
|
+
"series_qualifier": null,
|
1794
|
+
"announced_on": "2016-03-30",
|
1795
|
+
"announced_on_trust_code": 7,
|
1796
|
+
"closed_on": null,
|
1797
|
+
"closed_on_trust_code": null,
|
1798
|
+
"money_raised": 50000000,
|
1799
|
+
"money_raised_currency_code": "USD",
|
1800
|
+
"money_raised_usd": 50000000,
|
1801
|
+
"target_money_raised": null,
|
1802
|
+
"target_money_raised_currency_code": null,
|
1803
|
+
"target_money_raised_usd": null,
|
1804
|
+
"pre_money_valuation": 550000000,
|
1805
|
+
"pre_money_valuation_currency_code": "USD",
|
1806
|
+
"pre_money_valuation_usd": 550000000,
|
1807
|
+
"created_at": 1459351421,
|
1808
|
+
"updated_at": 1497050249
|
1809
|
+
},
|
1810
|
+
"relationships":
|
1811
|
+
{
|
1812
|
+
"funded_organization":
|
1813
|
+
{
|
1814
|
+
"type": "Organization",
|
1815
|
+
"uuid": "c2d47d059e78de77084cdd5171251ff1",
|
1816
|
+
"properties":
|
1817
|
+
{
|
1818
|
+
"permalink": "asana",
|
1819
|
+
"api_path": "organizations/asana",
|
1820
|
+
"web_path": "organization/asana",
|
1821
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/asana",
|
1822
|
+
"name": "Asana",
|
1823
|
+
"also_known_as": null,
|
1824
|
+
"short_description": "Asana is easiest way for teams to track their work—and get results. It’s free to use, simple and powerful.",
|
1825
|
+
"description": "Asana is the easiest way for teams to track their work. From tasks and projects to conversations and dashboards, Asana enables teams to move work from start to finish--and get results. Available at asana.com and on iOS & Android.\r\n\r\nIt was founded by [Dustin Moskovitz](/person/dustin-moskovitz), a co-founder of [Facebook](/organization/facebook), and [Justin Rosenstein](/person/justin-rosenstein), an alum of both Facebook and [Google](/organization/google). \r\n\r\nAsana’s mission is to help humanity thrive by enabling all teams to work together effortlessly.",
|
1826
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1487975565/ypcbqwqhlnnu49oz1btf.png",
|
1827
|
+
"primary_role": "company",
|
1828
|
+
"role_company": true,
|
1829
|
+
"role_investor": false,
|
1830
|
+
"role_group": false,
|
1831
|
+
"role_school": false,
|
1832
|
+
"investor_type": null,
|
1833
|
+
"founded_on": "2008-01-01",
|
1834
|
+
"founded_on_trust_code": 5,
|
1835
|
+
"is_closed": false,
|
1836
|
+
"closed_on": null,
|
1837
|
+
"closed_on_trust_code": null,
|
1838
|
+
"num_employees_min": 251,
|
1839
|
+
"num_employees_max": 500,
|
1840
|
+
"stock_exchange": null,
|
1841
|
+
"stock_symbol": null,
|
1842
|
+
"total_funding_usd": 0,
|
1843
|
+
"number_of_investments": 0,
|
1844
|
+
"homepage_url": null,
|
1845
|
+
"contact_email": null,
|
1846
|
+
"phone_number": "4155253888",
|
1847
|
+
"created_at": 1249366642,
|
1848
|
+
"updated_at": 1508089858
|
1849
|
+
}
|
1850
|
+
}
|
1851
|
+
}
|
1852
|
+
},
|
1853
|
+
"partners": [],
|
1854
|
+
"invested_in":
|
1855
|
+
{
|
1856
|
+
"type": "Organization",
|
1857
|
+
"uuid": "c2d47d059e78de77084cdd5171251ff1",
|
1858
|
+
"properties":
|
1859
|
+
{
|
1860
|
+
"permalink": "asana",
|
1861
|
+
"api_path": "organizations/asana",
|
1862
|
+
"web_path": "organization/asana",
|
1863
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/asana",
|
1864
|
+
"name": "Asana",
|
1865
|
+
"also_known_as": null,
|
1866
|
+
"short_description": "Asana is easiest way for teams to track their work—and get results. It’s free to use, simple and powerful.",
|
1867
|
+
"description": "Asana is the easiest way for teams to track their work. From tasks and projects to conversations and dashboards, Asana enables teams to move work from start to finish--and get results. Available at asana.com and on iOS & Android.\r\n\r\nIt was founded by [Dustin Moskovitz](/person/dustin-moskovitz), a co-founder of [Facebook](/organization/facebook), and [Justin Rosenstein](/person/justin-rosenstein), an alum of both Facebook and [Google](/organization/google). \r\n\r\nAsana’s mission is to help humanity thrive by enabling all teams to work together effortlessly.",
|
1868
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1487975565/ypcbqwqhlnnu49oz1btf.png",
|
1869
|
+
"primary_role": "company",
|
1870
|
+
"role_company": true,
|
1871
|
+
"role_investor": false,
|
1872
|
+
"role_group": false,
|
1873
|
+
"role_school": false,
|
1874
|
+
"investor_type": null,
|
1875
|
+
"founded_on": "2008-01-01",
|
1876
|
+
"founded_on_trust_code": 5,
|
1877
|
+
"is_closed": false,
|
1878
|
+
"closed_on": null,
|
1879
|
+
"closed_on_trust_code": null,
|
1880
|
+
"num_employees_min": 251,
|
1881
|
+
"num_employees_max": 500,
|
1882
|
+
"stock_exchange": null,
|
1883
|
+
"stock_symbol": null,
|
1884
|
+
"total_funding_usd": 0,
|
1885
|
+
"number_of_investments": 0,
|
1886
|
+
"homepage_url": null,
|
1887
|
+
"contact_email": null,
|
1888
|
+
"phone_number": "4155253888",
|
1889
|
+
"created_at": 1249366642,
|
1890
|
+
"updated_at": 1508089858
|
1891
|
+
}
|
1892
|
+
}
|
1893
|
+
}
|
1894
|
+
},
|
1895
|
+
{
|
1896
|
+
"type": "Investment",
|
1897
|
+
"uuid": "333a9caec859065a47eae8d654b02903",
|
1898
|
+
"properties":
|
1899
|
+
{
|
1900
|
+
"money_invested": null,
|
1901
|
+
"money_invested_currency_code": null,
|
1902
|
+
"money_invested_usd": null,
|
1903
|
+
"is_lead_investor": false,
|
1904
|
+
"announced_on": "2015-11-20",
|
1905
|
+
"announced_on_trust_code": 7,
|
1906
|
+
"created_at": 1476697774,
|
1907
|
+
"updated_at": 1476697775
|
1908
|
+
},
|
1909
|
+
"relationships":
|
1910
|
+
{
|
1911
|
+
"funding_round":
|
1912
|
+
{
|
1913
|
+
"type": "FundingRound",
|
1914
|
+
"uuid": "6b30dadd414d600fbb515308fba2539b",
|
1915
|
+
"properties":
|
1916
|
+
{
|
1917
|
+
"permalink": "6b30dadd414d600fbb515308fba2539b",
|
1918
|
+
"api_path": "funding-rounds/6b30dadd414d600fbb515308fba2539b",
|
1919
|
+
"web_path": "funding-round/6b30dadd414d600fbb515308fba2539b",
|
1920
|
+
"api_url": "https://api.crunchbase.com/v3.1/funding-rounds/6b30dadd414d600fbb515308fba2539b",
|
1921
|
+
"funding_type": "grant",
|
1922
|
+
"series": null,
|
1923
|
+
"series_qualifier": null,
|
1924
|
+
"announced_on": "2015-11-20",
|
1925
|
+
"announced_on_trust_code": 7,
|
1926
|
+
"closed_on": null,
|
1927
|
+
"closed_on_trust_code": null,
|
1928
|
+
"money_raised": 20000000,
|
1929
|
+
"money_raised_currency_code": "USD",
|
1930
|
+
"money_raised_usd": 20000000,
|
1931
|
+
"target_money_raised": null,
|
1932
|
+
"target_money_raised_currency_code": null,
|
1933
|
+
"target_money_raised_usd": null,
|
1934
|
+
"pre_money_valuation": null,
|
1935
|
+
"pre_money_valuation_currency_code": null,
|
1936
|
+
"pre_money_valuation_usd": null,
|
1937
|
+
"created_at": 1448076096,
|
1938
|
+
"updated_at": 1476697786
|
1939
|
+
},
|
1940
|
+
"relationships":
|
1941
|
+
{
|
1942
|
+
"funded_organization":
|
1943
|
+
{
|
1944
|
+
"type": "Organization",
|
1945
|
+
"uuid": "81bd121690e2f4496054ad9360403d14",
|
1946
|
+
"properties":
|
1947
|
+
{
|
1948
|
+
"permalink": "educationsuperhighway",
|
1949
|
+
"api_path": "organizations/educationsuperhighway",
|
1950
|
+
"web_path": "organization/educationsuperhighway",
|
1951
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/educationsuperhighway",
|
1952
|
+
"name": "EducationSuperHighway",
|
1953
|
+
"also_known_as": null,
|
1954
|
+
"short_description": "EducationSuperHighway is focused on providing internet infrastructure that students and teachers need for digital learning.",
|
1955
|
+
"description": "EducationSuperHighway is a 501c(3) non-profit organization committed to upgrading every public school in the United States to a robust digital learning ready (100Mbps+) Internet connection.",
|
1956
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397186771/19364b557b84321707fb766e9466328f.png",
|
1957
|
+
"primary_role": "company",
|
1958
|
+
"role_company": true,
|
1959
|
+
"role_investor": false,
|
1960
|
+
"role_group": false,
|
1961
|
+
"role_school": false,
|
1962
|
+
"investor_type": null,
|
1963
|
+
"founded_on": "2012-01-01",
|
1964
|
+
"founded_on_trust_code": 5,
|
1965
|
+
"is_closed": false,
|
1966
|
+
"closed_on": null,
|
1967
|
+
"closed_on_trust_code": null,
|
1968
|
+
"num_employees_min": 101,
|
1969
|
+
"num_employees_max": 250,
|
1970
|
+
"stock_exchange": null,
|
1971
|
+
"stock_symbol": null,
|
1972
|
+
"total_funding_usd": 0,
|
1973
|
+
"number_of_investments": 0,
|
1974
|
+
"homepage_url": null,
|
1975
|
+
"contact_email": "info@EducationSuperHighway.org",
|
1976
|
+
"phone_number": "(415) 692-5195",
|
1977
|
+
"created_at": 1386213317,
|
1978
|
+
"updated_at": 1509269612
|
1979
|
+
}
|
1980
|
+
}
|
1981
|
+
}
|
1982
|
+
},
|
1983
|
+
"partners": [],
|
1984
|
+
"invested_in":
|
1985
|
+
{
|
1986
|
+
"type": "Organization",
|
1987
|
+
"uuid": "81bd121690e2f4496054ad9360403d14",
|
1988
|
+
"properties":
|
1989
|
+
{
|
1990
|
+
"permalink": "educationsuperhighway",
|
1991
|
+
"api_path": "organizations/educationsuperhighway",
|
1992
|
+
"web_path": "organization/educationsuperhighway",
|
1993
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/educationsuperhighway",
|
1994
|
+
"name": "EducationSuperHighway",
|
1995
|
+
"also_known_as": null,
|
1996
|
+
"short_description": "EducationSuperHighway is focused on providing internet infrastructure that students and teachers need for digital learning.",
|
1997
|
+
"description": "EducationSuperHighway is a 501c(3) non-profit organization committed to upgrading every public school in the United States to a robust digital learning ready (100Mbps+) Internet connection.",
|
1998
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397186771/19364b557b84321707fb766e9466328f.png",
|
1999
|
+
"primary_role": "company",
|
2000
|
+
"role_company": true,
|
2001
|
+
"role_investor": false,
|
2002
|
+
"role_group": false,
|
2003
|
+
"role_school": false,
|
2004
|
+
"investor_type": null,
|
2005
|
+
"founded_on": "2012-01-01",
|
2006
|
+
"founded_on_trust_code": 5,
|
2007
|
+
"is_closed": false,
|
2008
|
+
"closed_on": null,
|
2009
|
+
"closed_on_trust_code": null,
|
2010
|
+
"num_employees_min": 101,
|
2011
|
+
"num_employees_max": 250,
|
2012
|
+
"stock_exchange": null,
|
2013
|
+
"stock_symbol": null,
|
2014
|
+
"total_funding_usd": 0,
|
2015
|
+
"number_of_investments": 0,
|
2016
|
+
"homepage_url": null,
|
2017
|
+
"contact_email": "info@EducationSuperHighway.org",
|
2018
|
+
"phone_number": "(415) 692-5195",
|
2019
|
+
"created_at": 1386213317,
|
2020
|
+
"updated_at": 1509269612
|
2021
|
+
}
|
2022
|
+
}
|
2023
|
+
}
|
2024
|
+
},
|
2025
|
+
{
|
2026
|
+
"type": "Investment",
|
2027
|
+
"uuid": "018bd48ad763040c0a9ecf553f48afb8",
|
2028
|
+
"properties":
|
2029
|
+
{
|
2030
|
+
"money_invested": null,
|
2031
|
+
"money_invested_currency_code": null,
|
2032
|
+
"money_invested_usd": null,
|
2033
|
+
"is_lead_investor": false,
|
2034
|
+
"announced_on": "2014-11-06",
|
2035
|
+
"announced_on_trust_code": 7,
|
2036
|
+
"created_at": 1452577323,
|
2037
|
+
"updated_at": 1452577323
|
2038
|
+
},
|
2039
|
+
"relationships":
|
2040
|
+
{
|
2041
|
+
"funding_round":
|
2042
|
+
{
|
2043
|
+
"type": "FundingRound",
|
2044
|
+
"uuid": "501d047070341e0c660e821d50bd5239",
|
2045
|
+
"properties":
|
2046
|
+
{
|
2047
|
+
"permalink": "501d047070341e0c660e821d50bd5239",
|
2048
|
+
"api_path": "funding-rounds/501d047070341e0c660e821d50bd5239",
|
2049
|
+
"web_path": "funding-round/501d047070341e0c660e821d50bd5239",
|
2050
|
+
"api_url": "https://api.crunchbase.com/v3.1/funding-rounds/501d047070341e0c660e821d50bd5239",
|
2051
|
+
"funding_type": "venture",
|
2052
|
+
"series": "B",
|
2053
|
+
"series_qualifier": null,
|
2054
|
+
"announced_on": "2014-11-06",
|
2055
|
+
"announced_on_trust_code": 7,
|
2056
|
+
"closed_on": null,
|
2057
|
+
"closed_on_trust_code": null,
|
2058
|
+
"money_raised": 12000000,
|
2059
|
+
"money_raised_currency_code": "USD",
|
2060
|
+
"money_raised_usd": 12000000,
|
2061
|
+
"target_money_raised": null,
|
2062
|
+
"target_money_raised_currency_code": null,
|
2063
|
+
"target_money_raised_usd": null,
|
2064
|
+
"pre_money_valuation": null,
|
2065
|
+
"pre_money_valuation_currency_code": null,
|
2066
|
+
"pre_money_valuation_usd": null,
|
2067
|
+
"created_at": 1415279679,
|
2068
|
+
"updated_at": 1490651128
|
2069
|
+
},
|
2070
|
+
"relationships":
|
2071
|
+
{
|
2072
|
+
"funded_organization":
|
2073
|
+
{
|
2074
|
+
"type": "Organization",
|
2075
|
+
"uuid": "d9f418da28f58b0497f7086b4ffbf048",
|
2076
|
+
"properties":
|
2077
|
+
{
|
2078
|
+
"permalink": "vicarious-systems-inc",
|
2079
|
+
"api_path": "organizations/vicarious-systems-inc",
|
2080
|
+
"web_path": "organization/vicarious-systems-inc",
|
2081
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/vicarious-systems-inc",
|
2082
|
+
"name": "Vicarious",
|
2083
|
+
"also_known_as": null,
|
2084
|
+
"short_description": "Vicarious is an artificial intelligence company that uses the computational principles of the brain to develop general intelligence for robo",
|
2085
|
+
"description": "Vicarious is an artificial intelligence company that uses the computational principles of the brain to develop general intelligence for robots. The company was founded in 2010 by Dr. Dileep George and D. Scott Phoenix. Previously Dr. George was Chief Technology Officer at Numeta, a company he co-founded with Jeff Hawkins and Donna Dubinsky (PALM, HAND) while completing his PhD at Stanford University. Before co-founding Vicarious, Mr. Phoenix was Entrepreneur in Residence at Founders Fund and CEO of Frogmetrics, a touchscreen analytics company he co-founded through the Y Combinator program.",
|
2086
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1501079506/ezc95wdolvzv7pzrwqpa.png",
|
2087
|
+
"primary_role": "company",
|
2088
|
+
"role_company": true,
|
2089
|
+
"role_investor": false,
|
2090
|
+
"role_group": false,
|
2091
|
+
"role_school": false,
|
2092
|
+
"investor_type": null,
|
2093
|
+
"founded_on": "2010-01-01",
|
2094
|
+
"founded_on_trust_code": 5,
|
2095
|
+
"is_closed": false,
|
2096
|
+
"closed_on": null,
|
2097
|
+
"closed_on_trust_code": null,
|
2098
|
+
"num_employees_min": 11,
|
2099
|
+
"num_employees_max": 50,
|
2100
|
+
"stock_exchange": null,
|
2101
|
+
"stock_symbol": null,
|
2102
|
+
"total_funding_usd": 0,
|
2103
|
+
"number_of_investments": 0,
|
2104
|
+
"homepage_url": null,
|
2105
|
+
"contact_email": "info@vicarious.com",
|
2106
|
+
"phone_number": "650-752-2100",
|
2107
|
+
"created_at": 1291683385,
|
2108
|
+
"updated_at": 1509298289
|
2109
|
+
}
|
2110
|
+
}
|
2111
|
+
}
|
2112
|
+
},
|
2113
|
+
"partners": [],
|
2114
|
+
"invested_in":
|
2115
|
+
{
|
2116
|
+
"type": "Organization",
|
2117
|
+
"uuid": "d9f418da28f58b0497f7086b4ffbf048",
|
2118
|
+
"properties":
|
2119
|
+
{
|
2120
|
+
"permalink": "vicarious-systems-inc",
|
2121
|
+
"api_path": "organizations/vicarious-systems-inc",
|
2122
|
+
"web_path": "organization/vicarious-systems-inc",
|
2123
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/vicarious-systems-inc",
|
2124
|
+
"name": "Vicarious",
|
2125
|
+
"also_known_as": null,
|
2126
|
+
"short_description": "Vicarious is an artificial intelligence company that uses the computational principles of the brain to develop general intelligence for robo",
|
2127
|
+
"description": "Vicarious is an artificial intelligence company that uses the computational principles of the brain to develop general intelligence for robots. The company was founded in 2010 by Dr. Dileep George and D. Scott Phoenix. Previously Dr. George was Chief Technology Officer at Numeta, a company he co-founded with Jeff Hawkins and Donna Dubinsky (PALM, HAND) while completing his PhD at Stanford University. Before co-founding Vicarious, Mr. Phoenix was Entrepreneur in Residence at Founders Fund and CEO of Frogmetrics, a touchscreen analytics company he co-founded through the Y Combinator program.",
|
2128
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1501079506/ezc95wdolvzv7pzrwqpa.png",
|
2129
|
+
"primary_role": "company",
|
2130
|
+
"role_company": true,
|
2131
|
+
"role_investor": false,
|
2132
|
+
"role_group": false,
|
2133
|
+
"role_school": false,
|
2134
|
+
"investor_type": null,
|
2135
|
+
"founded_on": "2010-01-01",
|
2136
|
+
"founded_on_trust_code": 5,
|
2137
|
+
"is_closed": false,
|
2138
|
+
"closed_on": null,
|
2139
|
+
"closed_on_trust_code": null,
|
2140
|
+
"num_employees_min": 11,
|
2141
|
+
"num_employees_max": 50,
|
2142
|
+
"stock_exchange": null,
|
2143
|
+
"stock_symbol": null,
|
2144
|
+
"total_funding_usd": 0,
|
2145
|
+
"number_of_investments": 0,
|
2146
|
+
"homepage_url": null,
|
2147
|
+
"contact_email": "info@vicarious.com",
|
2148
|
+
"phone_number": "650-752-2100",
|
2149
|
+
"created_at": 1291683385,
|
2150
|
+
"updated_at": 1509298289
|
2151
|
+
}
|
2152
|
+
}
|
2153
|
+
}
|
2154
|
+
},
|
2155
|
+
{
|
2156
|
+
"type": "Investment",
|
2157
|
+
"uuid": "b8c91354313e4fde6ee8e20168366735",
|
2158
|
+
"properties":
|
2159
|
+
{
|
2160
|
+
"money_invested": null,
|
2161
|
+
"money_invested_currency_code": null,
|
2162
|
+
"money_invested_usd": null,
|
2163
|
+
"is_lead_investor": false,
|
2164
|
+
"announced_on": "2014-03-21",
|
2165
|
+
"announced_on_trust_code": 7,
|
2166
|
+
"created_at": 1395633512,
|
2167
|
+
"updated_at": 1441285190
|
2168
|
+
},
|
2169
|
+
"relationships":
|
2170
|
+
{
|
2171
|
+
"funding_round":
|
2172
|
+
{
|
2173
|
+
"type": "FundingRound",
|
2174
|
+
"uuid": "a3b33e3f68d4205cbf61c2cc3b1f4e4a",
|
2175
|
+
"properties":
|
2176
|
+
{
|
2177
|
+
"permalink": "a3b33e3f68d4205cbf61c2cc3b1f4e4a",
|
2178
|
+
"api_path": "funding-rounds/a3b33e3f68d4205cbf61c2cc3b1f4e4a",
|
2179
|
+
"web_path": "funding-round/a3b33e3f68d4205cbf61c2cc3b1f4e4a",
|
2180
|
+
"api_url": "https://api.crunchbase.com/v3.1/funding-rounds/a3b33e3f68d4205cbf61c2cc3b1f4e4a",
|
2181
|
+
"funding_type": "venture",
|
2182
|
+
"series": "B",
|
2183
|
+
"series_qualifier": null,
|
2184
|
+
"announced_on": "2014-03-21",
|
2185
|
+
"announced_on_trust_code": 7,
|
2186
|
+
"closed_on": null,
|
2187
|
+
"closed_on_trust_code": null,
|
2188
|
+
"money_raised": 40000000,
|
2189
|
+
"money_raised_currency_code": "USD",
|
2190
|
+
"money_raised_usd": 40000000,
|
2191
|
+
"target_money_raised": null,
|
2192
|
+
"target_money_raised_currency_code": null,
|
2193
|
+
"target_money_raised_usd": null,
|
2194
|
+
"pre_money_valuation": null,
|
2195
|
+
"pre_money_valuation_currency_code": null,
|
2196
|
+
"pre_money_valuation_usd": null,
|
2197
|
+
"created_at": 1395631556,
|
2198
|
+
"updated_at": 1437542642
|
2199
|
+
},
|
2200
|
+
"relationships":
|
2201
|
+
{
|
2202
|
+
"funded_organization":
|
2203
|
+
{
|
2204
|
+
"type": "Organization",
|
2205
|
+
"uuid": "d9f418da28f58b0497f7086b4ffbf048",
|
2206
|
+
"properties":
|
2207
|
+
{
|
2208
|
+
"permalink": "vicarious-systems-inc",
|
2209
|
+
"api_path": "organizations/vicarious-systems-inc",
|
2210
|
+
"web_path": "organization/vicarious-systems-inc",
|
2211
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/vicarious-systems-inc",
|
2212
|
+
"name": "Vicarious",
|
2213
|
+
"also_known_as": null,
|
2214
|
+
"short_description": "Vicarious is an artificial intelligence company that uses the computational principles of the brain to develop general intelligence for robo",
|
2215
|
+
"description": "Vicarious is an artificial intelligence company that uses the computational principles of the brain to develop general intelligence for robots. The company was founded in 2010 by Dr. Dileep George and D. Scott Phoenix. Previously Dr. George was Chief Technology Officer at Numeta, a company he co-founded with Jeff Hawkins and Donna Dubinsky (PALM, HAND) while completing his PhD at Stanford University. Before co-founding Vicarious, Mr. Phoenix was Entrepreneur in Residence at Founders Fund and CEO of Frogmetrics, a touchscreen analytics company he co-founded through the Y Combinator program.",
|
2216
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1501079506/ezc95wdolvzv7pzrwqpa.png",
|
2217
|
+
"primary_role": "company",
|
2218
|
+
"role_company": true,
|
2219
|
+
"role_investor": false,
|
2220
|
+
"role_group": false,
|
2221
|
+
"role_school": false,
|
2222
|
+
"investor_type": null,
|
2223
|
+
"founded_on": "2010-01-01",
|
2224
|
+
"founded_on_trust_code": 5,
|
2225
|
+
"is_closed": false,
|
2226
|
+
"closed_on": null,
|
2227
|
+
"closed_on_trust_code": null,
|
2228
|
+
"num_employees_min": 11,
|
2229
|
+
"num_employees_max": 50,
|
2230
|
+
"stock_exchange": null,
|
2231
|
+
"stock_symbol": null,
|
2232
|
+
"total_funding_usd": 0,
|
2233
|
+
"number_of_investments": 0,
|
2234
|
+
"homepage_url": null,
|
2235
|
+
"contact_email": "info@vicarious.com",
|
2236
|
+
"phone_number": "650-752-2100",
|
2237
|
+
"created_at": 1291683385,
|
2238
|
+
"updated_at": 1509298289
|
2239
|
+
}
|
2240
|
+
}
|
2241
|
+
}
|
2242
|
+
},
|
2243
|
+
"partners": [],
|
2244
|
+
"invested_in":
|
2245
|
+
{
|
2246
|
+
"type": "Organization",
|
2247
|
+
"uuid": "d9f418da28f58b0497f7086b4ffbf048",
|
2248
|
+
"properties":
|
2249
|
+
{
|
2250
|
+
"permalink": "vicarious-systems-inc",
|
2251
|
+
"api_path": "organizations/vicarious-systems-inc",
|
2252
|
+
"web_path": "organization/vicarious-systems-inc",
|
2253
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/vicarious-systems-inc",
|
2254
|
+
"name": "Vicarious",
|
2255
|
+
"also_known_as": null,
|
2256
|
+
"short_description": "Vicarious is an artificial intelligence company that uses the computational principles of the brain to develop general intelligence for robo",
|
2257
|
+
"description": "Vicarious is an artificial intelligence company that uses the computational principles of the brain to develop general intelligence for robots. The company was founded in 2010 by Dr. Dileep George and D. Scott Phoenix. Previously Dr. George was Chief Technology Officer at Numeta, a company he co-founded with Jeff Hawkins and Donna Dubinsky (PALM, HAND) while completing his PhD at Stanford University. Before co-founding Vicarious, Mr. Phoenix was Entrepreneur in Residence at Founders Fund and CEO of Frogmetrics, a touchscreen analytics company he co-founded through the Y Combinator program.",
|
2258
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1501079506/ezc95wdolvzv7pzrwqpa.png",
|
2259
|
+
"primary_role": "company",
|
2260
|
+
"role_company": true,
|
2261
|
+
"role_investor": false,
|
2262
|
+
"role_group": false,
|
2263
|
+
"role_school": false,
|
2264
|
+
"investor_type": null,
|
2265
|
+
"founded_on": "2010-01-01",
|
2266
|
+
"founded_on_trust_code": 5,
|
2267
|
+
"is_closed": false,
|
2268
|
+
"closed_on": null,
|
2269
|
+
"closed_on_trust_code": null,
|
2270
|
+
"num_employees_min": 11,
|
2271
|
+
"num_employees_max": 50,
|
2272
|
+
"stock_exchange": null,
|
2273
|
+
"stock_symbol": null,
|
2274
|
+
"total_funding_usd": 0,
|
2275
|
+
"number_of_investments": 0,
|
2276
|
+
"homepage_url": null,
|
2277
|
+
"contact_email": "info@vicarious.com",
|
2278
|
+
"phone_number": "650-752-2100",
|
2279
|
+
"created_at": 1291683385,
|
2280
|
+
"updated_at": 1509298289
|
2281
|
+
}
|
2282
|
+
}
|
2283
|
+
}
|
2284
|
+
},
|
2285
|
+
{
|
2286
|
+
"type": "Investment",
|
2287
|
+
"uuid": "9e6a63403059e6e2dc514b55c9d88bfd",
|
2288
|
+
"properties":
|
2289
|
+
{
|
2290
|
+
"money_invested": null,
|
2291
|
+
"money_invested_currency_code": null,
|
2292
|
+
"money_invested_usd": null,
|
2293
|
+
"is_lead_investor": false,
|
2294
|
+
"announced_on": "2013-10-21",
|
2295
|
+
"announced_on_trust_code": 7,
|
2296
|
+
"created_at": 1394174678,
|
2297
|
+
"updated_at": 1448195729
|
2298
|
+
},
|
2299
|
+
"relationships":
|
2300
|
+
{
|
2301
|
+
"funding_round":
|
2302
|
+
{
|
2303
|
+
"type": "FundingRound",
|
2304
|
+
"uuid": "d21097d9a3253a5f588a9d2c561f4d17",
|
2305
|
+
"properties":
|
2306
|
+
{
|
2307
|
+
"permalink": "d21097d9a3253a5f588a9d2c561f4d17",
|
2308
|
+
"api_path": "funding-rounds/d21097d9a3253a5f588a9d2c561f4d17",
|
2309
|
+
"web_path": "funding-round/d21097d9a3253a5f588a9d2c561f4d17",
|
2310
|
+
"api_url": "https://api.crunchbase.com/v3.1/funding-rounds/d21097d9a3253a5f588a9d2c561f4d17",
|
2311
|
+
"funding_type": "seed",
|
2312
|
+
"series": null,
|
2313
|
+
"series_qualifier": null,
|
2314
|
+
"announced_on": "2013-10-21",
|
2315
|
+
"announced_on_trust_code": 7,
|
2316
|
+
"closed_on": null,
|
2317
|
+
"closed_on_trust_code": null,
|
2318
|
+
"money_raised": 4000000,
|
2319
|
+
"money_raised_currency_code": "USD",
|
2320
|
+
"money_raised_usd": 4000000,
|
2321
|
+
"target_money_raised": null,
|
2322
|
+
"target_money_raised_currency_code": null,
|
2323
|
+
"target_money_raised_usd": null,
|
2324
|
+
"pre_money_valuation": null,
|
2325
|
+
"pre_money_valuation_currency_code": null,
|
2326
|
+
"pre_money_valuation_usd": null,
|
2327
|
+
"created_at": 1382355861,
|
2328
|
+
"updated_at": 1425079635
|
2329
|
+
},
|
2330
|
+
"relationships":
|
2331
|
+
{
|
2332
|
+
"funded_organization":
|
2333
|
+
{
|
2334
|
+
"type": "Organization",
|
2335
|
+
"uuid": "3dd712f80f6d2a6ea0074f503cc823b0",
|
2336
|
+
"properties":
|
2337
|
+
{
|
2338
|
+
"permalink": "panorama-education",
|
2339
|
+
"api_path": "organizations/panorama-education",
|
2340
|
+
"web_path": "organization/panorama-education",
|
2341
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/panorama-education",
|
2342
|
+
"name": "Panorama Education",
|
2343
|
+
"also_known_as": null,
|
2344
|
+
"short_description": "Panorama Education is bringing the power of data to education through a SaaS platform used by hundreds of school districts across the US.",
|
2345
|
+
"description": "Based in Boston, Massachusetts, Panorama Education is a data analytics company for K-12 education. They help school districts, charter networks, and state governments conduct surveys of students, parents, teachers, and staff. Their classroom surveys collect feedback about individual teachers, and their school surveys gather data about the school environment and administrators. They believe that stakeholder feedback is a powerful professional development tool, and they believe that stakeholder surveys--when done correctly--make educator evaluation systems more fair and more effective.",
|
2346
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397180215/befc9801553b0a0415ccb560f2d93f9e.png",
|
2347
|
+
"primary_role": "company",
|
2348
|
+
"role_company": true,
|
2349
|
+
"role_investor": false,
|
2350
|
+
"role_group": false,
|
2351
|
+
"role_school": false,
|
2352
|
+
"investor_type": null,
|
2353
|
+
"founded_on": "2012-01-01",
|
2354
|
+
"founded_on_trust_code": 5,
|
2355
|
+
"is_closed": false,
|
2356
|
+
"closed_on": null,
|
2357
|
+
"closed_on_trust_code": null,
|
2358
|
+
"num_employees_min": 11,
|
2359
|
+
"num_employees_max": 50,
|
2360
|
+
"stock_exchange": null,
|
2361
|
+
"stock_symbol": null,
|
2362
|
+
"total_funding_usd": 0,
|
2363
|
+
"number_of_investments": 0,
|
2364
|
+
"homepage_url": null,
|
2365
|
+
"contact_email": "contact@panoramaed.com",
|
2366
|
+
"phone_number": "(617) 356-8123",
|
2367
|
+
"created_at": 1376610269,
|
2368
|
+
"updated_at": 1509299244
|
2369
|
+
}
|
2370
|
+
}
|
2371
|
+
}
|
2372
|
+
},
|
2373
|
+
"partners": [],
|
2374
|
+
"invested_in":
|
2375
|
+
{
|
2376
|
+
"type": "Organization",
|
2377
|
+
"uuid": "3dd712f80f6d2a6ea0074f503cc823b0",
|
2378
|
+
"properties":
|
2379
|
+
{
|
2380
|
+
"permalink": "panorama-education",
|
2381
|
+
"api_path": "organizations/panorama-education",
|
2382
|
+
"web_path": "organization/panorama-education",
|
2383
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/panorama-education",
|
2384
|
+
"name": "Panorama Education",
|
2385
|
+
"also_known_as": null,
|
2386
|
+
"short_description": "Panorama Education is bringing the power of data to education through a SaaS platform used by hundreds of school districts across the US.",
|
2387
|
+
"description": "Based in Boston, Massachusetts, Panorama Education is a data analytics company for K-12 education. They help school districts, charter networks, and state governments conduct surveys of students, parents, teachers, and staff. Their classroom surveys collect feedback about individual teachers, and their school surveys gather data about the school environment and administrators. They believe that stakeholder feedback is a powerful professional development tool, and they believe that stakeholder surveys--when done correctly--make educator evaluation systems more fair and more effective.",
|
2388
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397180215/befc9801553b0a0415ccb560f2d93f9e.png",
|
2389
|
+
"primary_role": "company",
|
2390
|
+
"role_company": true,
|
2391
|
+
"role_investor": false,
|
2392
|
+
"role_group": false,
|
2393
|
+
"role_school": false,
|
2394
|
+
"investor_type": null,
|
2395
|
+
"founded_on": "2012-01-01",
|
2396
|
+
"founded_on_trust_code": 5,
|
2397
|
+
"is_closed": false,
|
2398
|
+
"closed_on": null,
|
2399
|
+
"closed_on_trust_code": null,
|
2400
|
+
"num_employees_min": 11,
|
2401
|
+
"num_employees_max": 50,
|
2402
|
+
"stock_exchange": null,
|
2403
|
+
"stock_symbol": null,
|
2404
|
+
"total_funding_usd": 0,
|
2405
|
+
"number_of_investments": 0,
|
2406
|
+
"homepage_url": null,
|
2407
|
+
"contact_email": "contact@panoramaed.com",
|
2408
|
+
"phone_number": "(617) 356-8123",
|
2409
|
+
"created_at": 1376610269,
|
2410
|
+
"updated_at": 1509299244
|
2411
|
+
}
|
2412
|
+
}
|
2413
|
+
}
|
2414
|
+
}]
|
2415
|
+
},
|
2416
|
+
"memberships":
|
2417
|
+
{
|
2418
|
+
"cardinality": "ManyToMany",
|
2419
|
+
"paging":
|
2420
|
+
{
|
2421
|
+
"total_items": 0,
|
2422
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/memberships",
|
2423
|
+
"sort_order": "not_ordered"
|
2424
|
+
},
|
2425
|
+
"items": []
|
2426
|
+
},
|
2427
|
+
"images":
|
2428
|
+
{
|
2429
|
+
"cardinality": "OneToMany",
|
2430
|
+
"paging":
|
2431
|
+
{
|
2432
|
+
"total_items": 0,
|
2433
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/images",
|
2434
|
+
"sort_order": "not_ordered"
|
2435
|
+
},
|
2436
|
+
"items": []
|
2437
|
+
},
|
2438
|
+
"videos":
|
2439
|
+
{
|
2440
|
+
"cardinality": "OneToMany",
|
2441
|
+
"paging":
|
2442
|
+
{
|
2443
|
+
"total_items": 0,
|
2444
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/videos",
|
2445
|
+
"sort_order": "not_ordered"
|
2446
|
+
},
|
2447
|
+
"items": []
|
2448
|
+
},
|
2449
|
+
"news":
|
2450
|
+
{
|
2451
|
+
"cardinality": "OneToMany",
|
2452
|
+
"paging":
|
2453
|
+
{
|
2454
|
+
"total_items": 19696,
|
2455
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/people/mark-zuckerberg/news",
|
2456
|
+
"sort_order": "posted_on DESC"
|
2457
|
+
},
|
2458
|
+
"items": [
|
2459
|
+
{
|
2460
|
+
"type": "News",
|
2461
|
+
"uuid": "198fdcd5d85945feb1cb2541ea032a8d",
|
2462
|
+
"properties":
|
2463
|
+
{
|
2464
|
+
"title": "Facebook stumbles with early effort to stamp out fake news",
|
2465
|
+
"author": "Sarah Frier",
|
2466
|
+
"posted_on": "2017-10-31",
|
2467
|
+
"posted_on_trust_code": 7,
|
2468
|
+
"url": "http://www.livemint.com/Companies/Q5Ik0Rb0MzRRqHOyfcGNQM/Facebook-stumbles-with-early-effort-to-stamp-out-fake-news.html",
|
2469
|
+
"created_at": 1509411945,
|
2470
|
+
"updated_at": 1509411945
|
2471
|
+
}
|
2472
|
+
},
|
2473
|
+
{
|
2474
|
+
"type": "News",
|
2475
|
+
"uuid": "331dc9d8328749a39cad29695cb374de",
|
2476
|
+
"properties":
|
2477
|
+
{
|
2478
|
+
"title": "Facebook CEO Mark Zuckerberg is on his annual trip to China, meets with students from business school",
|
2479
|
+
"author": "IANS",
|
2480
|
+
"posted_on": "2017-10-30",
|
2481
|
+
"posted_on_trust_code": 7,
|
2482
|
+
"url": "http://www.firstpost.com/tech/news-analysis/facebook-ceo-mark-zuckerberg-on-an-annual-trip-to-china-to-attend-advisory-meeting-at-a-business-school-4183233.html",
|
2483
|
+
"created_at": 1509339854,
|
2484
|
+
"updated_at": 1509339854
|
2485
|
+
}
|
2486
|
+
},
|
2487
|
+
{
|
2488
|
+
"type": "News",
|
2489
|
+
"uuid": "4418486ae62b4df088e4c6fb69397a1d",
|
2490
|
+
"properties":
|
2491
|
+
{
|
2492
|
+
"title": "Facebook CEO Mark Zuckerberg’s second visit to China seen as renewed effort at setting up business",
|
2493
|
+
"author": "Staff",
|
2494
|
+
"posted_on": "2017-10-30",
|
2495
|
+
"posted_on_trust_code": 7,
|
2496
|
+
"url": "http://www.bgr.in/news/facebook-ceo-mark-zuckerbergs-second-visit-to-china-seen-as-renewed-effort-at-setting-up-business/",
|
2497
|
+
"created_at": 1509383913,
|
2498
|
+
"updated_at": 1509383913
|
2499
|
+
}
|
2500
|
+
},
|
2501
|
+
{
|
2502
|
+
"type": "News",
|
2503
|
+
"uuid": "f819dfc35f6b40c99dbb4c0bdca74c07",
|
2504
|
+
"properties":
|
2505
|
+
{
|
2506
|
+
"title": "Apple's Cook, Facebook's Zuckerberg meet China's Xi in Beijing",
|
2507
|
+
"author": null,
|
2508
|
+
"posted_on": "2017-10-30",
|
2509
|
+
"posted_on_trust_code": 7,
|
2510
|
+
"url": "http://www.channelnewsasia.com/news/business/apple-s-cook--facebook-s-zuckerberg-meet-china-s-xi-in-beijing-9359044",
|
2511
|
+
"created_at": 1509375142,
|
2512
|
+
"updated_at": 1509375142
|
2513
|
+
}
|
2514
|
+
},
|
2515
|
+
{
|
2516
|
+
"type": "News",
|
2517
|
+
"uuid": "35c8922056104aa3bfd3f16229211497",
|
2518
|
+
"properties":
|
2519
|
+
{
|
2520
|
+
"title": "Facebook’s Mark Zuckerberg Makes Another Appearance in China",
|
2521
|
+
"author": "Alyssa Abkowitz",
|
2522
|
+
"posted_on": "2017-10-30",
|
2523
|
+
"posted_on_trust_code": 7,
|
2524
|
+
"url": "https://www.wsj.com/articles/facebooks-mark-zuckerberg-makes-another-appearance-in-china-1509360341?mod=nwsrl_personal_technology_geoffrey_fowler&cx_refModule=nwsrl",
|
2525
|
+
"created_at": 1509387599,
|
2526
|
+
"updated_at": 1509387599
|
2527
|
+
}
|
2528
|
+
},
|
2529
|
+
{
|
2530
|
+
"type": "News",
|
2531
|
+
"uuid": "fe22e589f49d48e5928bf70f6803942b",
|
2532
|
+
"properties":
|
2533
|
+
{
|
2534
|
+
"title": "Apple's CEO Joins China's President Xi at an Annual Gathering at Beijing's Tsinghua University Business School",
|
2535
|
+
"author": "Jack Purcher",
|
2536
|
+
"posted_on": "2017-10-30",
|
2537
|
+
"posted_on_trust_code": 7,
|
2538
|
+
"url": "http://www.patentlyapple.com/patently-apple/2017/10/apples-ceo-joins-chinas-president-xi-at-an-annual-gathering-at-beijings-tsinghua-university-business-school.html?no_prefetch=1",
|
2539
|
+
"created_at": 1509396534,
|
2540
|
+
"updated_at": 1509396534
|
2541
|
+
}
|
2542
|
+
},
|
2543
|
+
{
|
2544
|
+
"type": "News",
|
2545
|
+
"uuid": "36e5788cb97244f19db6cb512ba9fd3f",
|
2546
|
+
"properties":
|
2547
|
+
{
|
2548
|
+
"title": "Facebook's Blind Spot: Connecting The World, For Better Or Worse",
|
2549
|
+
"author": "Aarti Shahani",
|
2550
|
+
"posted_on": "2017-10-30",
|
2551
|
+
"posted_on_trust_code": 7,
|
2552
|
+
"url": "http://www.npr.org/2017/10/30/560767460/facebooks-blind-spot-connecting-the-world-for-better-or-worse",
|
2553
|
+
"created_at": 1509411822,
|
2554
|
+
"updated_at": 1509411822
|
2555
|
+
}
|
2556
|
+
},
|
2557
|
+
{
|
2558
|
+
"type": "News",
|
2559
|
+
"uuid": "1292c8d04fc541b9a25166cdbf0fce99",
|
2560
|
+
"properties":
|
2561
|
+
{
|
2562
|
+
"title": "Look: West Bank graffiti depicts Netanyahu and Trump locking lips",
|
2563
|
+
"author": "Lauren S. Marcus",
|
2564
|
+
"posted_on": "2017-10-29",
|
2565
|
+
"posted_on_trust_code": 7,
|
2566
|
+
"url": "http://www.jpost.com/Israel-News/LOOK-West-Bank-graffiti-depicts-Netanyahu-and-Trump-locking-lips-508730",
|
2567
|
+
"created_at": 1509304468,
|
2568
|
+
"updated_at": 1509304468
|
2569
|
+
}
|
2570
|
+
},
|
2571
|
+
{
|
2572
|
+
"type": "News",
|
2573
|
+
"uuid": "f714ee4583ef4f049733367afc4af09b",
|
2574
|
+
"properties":
|
2575
|
+
{
|
2576
|
+
"title": "The Geek Chorus: 'Give MARK ZUCKERBERG all the DATA he wants!'",
|
2577
|
+
"author": "Mark Pesce",
|
2578
|
+
"posted_on": "2017-10-29",
|
2579
|
+
"posted_on_trust_code": 7,
|
2580
|
+
"url": "http://www.theregister.co.uk/2014/10/01/the_geek_chorus/",
|
2581
|
+
"created_at": 1509309319,
|
2582
|
+
"updated_at": 1509309319
|
2583
|
+
}
|
2584
|
+
},
|
2585
|
+
{
|
2586
|
+
"type": "News",
|
2587
|
+
"uuid": "c39c1e4a59714d1186a836a896880b10",
|
2588
|
+
"properties":
|
2589
|
+
{
|
2590
|
+
"title": "Human or robot? Future of financial advisory",
|
2591
|
+
"author": null,
|
2592
|
+
"posted_on": "2017-10-29",
|
2593
|
+
"posted_on_trust_code": 7,
|
2594
|
+
"url": "http://www.straitstimes.com/business/invest/human-or-robot-future-of-financial-advisory",
|
2595
|
+
"created_at": 1509313788,
|
2596
|
+
"updated_at": 1509313788
|
2597
|
+
}
|
2598
|
+
}]
|
2599
|
+
}
|
2600
|
+
}
|
2601
|
+
}
|
2602
|
+
}
|