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,4336 @@
|
|
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": 416,
|
14
|
+
"number_of_pages": 5,
|
15
|
+
"current_page": 1,
|
16
|
+
"sort_order": "created_at DESC",
|
17
|
+
"items_per_page": 100,
|
18
|
+
"next_page_url": "https://api.crunchbase.com/v3.1/organizations/facebook/past_team?page=2&sort_order=created_at%20DESC&items_per_page=100",
|
19
|
+
"prev_page_url": null,
|
20
|
+
"key_set_url": null,
|
21
|
+
"collection_url": "https://api.crunchbase.com/v3.1/organizations/facebook/past_team",
|
22
|
+
"updated_since": null
|
23
|
+
},
|
24
|
+
"items": [
|
25
|
+
{
|
26
|
+
"type": "Job",
|
27
|
+
"uuid": "29939253caf107957250298344c8d3e6",
|
28
|
+
"properties":
|
29
|
+
{
|
30
|
+
"title": "Director of Security Incident Response",
|
31
|
+
"started_on": null,
|
32
|
+
"started_on_trust_code": null,
|
33
|
+
"ended_on": null,
|
34
|
+
"ended_on_trust_code": 0,
|
35
|
+
"is_current": false,
|
36
|
+
"created_at": 1395337054,
|
37
|
+
"updated_at": 1398003268
|
38
|
+
},
|
39
|
+
"relationships":
|
40
|
+
{
|
41
|
+
"person":
|
42
|
+
{
|
43
|
+
"type": "Person",
|
44
|
+
"uuid": "55567c3b539d439ef887c0b40108126e",
|
45
|
+
"properties":
|
46
|
+
{
|
47
|
+
"permalink": "ryan-mcgeehan",
|
48
|
+
"api_path": "people/ryan-mcgeehan",
|
49
|
+
"web_path": "person/ryan-mcgeehan",
|
50
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/ryan-mcgeehan",
|
51
|
+
"first_name": "Ryan",
|
52
|
+
"last_name": "McGeehan",
|
53
|
+
"gender": "Male",
|
54
|
+
"also_known_as": null,
|
55
|
+
"bio": "Ryan Mcgeehan is with the security program at CoinBase. \r\n\r\nPreviously he served as the Director of Security Incident Response at Facebook.",
|
56
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397751307/217af981fbb46c1bdb91120609c7e09e.png",
|
57
|
+
"role_investor": false,
|
58
|
+
"born_on": null,
|
59
|
+
"born_on_trust_code": null,
|
60
|
+
"died_on": null,
|
61
|
+
"died_on_trust_code": null,
|
62
|
+
"created_at": 1395362254,
|
63
|
+
"updated_at": 1477540180
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
},
|
68
|
+
{
|
69
|
+
"type": "Job",
|
70
|
+
"uuid": "57b34e6b2e3c4041ae5acb4d3b453081",
|
71
|
+
"properties":
|
72
|
+
{
|
73
|
+
"title": "Engineer",
|
74
|
+
"started_on": "2004-01-01",
|
75
|
+
"started_on_trust_code": 5,
|
76
|
+
"ended_on": "2004-01-01",
|
77
|
+
"ended_on_trust_code": 5,
|
78
|
+
"is_current": false,
|
79
|
+
"created_at": 1509251765,
|
80
|
+
"updated_at": 1509251765
|
81
|
+
},
|
82
|
+
"relationships":
|
83
|
+
{
|
84
|
+
"person":
|
85
|
+
{
|
86
|
+
"type": "Person",
|
87
|
+
"uuid": "6b60fc63af014740aa83fc5ff96a91ea",
|
88
|
+
"properties":
|
89
|
+
{
|
90
|
+
"permalink": "sk-sharma",
|
91
|
+
"api_path": "people/sk-sharma",
|
92
|
+
"web_path": "person/sk-sharma",
|
93
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/sk-sharma",
|
94
|
+
"first_name": "SK",
|
95
|
+
"last_name": "Sharma",
|
96
|
+
"gender": "Male",
|
97
|
+
"also_known_as": null,
|
98
|
+
"bio": null,
|
99
|
+
"profile_image_url": null,
|
100
|
+
"role_investor": false,
|
101
|
+
"born_on": null,
|
102
|
+
"born_on_trust_code": null,
|
103
|
+
"died_on": null,
|
104
|
+
"died_on_trust_code": null,
|
105
|
+
"created_at": 1509244834,
|
106
|
+
"updated_at": 1509251765
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"type": "Job",
|
113
|
+
"uuid": "94e22af30a46ddaa9d259b35f3bcc983",
|
114
|
+
"properties":
|
115
|
+
{
|
116
|
+
"title": "VP, EMEA",
|
117
|
+
"started_on": "2010-04-02",
|
118
|
+
"started_on_trust_code": 7,
|
119
|
+
"ended_on": "2013-01-01",
|
120
|
+
"ended_on_trust_code": 5,
|
121
|
+
"is_current": false,
|
122
|
+
"created_at": 1270256509,
|
123
|
+
"updated_at": 1434045554
|
124
|
+
},
|
125
|
+
"relationships":
|
126
|
+
{
|
127
|
+
"person":
|
128
|
+
{
|
129
|
+
"type": "Person",
|
130
|
+
"uuid": "281d5b6e35c4de1f98393aacb5978a10",
|
131
|
+
"properties":
|
132
|
+
{
|
133
|
+
"permalink": "joanna-shields",
|
134
|
+
"api_path": "people/joanna-shields",
|
135
|
+
"web_path": "person/joanna-shields",
|
136
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/joanna-shields",
|
137
|
+
"first_name": "Baroness Joanna",
|
138
|
+
"last_name": "Shields OBE",
|
139
|
+
"gender": "Female",
|
140
|
+
"also_known_as": null,
|
141
|
+
"bio": "Joanna Shields, Baroness Shields, OBE is the UK Minister for Internet Safety and Security. Currently serving as Parliamentary Under-Secretary of State for both the UK Home Office and the Department for Culture, Media and Sport\r\n\r\nShields previously served as the Chair of Tech City UK and a Non-Executive Director of the London Stock Exchange Group.\r\n\r\nShe was appointed a Life Peer in the House of Lords in August 2014, and began serving in October 2014.\r\n\r\nShields has spent the past 27 years building some of the world's best-known technology companies, including Electronics for Imaging (Efi), RealNetworks, Google, Bebo, Aol and Facebook. She is a dual US/UK citizen, having relocated from Silicon Valley to London in 2000.\r\n\r\nBefore taking up her current post at the request of Prime Minister David Cameron she was Vice President and Managing Director of Facebook in Europe, Middle East and Africa. Prior to Facebook she served as President of People Networks at Aol, a position she assumed after the acquisition of Bebo by Time Warner's Aol unit. At Bebo, Shields was CEO, leading the company's growth to 50M users and eventual acquisition for $850 million. Prior to this position she served as Managing Director, Syndication & Partnerships (Business Development) for Google Europe, Middle East, Africa and Russia. \r\n\r\nShields was ranked #1 on the Wired 100 in 2011 and #6 in the MediaGuardian 100 in 2012. In February 2013 she was named to the list of the 100 most powerful women in the United Kingdom by BBC Radio 4's Woman's Hour. In July 2013 Computer Weekly named Shields the Most Influential Woman in UK IT. In July 2013 she received the British Interactive Media Association’s Lifetime Achievement Award.\r\n\r\nhttp://www.joannashields.co.uk/",
|
142
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1410750133/iijcvecry35xugbsnxdw.jpg",
|
143
|
+
"role_investor": true,
|
144
|
+
"born_on": "1962-07-12",
|
145
|
+
"born_on_trust_code": 7,
|
146
|
+
"died_on": null,
|
147
|
+
"died_on_trust_code": null,
|
148
|
+
"created_at": 1184240605,
|
149
|
+
"updated_at": 1469466154
|
150
|
+
}
|
151
|
+
}
|
152
|
+
}
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"type": "Job",
|
156
|
+
"uuid": "9ec6a820f42f2a7a764ffe324e457ad9",
|
157
|
+
"properties":
|
158
|
+
{
|
159
|
+
"title": "Software Engineer",
|
160
|
+
"started_on": "2011-06-01",
|
161
|
+
"started_on_trust_code": 6,
|
162
|
+
"ended_on": "2013-09-01",
|
163
|
+
"ended_on_trust_code": 6,
|
164
|
+
"is_current": false,
|
165
|
+
"created_at": 1451324024,
|
166
|
+
"updated_at": 1451324024
|
167
|
+
},
|
168
|
+
"relationships":
|
169
|
+
{
|
170
|
+
"person":
|
171
|
+
{
|
172
|
+
"type": "Person",
|
173
|
+
"uuid": "0a29f0f5fa10fa1b93fa6230f77ed5ff",
|
174
|
+
"properties":
|
175
|
+
{
|
176
|
+
"permalink": "joe-binney",
|
177
|
+
"api_path": "people/joe-binney",
|
178
|
+
"web_path": "person/joe-binney",
|
179
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/joe-binney",
|
180
|
+
"first_name": "Joe",
|
181
|
+
"last_name": "Binney",
|
182
|
+
"gender": "Male",
|
183
|
+
"also_known_as": null,
|
184
|
+
"bio": null,
|
185
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1451323771/mb2jccrqpiaslmmafqco.jpg",
|
186
|
+
"role_investor": false,
|
187
|
+
"born_on": "1988-06-10",
|
188
|
+
"born_on_trust_code": 7,
|
189
|
+
"died_on": null,
|
190
|
+
"died_on_trust_code": null,
|
191
|
+
"created_at": 1451323824,
|
192
|
+
"updated_at": 1508650325
|
193
|
+
}
|
194
|
+
}
|
195
|
+
}
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"type": "Job",
|
199
|
+
"uuid": "230f684387bc0083b66591d4372bcc19",
|
200
|
+
"properties":
|
201
|
+
{
|
202
|
+
"title": "Software developer",
|
203
|
+
"started_on": "2008-02-01",
|
204
|
+
"started_on_trust_code": 6,
|
205
|
+
"ended_on": "2008-09-01",
|
206
|
+
"ended_on_trust_code": 6,
|
207
|
+
"is_current": false,
|
208
|
+
"created_at": 1320504358,
|
209
|
+
"updated_at": 1438042730
|
210
|
+
},
|
211
|
+
"relationships":
|
212
|
+
{
|
213
|
+
"person":
|
214
|
+
{
|
215
|
+
"type": "Person",
|
216
|
+
"uuid": "7bfe951cb2a4b21c2e2fa0bb890357b1",
|
217
|
+
"properties":
|
218
|
+
{
|
219
|
+
"permalink": "pooja-sankar",
|
220
|
+
"api_path": "people/pooja-sankar",
|
221
|
+
"web_path": "person/pooja-sankar",
|
222
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/pooja-sankar",
|
223
|
+
"first_name": "Pooja",
|
224
|
+
"last_name": "Sankar",
|
225
|
+
"gender": "Female",
|
226
|
+
"also_known_as": [
|
227
|
+
"Pooja Nath"
|
228
|
+
],
|
229
|
+
"bio": "Pooja Sankar (nee Nath) is the CEO of Piazza.Prior to Piazza, Pooja worked at Facebook on their News Feed Team.She was also a developer at Kosmix and a developer at Oracle.She received her Undergraduate degree in CS from IIT Kanpur (India), a Masters in CS from University of Maryland, College Park, and an MBA at Stanford GSB.",
|
230
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397180916/0fb7bf86fe0a2ec30fb414292f0c6b2f.png",
|
231
|
+
"role_investor": false,
|
232
|
+
"born_on": null,
|
233
|
+
"born_on_trust_code": null,
|
234
|
+
"died_on": null,
|
235
|
+
"died_on_trust_code": null,
|
236
|
+
"created_at": 1265339683,
|
237
|
+
"updated_at": 1467551029
|
238
|
+
}
|
239
|
+
}
|
240
|
+
}
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"type": "Job",
|
244
|
+
"uuid": "6633241a1a065baa0cddb4dff63b05ad",
|
245
|
+
"properties":
|
246
|
+
{
|
247
|
+
"title": "Design Intern",
|
248
|
+
"started_on": null,
|
249
|
+
"started_on_trust_code": null,
|
250
|
+
"ended_on": null,
|
251
|
+
"ended_on_trust_code": 0,
|
252
|
+
"is_current": false,
|
253
|
+
"created_at": 1391797946,
|
254
|
+
"updated_at": 1398003865
|
255
|
+
},
|
256
|
+
"relationships":
|
257
|
+
{
|
258
|
+
"person":
|
259
|
+
{
|
260
|
+
"type": "Person",
|
261
|
+
"uuid": "29cd3cb196e5d96280206f4c3b3abd0d",
|
262
|
+
"properties":
|
263
|
+
{
|
264
|
+
"permalink": "matt-dempsey",
|
265
|
+
"api_path": "people/matt-dempsey",
|
266
|
+
"web_path": "person/matt-dempsey",
|
267
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/matt-dempsey",
|
268
|
+
"first_name": "Matt",
|
269
|
+
"last_name": "Dempsey",
|
270
|
+
"gender": "Male",
|
271
|
+
"also_known_as": null,
|
272
|
+
"bio": "Founder, Product & Design before Togethers Matt Previously at Facebook, NHS, co-founded Camayak, built Inception Explained & ComicSansCriminal. MattDempsey.com.",
|
273
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397180830/d2f63b29473718321ce224687a94bd58.jpg",
|
274
|
+
"role_investor": false,
|
275
|
+
"born_on": null,
|
276
|
+
"born_on_trust_code": null,
|
277
|
+
"died_on": null,
|
278
|
+
"died_on_trust_code": null,
|
279
|
+
"created_at": 1391825280,
|
280
|
+
"updated_at": 1477765107
|
281
|
+
}
|
282
|
+
}
|
283
|
+
}
|
284
|
+
},
|
285
|
+
{
|
286
|
+
"type": "Job",
|
287
|
+
"uuid": "f855d4a7a8d17f23b182936f633d4764",
|
288
|
+
"properties":
|
289
|
+
{
|
290
|
+
"title": "VP of Product Management",
|
291
|
+
"started_on": "2005-01-01",
|
292
|
+
"started_on_trust_code": 5,
|
293
|
+
"ended_on": "2008-06-01",
|
294
|
+
"ended_on_trust_code": 6,
|
295
|
+
"is_current": false,
|
296
|
+
"created_at": 1180131419,
|
297
|
+
"updated_at": 1463723338
|
298
|
+
},
|
299
|
+
"relationships":
|
300
|
+
{
|
301
|
+
"person":
|
302
|
+
{
|
303
|
+
"type": "Person",
|
304
|
+
"uuid": "99b0ec22248cdf20c9bbd898faf8dd68",
|
305
|
+
"properties":
|
306
|
+
{
|
307
|
+
"permalink": "matt-cohler",
|
308
|
+
"api_path": "people/matt-cohler",
|
309
|
+
"web_path": "person/matt-cohler",
|
310
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/matt-cohler",
|
311
|
+
"first_name": "Matt",
|
312
|
+
"last_name": "Cohler",
|
313
|
+
"gender": "Male",
|
314
|
+
"also_known_as": null,
|
315
|
+
"bio": "Matt Cohler is a General Partner at [Benchmark](http://www.crunchbase.com/financial-organization/benchmark-capital). He's responsible for identifying investment opportunities in Internet-related companies, in addition to working closely with companies across the firm’s portfolio.\r\n\r\nAt Benchmark, Matt has partnered with entrepreneurs from across the social, mobile and cloud industries from around the globe such as Instagram, Dropbox, Quora, Asana, Domo, Edmodo, Baixing, CouchSurfing, Peixe Urbano, ResearchGate, 1stdibs, and Zendesk.\r\n\r\nPrior to joining Benchmark he served as the VP of Product Management at [Facebook](http://www.crunchbase.com/organization/facebook), where he led the development of new strategic initiatives for the company. As the seventh employee at Facebook, Matt played a crucial role within the team during many critical growth phases.\r\n\r\nPreviously Matt was Vice President and General Manager at [LinkedIn](http://www.crunchbase.com/organization/linkedin), where he was a member of the founding team.\r\n\r\nMatt also has been a consultant in [McKinsey & Company’s](http://www.crunchbase.com/organization/mckinsey-company) Silicon Valley office and worked in Beijing for AsiaInfo, the Chinese startup that built the infrastructure for the Internet in mainland China. Matt’s writings on the startup economy have been published in Harvard Business Review. He holds a bachelor’s degree with honors and distinction from Yale University.",
|
316
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1490364479/bs9ejlptuxus5ehkhqxa.png",
|
317
|
+
"role_investor": true,
|
318
|
+
"born_on": "1977-03-27",
|
319
|
+
"born_on_trust_code": 7,
|
320
|
+
"died_on": null,
|
321
|
+
"died_on_trust_code": null,
|
322
|
+
"created_at": 1180156619,
|
323
|
+
"updated_at": 1503696980
|
324
|
+
}
|
325
|
+
}
|
326
|
+
}
|
327
|
+
},
|
328
|
+
{
|
329
|
+
"type": "Job",
|
330
|
+
"uuid": "0ac72bfd0be2968643c9704632456e9f",
|
331
|
+
"properties":
|
332
|
+
{
|
333
|
+
"title": "Interaction Designer",
|
334
|
+
"started_on": "2005-08-01",
|
335
|
+
"started_on_trust_code": 6,
|
336
|
+
"ended_on": "2005-12-01",
|
337
|
+
"ended_on_trust_code": 6,
|
338
|
+
"is_current": false,
|
339
|
+
"created_at": 1228424604,
|
340
|
+
"updated_at": 1438043230
|
341
|
+
},
|
342
|
+
"relationships":
|
343
|
+
{
|
344
|
+
"person":
|
345
|
+
{
|
346
|
+
"type": "Person",
|
347
|
+
"uuid": "72fe48408247b8e1f36e59e3dae15594",
|
348
|
+
"properties":
|
349
|
+
{
|
350
|
+
"permalink": "bryan-veloso",
|
351
|
+
"api_path": "people/bryan-veloso",
|
352
|
+
"web_path": "person/bryan-veloso",
|
353
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/bryan-veloso",
|
354
|
+
"first_name": "Bryan",
|
355
|
+
"last_name": "Veloso",
|
356
|
+
"gender": "Male",
|
357
|
+
"also_known_as": null,
|
358
|
+
"bio": "Bryan Veloso is a Co-Founder and CEO of Los Angeles, California-based Revyver. Prior to founding Revyver, he worked for both [Facebook](http://www.crunchbase.com/organization/facebook) and [Automattic](http://www.crunchbase.com/organization/automattic), in varying design roles ranging from interaction design to marketing and creative direction.",
|
359
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397188259/2ef0406684d764a96258c6920afdff4b.jpg",
|
360
|
+
"role_investor": false,
|
361
|
+
"born_on": "1983-04-02",
|
362
|
+
"born_on_trust_code": 7,
|
363
|
+
"died_on": null,
|
364
|
+
"died_on_trust_code": null,
|
365
|
+
"created_at": 1228157945,
|
366
|
+
"updated_at": 1450775961
|
367
|
+
}
|
368
|
+
}
|
369
|
+
}
|
370
|
+
},
|
371
|
+
{
|
372
|
+
"type": "Job",
|
373
|
+
"uuid": "92bd62e285b87ad53372df0413941ae7",
|
374
|
+
"properties":
|
375
|
+
{
|
376
|
+
"title": "Director of Monetization",
|
377
|
+
"started_on": "2006-06-20",
|
378
|
+
"started_on_trust_code": 7,
|
379
|
+
"ended_on": "2010-12-05",
|
380
|
+
"ended_on_trust_code": 7,
|
381
|
+
"is_current": false,
|
382
|
+
"created_at": 1216768168,
|
383
|
+
"updated_at": 1498175590
|
384
|
+
},
|
385
|
+
"relationships":
|
386
|
+
{
|
387
|
+
"person":
|
388
|
+
{
|
389
|
+
"type": "Person",
|
390
|
+
"uuid": "256ac5b8d52907808c7880f38a459074",
|
391
|
+
"properties":
|
392
|
+
{
|
393
|
+
"permalink": "tim-kendall",
|
394
|
+
"api_path": "people/tim-kendall",
|
395
|
+
"web_path": "person/tim-kendall",
|
396
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/tim-kendall",
|
397
|
+
"first_name": "Tim",
|
398
|
+
"last_name": "Kendall",
|
399
|
+
"gender": "Male",
|
400
|
+
"also_known_as": null,
|
401
|
+
"bio": "Tim (@tkendall) is the President of Pinterest, where he has global responsibility for sales, marketing and product development for advertising, commerce and partner solutions. Prior to Pinterest, Tim was Facebook’s Director of Monetization, where he led the development of Facebook’s advertising business. Before Facebook, Tim was a Product Manager at Amazon and was a contributing writer to Forbes on technology trends. He earned his engineering degree and MBA from Stanford University.",
|
402
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1493863943/ij5lhkxdxm7hq2gtvaxu.png",
|
403
|
+
"role_investor": true,
|
404
|
+
"born_on": null,
|
405
|
+
"born_on_trust_code": null,
|
406
|
+
"died_on": null,
|
407
|
+
"died_on_trust_code": null,
|
408
|
+
"created_at": 1216793368,
|
409
|
+
"updated_at": 1507113247
|
410
|
+
}
|
411
|
+
}
|
412
|
+
}
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"type": "Job",
|
416
|
+
"uuid": "3bf7b2779801466e396bf655a054eafb",
|
417
|
+
"properties":
|
418
|
+
{
|
419
|
+
"title": "CFO",
|
420
|
+
"started_on": "2009-01-01",
|
421
|
+
"started_on_trust_code": 5,
|
422
|
+
"ended_on": "2014-01-01",
|
423
|
+
"ended_on_trust_code": 5,
|
424
|
+
"is_current": false,
|
425
|
+
"created_at": 1246303100,
|
426
|
+
"updated_at": 1463031182
|
427
|
+
},
|
428
|
+
"relationships":
|
429
|
+
{
|
430
|
+
"person":
|
431
|
+
{
|
432
|
+
"type": "Person",
|
433
|
+
"uuid": "6dd3fa03cfefd5225d16a2766b9496e9",
|
434
|
+
"properties":
|
435
|
+
{
|
436
|
+
"permalink": "david-ebersman",
|
437
|
+
"api_path": "people/david-ebersman",
|
438
|
+
"web_path": "person/david-ebersman",
|
439
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/david-ebersman",
|
440
|
+
"first_name": "David",
|
441
|
+
"last_name": "Ebersman",
|
442
|
+
"gender": "Male",
|
443
|
+
"also_known_as": null,
|
444
|
+
"bio": "David is founder and CEO of Lyra Health, a health care technology company focused on behavioral health. Previously, he served as Chief Financial Officer of Facebook, Inc. from 2009 through 2014. \r\n\r\nPrior to joining Facebook, David worked at Genentech, Inc. for 15 years in various positions, including Executive Vice President and Chief Financial Officer, Senior Vice President, Product Operations, and Vice President, Product Development.\r\n\r\n David holds an A.B. in International Relations and Economics from Brown University and was selected as a Henry Crown Fellow in 2000.",
|
445
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1398138783/ecnrrvnucxtzh5yhod7f.png",
|
446
|
+
"role_investor": true,
|
447
|
+
"born_on": null,
|
448
|
+
"born_on_trust_code": null,
|
449
|
+
"died_on": null,
|
450
|
+
"died_on_trust_code": null,
|
451
|
+
"created_at": 1246328300,
|
452
|
+
"updated_at": 1477889194
|
453
|
+
}
|
454
|
+
}
|
455
|
+
}
|
456
|
+
},
|
457
|
+
{
|
458
|
+
"type": "Job",
|
459
|
+
"uuid": "2043bd04018b402aa4826aa45e9f9ad5",
|
460
|
+
"properties":
|
461
|
+
{
|
462
|
+
"title": "Senior Software Engineer",
|
463
|
+
"started_on": "2016-01-04",
|
464
|
+
"started_on_trust_code": 7,
|
465
|
+
"ended_on": "2017-02-03",
|
466
|
+
"ended_on_trust_code": 7,
|
467
|
+
"is_current": false,
|
468
|
+
"created_at": 1492545198,
|
469
|
+
"updated_at": 1492545198
|
470
|
+
},
|
471
|
+
"relationships":
|
472
|
+
{
|
473
|
+
"person":
|
474
|
+
{
|
475
|
+
"type": "Person",
|
476
|
+
"uuid": "2eff969872c48c18beb65d164364942f",
|
477
|
+
"properties":
|
478
|
+
{
|
479
|
+
"permalink": "eric-jorgensen-2",
|
480
|
+
"api_path": "people/eric-jorgensen-2",
|
481
|
+
"web_path": "person/eric-jorgensen-2",
|
482
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/eric-jorgensen-2",
|
483
|
+
"first_name": "Eric",
|
484
|
+
"last_name": "Jorgensen",
|
485
|
+
"gender": "Male",
|
486
|
+
"also_known_as": null,
|
487
|
+
"bio": "MIT graduate with 20+ years of experience engineering complex systems, mentoring developers, and improving processes. I love writing tools and giving training that multiplies productivity and enjoyment.",
|
488
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1492544728/q0lzn9y1dnvku2yywjkx.jpg",
|
489
|
+
"role_investor": false,
|
490
|
+
"born_on": "1971-01-01",
|
491
|
+
"born_on_trust_code": 7,
|
492
|
+
"died_on": null,
|
493
|
+
"died_on_trust_code": null,
|
494
|
+
"created_at": 1492540352,
|
495
|
+
"updated_at": 1492545453
|
496
|
+
}
|
497
|
+
}
|
498
|
+
}
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"type": "Job",
|
502
|
+
"uuid": "b088abd320e9f85d77a96986d4f6e55f",
|
503
|
+
"properties":
|
504
|
+
{
|
505
|
+
"title": "Mid-Market Sales, North America",
|
506
|
+
"started_on": "2009-10-01",
|
507
|
+
"started_on_trust_code": 6,
|
508
|
+
"ended_on": "2010-10-01",
|
509
|
+
"ended_on_trust_code": 6,
|
510
|
+
"is_current": false,
|
511
|
+
"created_at": 1474400638,
|
512
|
+
"updated_at": 1474400638
|
513
|
+
},
|
514
|
+
"relationships":
|
515
|
+
{
|
516
|
+
"person":
|
517
|
+
{
|
518
|
+
"type": "Person",
|
519
|
+
"uuid": "f25629ae8de3c3e4f27070891646884a",
|
520
|
+
"properties":
|
521
|
+
{
|
522
|
+
"permalink": "maz-sharafi",
|
523
|
+
"api_path": "people/maz-sharafi",
|
524
|
+
"web_path": "person/maz-sharafi",
|
525
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/maz-sharafi",
|
526
|
+
"first_name": "Maz",
|
527
|
+
"last_name": "Sharafi",
|
528
|
+
"gender": "Male",
|
529
|
+
"also_known_as": null,
|
530
|
+
"bio": "Maz Sharafi is a Director of Monetization Product Marketing at Facebook. He has been working at Facebook since 2009. He is also currently working as Regional Board Member at BUILD. Maz also worked as Senior Manager of Strategic Planning Group at American Express, Strategic Partnerships of Local/SMB Monetization at Google, and an associate of Corporate Development and Investment Banking at Citigroup.",
|
531
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1474399159/h6a9v3m9uafcuzx5pclc.jpg",
|
532
|
+
"role_investor": false,
|
533
|
+
"born_on": null,
|
534
|
+
"born_on_trust_code": null,
|
535
|
+
"died_on": null,
|
536
|
+
"died_on_trust_code": null,
|
537
|
+
"created_at": 1474399126,
|
538
|
+
"updated_at": 1474400750
|
539
|
+
}
|
540
|
+
}
|
541
|
+
}
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"type": "Job",
|
545
|
+
"uuid": "197f01aab795568312cb7e80686105c8",
|
546
|
+
"properties":
|
547
|
+
{
|
548
|
+
"title": "Product Designer",
|
549
|
+
"started_on": "2011-02-01",
|
550
|
+
"started_on_trust_code": 6,
|
551
|
+
"ended_on": "2013-08-30",
|
552
|
+
"ended_on_trust_code": 7,
|
553
|
+
"is_current": false,
|
554
|
+
"created_at": 1408647490,
|
555
|
+
"updated_at": 1437945562
|
556
|
+
},
|
557
|
+
"relationships":
|
558
|
+
{
|
559
|
+
"person":
|
560
|
+
{
|
561
|
+
"type": "Person",
|
562
|
+
"uuid": "2271a22d098b785f7cf1d6f8ab963fc2",
|
563
|
+
"properties":
|
564
|
+
{
|
565
|
+
"permalink": "chris-kalani",
|
566
|
+
"api_path": "people/chris-kalani",
|
567
|
+
"web_path": "person/chris-kalani",
|
568
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/chris-kalani",
|
569
|
+
"first_name": "Chris",
|
570
|
+
"last_name": "Kalani",
|
571
|
+
"gender": "Male",
|
572
|
+
"also_known_as": null,
|
573
|
+
"bio": "Chris is the founder and CEO of Wake. He started his career at Jive Software nearly 10 years ago. He later worked for various agencies where he focused on building products for companies like Microsoft and Nike. Before starting Wake, Chris was a designer at Facebook where he worked on the growth and engagement team, graph search and Messenger.",
|
574
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1408647412/s2ii9ehpbl0gv5io2nme.jpg",
|
575
|
+
"role_investor": false,
|
576
|
+
"born_on": "1987-06-03",
|
577
|
+
"born_on_trust_code": 7,
|
578
|
+
"died_on": null,
|
579
|
+
"died_on_trust_code": null,
|
580
|
+
"created_at": 1408647443,
|
581
|
+
"updated_at": 1498854747
|
582
|
+
}
|
583
|
+
}
|
584
|
+
}
|
585
|
+
},
|
586
|
+
{
|
587
|
+
"type": "Job",
|
588
|
+
"uuid": "19cecc74f6c36583464b4ee6457cc537",
|
589
|
+
"properties":
|
590
|
+
{
|
591
|
+
"title": "Product Management",
|
592
|
+
"started_on": "2008-01-01",
|
593
|
+
"started_on_trust_code": 5,
|
594
|
+
"ended_on": "2008-01-01",
|
595
|
+
"ended_on_trust_code": 5,
|
596
|
+
"is_current": false,
|
597
|
+
"created_at": 1368338528,
|
598
|
+
"updated_at": 1434168758
|
599
|
+
},
|
600
|
+
"relationships":
|
601
|
+
{
|
602
|
+
"person":
|
603
|
+
{
|
604
|
+
"type": "Person",
|
605
|
+
"uuid": "64bd66bc93499a771d1d7ecee6c2360d",
|
606
|
+
"properties":
|
607
|
+
{
|
608
|
+
"permalink": "sergei-sorokin",
|
609
|
+
"api_path": "people/sergei-sorokin",
|
610
|
+
"web_path": "person/sergei-sorokin",
|
611
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/sergei-sorokin",
|
612
|
+
"first_name": "Sergei",
|
613
|
+
"last_name": "Sorokin",
|
614
|
+
"gender": "Male",
|
615
|
+
"also_known_as": null,
|
616
|
+
"bio": "Sergei Sorokin is the director of product management at TinyCo.\r\n",
|
617
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397184750/c73c7f718b4852eb5035d05f1a5f0f0b.jpg",
|
618
|
+
"role_investor": false,
|
619
|
+
"born_on": null,
|
620
|
+
"born_on_trust_code": null,
|
621
|
+
"died_on": null,
|
622
|
+
"died_on_trust_code": null,
|
623
|
+
"created_at": 1329388653,
|
624
|
+
"updated_at": 1424942013
|
625
|
+
}
|
626
|
+
}
|
627
|
+
}
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"type": "Job",
|
631
|
+
"uuid": "643a2ba783fc9c17236b0107ad9bab81",
|
632
|
+
"properties":
|
633
|
+
{
|
634
|
+
"title": "Director - Global Vertical Strategy",
|
635
|
+
"started_on": "2013-08-01",
|
636
|
+
"started_on_trust_code": 7,
|
637
|
+
"ended_on": "2014-08-01",
|
638
|
+
"ended_on_trust_code": 7,
|
639
|
+
"is_current": false,
|
640
|
+
"created_at": 1481079613,
|
641
|
+
"updated_at": 1481079613
|
642
|
+
},
|
643
|
+
"relationships":
|
644
|
+
{
|
645
|
+
"person":
|
646
|
+
{
|
647
|
+
"type": "Person",
|
648
|
+
"uuid": "f91040ef7c5e1fb13787ff417d40d6cd",
|
649
|
+
"properties":
|
650
|
+
{
|
651
|
+
"permalink": "steve-irvine",
|
652
|
+
"api_path": "people/steve-irvine",
|
653
|
+
"web_path": "person/steve-irvine",
|
654
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/steve-irvine",
|
655
|
+
"first_name": "Steve",
|
656
|
+
"last_name": "Irvine",
|
657
|
+
"gender": "Male",
|
658
|
+
"also_known_as": null,
|
659
|
+
"bio": null,
|
660
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1481079208/yunzgkvzyftehuebmzkf.jpg",
|
661
|
+
"role_investor": false,
|
662
|
+
"born_on": null,
|
663
|
+
"born_on_trust_code": null,
|
664
|
+
"died_on": null,
|
665
|
+
"died_on_trust_code": null,
|
666
|
+
"created_at": 1276894844,
|
667
|
+
"updated_at": 1487971551
|
668
|
+
}
|
669
|
+
}
|
670
|
+
}
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"type": "Job",
|
674
|
+
"uuid": "a21bac44effd160cdacf75bc4d615f03",
|
675
|
+
"properties":
|
676
|
+
{
|
677
|
+
"title": "Team Member",
|
678
|
+
"started_on": "2007-01-01",
|
679
|
+
"started_on_trust_code": 5,
|
680
|
+
"ended_on": "2011-09-01",
|
681
|
+
"ended_on_trust_code": 7,
|
682
|
+
"is_current": false,
|
683
|
+
"created_at": 1367723989,
|
684
|
+
"updated_at": 1438042573
|
685
|
+
},
|
686
|
+
"relationships":
|
687
|
+
{
|
688
|
+
"person":
|
689
|
+
{
|
690
|
+
"type": "Person",
|
691
|
+
"uuid": "10a3cf0c70f8693af96bb73c38aa3988",
|
692
|
+
"properties":
|
693
|
+
{
|
694
|
+
"permalink": "chad-little-2",
|
695
|
+
"api_path": "people/chad-little-2",
|
696
|
+
"web_path": "person/chad-little-2",
|
697
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/chad-little-2",
|
698
|
+
"first_name": "Chad",
|
699
|
+
"last_name": "Little",
|
700
|
+
"gender": "Male",
|
701
|
+
"also_known_as": null,
|
702
|
+
"bio": "Chad is a product designer and developer.",
|
703
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1425342698/tkgwcsftjv4ovjyzehwk.jpg",
|
704
|
+
"role_investor": false,
|
705
|
+
"born_on": "1973-09-01",
|
706
|
+
"born_on_trust_code": 7,
|
707
|
+
"died_on": null,
|
708
|
+
"died_on_trust_code": null,
|
709
|
+
"created_at": 1367749189,
|
710
|
+
"updated_at": 1425342701
|
711
|
+
}
|
712
|
+
}
|
713
|
+
}
|
714
|
+
},
|
715
|
+
{
|
716
|
+
"type": "Job",
|
717
|
+
"uuid": "686de3b287c6215546b5cf20f508a4fe",
|
718
|
+
"properties":
|
719
|
+
{
|
720
|
+
"title": "Engineering Manager, Hiring",
|
721
|
+
"started_on": "2008-08-01",
|
722
|
+
"started_on_trust_code": 6,
|
723
|
+
"ended_on": "2009-02-01",
|
724
|
+
"ended_on_trust_code": 6,
|
725
|
+
"is_current": false,
|
726
|
+
"created_at": 1495773981,
|
727
|
+
"updated_at": 1495773981
|
728
|
+
},
|
729
|
+
"relationships":
|
730
|
+
{
|
731
|
+
"person":
|
732
|
+
{
|
733
|
+
"type": "Person",
|
734
|
+
"uuid": "5180901c34fe097ada5f22b7e335db27",
|
735
|
+
"properties":
|
736
|
+
{
|
737
|
+
"permalink": "dave-fetterman",
|
738
|
+
"api_path": "people/dave-fetterman",
|
739
|
+
"web_path": "person/dave-fetterman",
|
740
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/dave-fetterman",
|
741
|
+
"first_name": "Dave",
|
742
|
+
"last_name": "Fetterman",
|
743
|
+
"gender": "Male",
|
744
|
+
"also_known_as": null,
|
745
|
+
"bio": "Dave is an advisor to Quizlet on management, engineering, and recruiting. Previously Dave worked in engineering for seven years at Facebook, where he managed all mobile software development, ran the engineering hiring team, and started the Facebook Development Platform. He studied and taught math and computer science at Harvard University.",
|
746
|
+
"profile_image_url": null,
|
747
|
+
"role_investor": false,
|
748
|
+
"born_on": null,
|
749
|
+
"born_on_trust_code": null,
|
750
|
+
"died_on": null,
|
751
|
+
"died_on_trust_code": null,
|
752
|
+
"created_at": 1374539360,
|
753
|
+
"updated_at": 1508650957
|
754
|
+
}
|
755
|
+
}
|
756
|
+
}
|
757
|
+
},
|
758
|
+
{
|
759
|
+
"type": "Job",
|
760
|
+
"uuid": "58c44130ca5a76127cc5ab0fa116fa99",
|
761
|
+
"properties":
|
762
|
+
{
|
763
|
+
"title": "Consultant",
|
764
|
+
"started_on": null,
|
765
|
+
"started_on_trust_code": null,
|
766
|
+
"ended_on": null,
|
767
|
+
"ended_on_trust_code": 0,
|
768
|
+
"is_current": false,
|
769
|
+
"created_at": 1316048539,
|
770
|
+
"updated_at": 1398004897
|
771
|
+
},
|
772
|
+
"relationships":
|
773
|
+
{
|
774
|
+
"person":
|
775
|
+
{
|
776
|
+
"type": "Person",
|
777
|
+
"uuid": "af38abae0d50ea71253193a7f5dfe4ad",
|
778
|
+
"properties":
|
779
|
+
{
|
780
|
+
"permalink": "jim-pitkow",
|
781
|
+
"api_path": "people/jim-pitkow",
|
782
|
+
"web_path": "person/jim-pitkow",
|
783
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/jim-pitkow",
|
784
|
+
"first_name": "Jim",
|
785
|
+
"last_name": "Pitkow",
|
786
|
+
"gender": "Male",
|
787
|
+
"also_known_as": null,
|
788
|
+
"bio": "Jim is a Director and Chair of the Technical Task Force at Thorn. Prior, he was a co-founder of Attributor (acq. Digimarc 2012), co-founder of Anchor Intelligence (acq. Comscore 2010), advised Facebook on their ad targeting systems (2006), CEO of Moreover Technologies (acq. Verisign 2005), co-founder of Outride (acq. Google 2001).\r\n\r\nJim was a research scientist at Xerox PARC and Chair of the WWW Consortium's Web Characterization Activity. He worked with the User Interface Research (Dr. Stuart Card Manager) and Internet Ecologies (Dr. Bernardo Huberman Manager) groups which lead to dozens of patents and the publishing of \"The Law of Surfing\" in Science.\r\n\r\nHe received his Ph.D. in Computer Science from the Georgia Institute of Technology. His dissertation, \"Characterizing World Wide Web Ecologies\" was one of the earliest dedicated towards empirically understanding the dynamics of the Web. Jim helped pioneer the field of online surveying by creating GVU's WWW User Surveys. His research paper, \"Characterizing Browsing Strategies in the World-Wide Web\" is the basis for online analytics and continues to invalidate tens of millions of dollars of patent lawsuits.\r\n\r\nJim graduated Cum Laude in Psychology from the University of Colorado. While there he helped prototype some of the first uses of the Web within NASA. \r\n\r\nOutside of work, Jim is a member of the National Ski Patrol/Northern California Search and Rescue and is a certified yoga teacher in two lineages.",
|
789
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397181607/3898e3cff72360879822fb90b05289f1.jpg",
|
790
|
+
"role_investor": true,
|
791
|
+
"born_on": null,
|
792
|
+
"born_on_trust_code": null,
|
793
|
+
"died_on": null,
|
794
|
+
"died_on_trust_code": null,
|
795
|
+
"created_at": 1197321165,
|
796
|
+
"updated_at": 1498749710
|
797
|
+
}
|
798
|
+
}
|
799
|
+
}
|
800
|
+
},
|
801
|
+
{
|
802
|
+
"type": "Job",
|
803
|
+
"uuid": "c1fbea0468126c2b6b4933e4331d8792",
|
804
|
+
"properties":
|
805
|
+
{
|
806
|
+
"title": "Team Member",
|
807
|
+
"started_on": null,
|
808
|
+
"started_on_trust_code": null,
|
809
|
+
"ended_on": null,
|
810
|
+
"ended_on_trust_code": 0,
|
811
|
+
"is_current": false,
|
812
|
+
"created_at": 1437905343,
|
813
|
+
"updated_at": 1437905343
|
814
|
+
},
|
815
|
+
"relationships":
|
816
|
+
{
|
817
|
+
"person":
|
818
|
+
{
|
819
|
+
"type": "Person",
|
820
|
+
"uuid": "b6280342a474dec9b18bde3cc7c7213f",
|
821
|
+
"properties":
|
822
|
+
{
|
823
|
+
"permalink": "john-ndege",
|
824
|
+
"api_path": "people/john-ndege",
|
825
|
+
"web_path": "person/john-ndege",
|
826
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/john-ndege",
|
827
|
+
"first_name": "John",
|
828
|
+
"last_name": "Ndege",
|
829
|
+
"gender": "Male",
|
830
|
+
"also_known_as": null,
|
831
|
+
"bio": null,
|
832
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1465571445/xw6bxdfhhjvzm0ajxq3p.png",
|
833
|
+
"role_investor": false,
|
834
|
+
"born_on": null,
|
835
|
+
"born_on_trust_code": null,
|
836
|
+
"died_on": null,
|
837
|
+
"died_on_trust_code": null,
|
838
|
+
"created_at": 1437905253,
|
839
|
+
"updated_at": 1479389484
|
840
|
+
}
|
841
|
+
}
|
842
|
+
}
|
843
|
+
},
|
844
|
+
{
|
845
|
+
"type": "Job",
|
846
|
+
"uuid": "ab92651727fbf3e6ff80103fa4910b88",
|
847
|
+
"properties":
|
848
|
+
{
|
849
|
+
"title": "lead designer",
|
850
|
+
"started_on": null,
|
851
|
+
"started_on_trust_code": null,
|
852
|
+
"ended_on": null,
|
853
|
+
"ended_on_trust_code": 0,
|
854
|
+
"is_current": false,
|
855
|
+
"created_at": 1419479994,
|
856
|
+
"updated_at": 1419479994
|
857
|
+
},
|
858
|
+
"relationships":
|
859
|
+
{
|
860
|
+
"person":
|
861
|
+
{
|
862
|
+
"type": "Person",
|
863
|
+
"uuid": "01ff7a45c4eb51fe01cace3a63dbf85e",
|
864
|
+
"properties":
|
865
|
+
{
|
866
|
+
"permalink": "nicholas-felton",
|
867
|
+
"api_path": "people/nicholas-felton",
|
868
|
+
"web_path": "person/nicholas-felton",
|
869
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/nicholas-felton",
|
870
|
+
"first_name": "Nicholas",
|
871
|
+
"last_name": "Felton",
|
872
|
+
"gender": "Male",
|
873
|
+
"also_known_as": null,
|
874
|
+
"bio": "Nicholas Felton is the co-founder of Daytum, a big data analytics solution that enables users to collect, categorize, and communicate their data. He is also an infographic design and the author of multiple Personal Annual Reports that weave numerous measurements into a tapestry of graphs, maps and statistics reflecting the year’s activities.\r\n\r\n\r\nFelton’s employment experience includes his time as a lead designer of Facebook’s timeline. He has also developed Reporter, an iPhone app that enables users to design to record and visualize subtle aspects of their lives. Felton has also been profiled by the Wall Street Journal, Wired, and Good Magazine, and recognized as one of the 50 most influential designers in America by Fast Company.",
|
875
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1410931952/kowzoi3yei7iky7aeugz.png",
|
876
|
+
"role_investor": false,
|
877
|
+
"born_on": null,
|
878
|
+
"born_on_trust_code": null,
|
879
|
+
"died_on": null,
|
880
|
+
"died_on_trust_code": null,
|
881
|
+
"created_at": 1303972275,
|
882
|
+
"updated_at": 1509298017
|
883
|
+
}
|
884
|
+
}
|
885
|
+
}
|
886
|
+
},
|
887
|
+
{
|
888
|
+
"type": "Job",
|
889
|
+
"uuid": "a5887b93e6f981c8e833c348a9c27ac8",
|
890
|
+
"properties":
|
891
|
+
{
|
892
|
+
"title": "Senior Platform Manager",
|
893
|
+
"started_on": "2006-01-01",
|
894
|
+
"started_on_trust_code": 5,
|
895
|
+
"ended_on": "2010-01-22",
|
896
|
+
"ended_on_trust_code": 7,
|
897
|
+
"is_current": false,
|
898
|
+
"created_at": 1206480811,
|
899
|
+
"updated_at": 1462162164
|
900
|
+
},
|
901
|
+
"relationships":
|
902
|
+
{
|
903
|
+
"person":
|
904
|
+
{
|
905
|
+
"type": "Person",
|
906
|
+
"uuid": "d91bdc885486e4171ff334a43e0e10b7",
|
907
|
+
"properties":
|
908
|
+
{
|
909
|
+
"permalink": "dave-morin",
|
910
|
+
"api_path": "people/dave-morin",
|
911
|
+
"web_path": "person/dave-morin",
|
912
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/dave-morin",
|
913
|
+
"first_name": "Dave",
|
914
|
+
"last_name": "Morin",
|
915
|
+
"gender": "Male",
|
916
|
+
"also_known_as": null,
|
917
|
+
"bio": "Dave is an entrepreneur & investor. \r\n\r\nHe is Founder & Partner at Slow Ventures. A leading Silicon Valley venture capital firm that champions long term thinking and innovation. Slow serves a community of over 200 of the most innovative entrepreneurs and companies in the world. Including Slack, Pinterest, Evernote, NextDoor, Postmates, Blue Bottle and more.\r\n\r\nHe was the Co-Founder and CEO of Path which was acquired by Kakao in 2015. He co-founded Path with the mission of being a source of happiness, meaning, and connection through simplicity, quality, and privacy in technology and design. Path continues to serves tens of millions of people each month to this day.\r\n\r\nDave has had a lifelong passion for technology, entrepreneurship, culture, design, photography, nature, skiing, and improving society. He served both Apple and Facebook for several years during periods of rapid innovation and growth. Today, he serves on the Board of Directors of Eventbrite, Dwell, and Hinge. And, on the Boards of three Non-Profit Organizations, the United States Ski and Snowboard Association, the San Francisco Museum of Modern Art (SFMOMA), and Montana ExplorationWorks. He holds a degree in Economics from the University of Colorado at Boulder. \r\n\r\nHe grew up under the big sky of Montana where he was ranked as one of the top downhill ski racers in America. Today, he lives and works in the beautiful San Francisco Bay Area with his wife Brit, son Ansel, and dog Pixel.",
|
918
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1463630905/umfseohsbcnescrvfxhe.png",
|
919
|
+
"role_investor": true,
|
920
|
+
"born_on": "1980-10-14",
|
921
|
+
"born_on_trust_code": 7,
|
922
|
+
"died_on": null,
|
923
|
+
"died_on_trust_code": null,
|
924
|
+
"created_at": 1206506011,
|
925
|
+
"updated_at": 1509212004
|
926
|
+
}
|
927
|
+
}
|
928
|
+
}
|
929
|
+
},
|
930
|
+
{
|
931
|
+
"type": "Job",
|
932
|
+
"uuid": "048c0cc6340fa042fc969971ed65e010",
|
933
|
+
"properties":
|
934
|
+
{
|
935
|
+
"title": "Growth Manager",
|
936
|
+
"started_on": "2011-08-01",
|
937
|
+
"started_on_trust_code": 6,
|
938
|
+
"ended_on": "2011-08-01",
|
939
|
+
"ended_on_trust_code": 6,
|
940
|
+
"is_current": false,
|
941
|
+
"created_at": 1379396292,
|
942
|
+
"updated_at": 1438043568
|
943
|
+
},
|
944
|
+
"relationships":
|
945
|
+
{
|
946
|
+
"person":
|
947
|
+
{
|
948
|
+
"type": "Person",
|
949
|
+
"uuid": "f71d325154854fb65c56a4555b59b8d6",
|
950
|
+
"properties":
|
951
|
+
{
|
952
|
+
"permalink": "ilya-gindin",
|
953
|
+
"api_path": "people/ilya-gindin",
|
954
|
+
"web_path": "person/ilya-gindin",
|
955
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/ilya-gindin",
|
956
|
+
"first_name": "Ilya",
|
957
|
+
"last_name": "Gindin",
|
958
|
+
"gender": "Male",
|
959
|
+
"also_known_as": null,
|
960
|
+
"bio": "Ilya Gindin is the CEO, co-founder at Edumoko.",
|
961
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397187875/c0583289a46982d41dcf7306ba3159de.jpg",
|
962
|
+
"role_investor": false,
|
963
|
+
"born_on": null,
|
964
|
+
"born_on_trust_code": null,
|
965
|
+
"died_on": null,
|
966
|
+
"died_on_trust_code": null,
|
967
|
+
"created_at": 1379421311,
|
968
|
+
"updated_at": 1425667579
|
969
|
+
}
|
970
|
+
}
|
971
|
+
}
|
972
|
+
},
|
973
|
+
{
|
974
|
+
"type": "Job",
|
975
|
+
"uuid": "471265c642ab76b83892a580eca36ea9",
|
976
|
+
"properties":
|
977
|
+
{
|
978
|
+
"title": "Product",
|
979
|
+
"started_on": "2005-01-01",
|
980
|
+
"started_on_trust_code": 5,
|
981
|
+
"ended_on": "2010-01-01",
|
982
|
+
"ended_on_trust_code": 5,
|
983
|
+
"is_current": false,
|
984
|
+
"created_at": 1210360570,
|
985
|
+
"updated_at": 1489100932
|
986
|
+
},
|
987
|
+
"relationships":
|
988
|
+
{
|
989
|
+
"person":
|
990
|
+
{
|
991
|
+
"type": "Person",
|
992
|
+
"uuid": "0ab68c8be334eccf298f9951976549d8",
|
993
|
+
"properties":
|
994
|
+
{
|
995
|
+
"permalink": "ruchi-sanghvi",
|
996
|
+
"api_path": "people/ruchi-sanghvi",
|
997
|
+
"web_path": "person/ruchi-sanghvi",
|
998
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/ruchi-sanghvi",
|
999
|
+
"first_name": "Ruchi",
|
1000
|
+
"last_name": "Sanghvi",
|
1001
|
+
"gender": "Female",
|
1002
|
+
"also_known_as": null,
|
1003
|
+
"bio": "Ruchi Sanghvi was the VP of Operations at Dropbox. Prior to joining Dropbox, Sanghvi served as the co-founder and CEO of Cove, a collaboration, coordination and communication product for organizations and communities. Sanghvi holds the distinction of being the first female engineer at Facebook and was instrumental in implementing the first versions of key features such as News Feed. She then led product management and strategy for Facebook Platform and Facebook Connect. She was also responsible for core product areas such as privacy and user engagement.\r\n\r\nSanghvi is also the recipient of the prestigious TechFellow award for engineer leadership and was interviewed by Huffington Post regarding the challenges of being a female engineer.She holds bachelor’s and master’s degrees in electrical computer engineering from Carnegie Mellon University.",
|
1004
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1415783052/r5fwmulhthlvucganehw.png",
|
1005
|
+
"role_investor": true,
|
1006
|
+
"born_on": null,
|
1007
|
+
"born_on_trust_code": null,
|
1008
|
+
"died_on": null,
|
1009
|
+
"died_on_trust_code": null,
|
1010
|
+
"created_at": 1210385770,
|
1011
|
+
"updated_at": 1503510532
|
1012
|
+
}
|
1013
|
+
}
|
1014
|
+
}
|
1015
|
+
},
|
1016
|
+
{
|
1017
|
+
"type": "Job",
|
1018
|
+
"uuid": "dcaa0d5ed9d22b4e7d0b0c23d57c44c6",
|
1019
|
+
"properties":
|
1020
|
+
{
|
1021
|
+
"title": "Engineer",
|
1022
|
+
"started_on": null,
|
1023
|
+
"started_on_trust_code": null,
|
1024
|
+
"ended_on": null,
|
1025
|
+
"ended_on_trust_code": 0,
|
1026
|
+
"is_current": false,
|
1027
|
+
"created_at": 1445620323,
|
1028
|
+
"updated_at": 1445620323
|
1029
|
+
},
|
1030
|
+
"relationships":
|
1031
|
+
{
|
1032
|
+
"person":
|
1033
|
+
{
|
1034
|
+
"type": "Person",
|
1035
|
+
"uuid": "a4bffca4012567d0c13f0385d1be67ce",
|
1036
|
+
"properties":
|
1037
|
+
{
|
1038
|
+
"permalink": "carlos-bueno",
|
1039
|
+
"api_path": "people/carlos-bueno",
|
1040
|
+
"web_path": "person/carlos-bueno",
|
1041
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/carlos-bueno",
|
1042
|
+
"first_name": "Carlos",
|
1043
|
+
"last_name": "Bueno",
|
1044
|
+
"gender": "Male",
|
1045
|
+
"also_known_as": null,
|
1046
|
+
"bio": "Carlos Bueno is a CEO at Archivd, Inc.",
|
1047
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1445620201/sk9lu4wnruzxo1rfnzpj.jpg",
|
1048
|
+
"role_investor": true,
|
1049
|
+
"born_on": null,
|
1050
|
+
"born_on_trust_code": null,
|
1051
|
+
"died_on": null,
|
1052
|
+
"died_on_trust_code": null,
|
1053
|
+
"created_at": 1245204142,
|
1054
|
+
"updated_at": 1468352316
|
1055
|
+
}
|
1056
|
+
}
|
1057
|
+
}
|
1058
|
+
},
|
1059
|
+
{
|
1060
|
+
"type": "Job",
|
1061
|
+
"uuid": "44b82a0410abc4d038c053cdfa67a168",
|
1062
|
+
"properties":
|
1063
|
+
{
|
1064
|
+
"title": "Team Member",
|
1065
|
+
"started_on": null,
|
1066
|
+
"started_on_trust_code": null,
|
1067
|
+
"ended_on": null,
|
1068
|
+
"ended_on_trust_code": 0,
|
1069
|
+
"is_current": false,
|
1070
|
+
"created_at": 1397311796,
|
1071
|
+
"updated_at": 1398004590
|
1072
|
+
},
|
1073
|
+
"relationships":
|
1074
|
+
{
|
1075
|
+
"person":
|
1076
|
+
{
|
1077
|
+
"type": "Person",
|
1078
|
+
"uuid": "457e67b6af745a527665001d761a14e5",
|
1079
|
+
"properties":
|
1080
|
+
{
|
1081
|
+
"permalink": "george-zeng",
|
1082
|
+
"api_path": "people/george-zeng",
|
1083
|
+
"web_path": "person/george-zeng",
|
1084
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/george-zeng",
|
1085
|
+
"first_name": "George",
|
1086
|
+
"last_name": "Zeng",
|
1087
|
+
"gender": "Male",
|
1088
|
+
"also_known_as": null,
|
1089
|
+
"bio": null,
|
1090
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397755181/45fdb4df7998ef024e8af0839cb028ba.jpg",
|
1091
|
+
"role_investor": false,
|
1092
|
+
"born_on": null,
|
1093
|
+
"born_on_trust_code": null,
|
1094
|
+
"died_on": null,
|
1095
|
+
"died_on_trust_code": null,
|
1096
|
+
"created_at": 1397336952,
|
1097
|
+
"updated_at": 1453105572
|
1098
|
+
}
|
1099
|
+
}
|
1100
|
+
}
|
1101
|
+
},
|
1102
|
+
{
|
1103
|
+
"type": "Job",
|
1104
|
+
"uuid": "99984f512b57e4e006d7443fcfb476b5",
|
1105
|
+
"properties":
|
1106
|
+
{
|
1107
|
+
"title": "Founding President",
|
1108
|
+
"started_on": "2004-01-01",
|
1109
|
+
"started_on_trust_code": 5,
|
1110
|
+
"ended_on": "2005-01-01",
|
1111
|
+
"ended_on_trust_code": 5,
|
1112
|
+
"is_current": false,
|
1113
|
+
"created_at": 1214804558,
|
1114
|
+
"updated_at": 1452740953
|
1115
|
+
},
|
1116
|
+
"relationships":
|
1117
|
+
{
|
1118
|
+
"person":
|
1119
|
+
{
|
1120
|
+
"type": "Person",
|
1121
|
+
"uuid": "1b0bb280c8708f146c957555cc5f3699",
|
1122
|
+
"properties":
|
1123
|
+
{
|
1124
|
+
"permalink": "sean-parker",
|
1125
|
+
"api_path": "people/sean-parker",
|
1126
|
+
"web_path": "person/sean-parker",
|
1127
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/sean-parker",
|
1128
|
+
"first_name": "Sean",
|
1129
|
+
"last_name": "Parker",
|
1130
|
+
"gender": "Male",
|
1131
|
+
"also_known_as": [],
|
1132
|
+
"bio": "Sean Parker is a serial entrepreneur and a managing partner at the Founders Fund. As one of the three founders of Napster in 1999, Sean helped architect and manage the peer-to-peer file sharing application to become one of the largest on the net. Parker subsequently helped found and manage Plaxo, a VC-backed contact management application company.\r\n\r\nMore recently, Parker worked as the Founding President of Facebook before moving on to join up with Peter Thiel at The Founders Fund, a seed-stage venture capital firm. Parker also recently led the move to launch Causes, a new developer application that organizes individuals' charitable giving on Facebook as well as contributing as an investor at Spotify. He is also a co-founder of Airtime, reuniting with Napster co-founder Shawn Fanning at this social video company backed by Founders Fund.",
|
1133
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1448909836/sqka6v7g05lpxbfbcjm3.jpg",
|
1134
|
+
"role_investor": true,
|
1135
|
+
"born_on": null,
|
1136
|
+
"born_on_trust_code": null,
|
1137
|
+
"died_on": null,
|
1138
|
+
"died_on_trust_code": null,
|
1139
|
+
"created_at": 1198357875,
|
1140
|
+
"updated_at": 1509312711
|
1141
|
+
}
|
1142
|
+
}
|
1143
|
+
}
|
1144
|
+
},
|
1145
|
+
{
|
1146
|
+
"type": "Job",
|
1147
|
+
"uuid": "6dd1243cbcf8c7972a0639fcabe4f4ca",
|
1148
|
+
"properties":
|
1149
|
+
{
|
1150
|
+
"title": "Technical Recruiter",
|
1151
|
+
"started_on": null,
|
1152
|
+
"started_on_trust_code": null,
|
1153
|
+
"ended_on": null,
|
1154
|
+
"ended_on_trust_code": 0,
|
1155
|
+
"is_current": false,
|
1156
|
+
"created_at": 1441009358,
|
1157
|
+
"updated_at": 1441009358
|
1158
|
+
},
|
1159
|
+
"relationships":
|
1160
|
+
{
|
1161
|
+
"person":
|
1162
|
+
{
|
1163
|
+
"type": "Person",
|
1164
|
+
"uuid": "001717aa52de790c69b83fca9c4b995f",
|
1165
|
+
"properties":
|
1166
|
+
{
|
1167
|
+
"permalink": "jackie-xu-2",
|
1168
|
+
"api_path": "people/jackie-xu-2",
|
1169
|
+
"web_path": "person/jackie-xu-2",
|
1170
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/jackie-xu-2",
|
1171
|
+
"first_name": "Jackie",
|
1172
|
+
"last_name": "Xu",
|
1173
|
+
"gender": "Female",
|
1174
|
+
"also_known_as": null,
|
1175
|
+
"bio": "Jackie Xu joined Kleiner Perkins Caufield & Byers in 2013. She supports strategic hiring efforts for the firm’s portfolio companies and advises them on technical recruiting, compensation and team-building. Her passion is to connect talented people to innovative startups.\r\n\r\nPrior to joining KPCB, Jackie managed a bi-coastal team of engineering recruiters and partnered with executive leadership on strategic acquisitions for Twitter. As part of the initial recruiting team at Twitter, she helped the company grow from a startup of less than 100 engineers to a publicly traded company with over 1,000 engineers. Before Twitter, Jackie spent time at Facebook and in executive search placing senior executives at hedge funds. She began her career at Goldman Sachs in investment banking in New York.\r\n\r\nJackie received her degree in finance from Carnegie Mellon University.",
|
1176
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1441009228/gwsmb56tca4p7oj4jb3x.png",
|
1177
|
+
"role_investor": false,
|
1178
|
+
"born_on": null,
|
1179
|
+
"born_on_trust_code": null,
|
1180
|
+
"died_on": null,
|
1181
|
+
"died_on_trust_code": null,
|
1182
|
+
"created_at": 1441009248,
|
1183
|
+
"updated_at": 1452935897
|
1184
|
+
}
|
1185
|
+
}
|
1186
|
+
}
|
1187
|
+
},
|
1188
|
+
{
|
1189
|
+
"type": "Job",
|
1190
|
+
"uuid": "e2345dd6c2298d9f545151db80410e82",
|
1191
|
+
"properties":
|
1192
|
+
{
|
1193
|
+
"title": "Team Member",
|
1194
|
+
"started_on": null,
|
1195
|
+
"started_on_trust_code": null,
|
1196
|
+
"ended_on": null,
|
1197
|
+
"ended_on_trust_code": 0,
|
1198
|
+
"is_current": false,
|
1199
|
+
"created_at": 1413174490,
|
1200
|
+
"updated_at": 1413174490
|
1201
|
+
},
|
1202
|
+
"relationships":
|
1203
|
+
{
|
1204
|
+
"person":
|
1205
|
+
{
|
1206
|
+
"type": "Person",
|
1207
|
+
"uuid": "9ed3def8161add538a85d6696abdf7c3",
|
1208
|
+
"properties":
|
1209
|
+
{
|
1210
|
+
"permalink": "trent-walker",
|
1211
|
+
"api_path": "people/trent-walker",
|
1212
|
+
"web_path": "person/trent-walker",
|
1213
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/trent-walker",
|
1214
|
+
"first_name": "Trent",
|
1215
|
+
"last_name": "Walker",
|
1216
|
+
"gender": "Male",
|
1217
|
+
"also_known_as": null,
|
1218
|
+
"bio": "Trent Walker brings over ten years of payments and finance industry expertise, working with many of the world’s leading corporations, including Google and Facebook.\r\n\r\nFor the past six years, Mr. Walker has held strategic leadership roles within the financial services department at Arvato, the $6 billion per year division of Bertlesmann.",
|
1219
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1413174163/u0gzcxepq6wfi6evckoa.png",
|
1220
|
+
"role_investor": false,
|
1221
|
+
"born_on": null,
|
1222
|
+
"born_on_trust_code": null,
|
1223
|
+
"died_on": null,
|
1224
|
+
"died_on_trust_code": null,
|
1225
|
+
"created_at": 1413174222,
|
1226
|
+
"updated_at": 1424956710
|
1227
|
+
}
|
1228
|
+
}
|
1229
|
+
}
|
1230
|
+
},
|
1231
|
+
{
|
1232
|
+
"type": "Job",
|
1233
|
+
"uuid": "f426a1daa22146e9b80f0b954ba786a7",
|
1234
|
+
"properties":
|
1235
|
+
{
|
1236
|
+
"title": "Platform & SMB Marketing Manager",
|
1237
|
+
"started_on": "2011-01-10",
|
1238
|
+
"started_on_trust_code": 7,
|
1239
|
+
"ended_on": "2014-03-31",
|
1240
|
+
"ended_on_trust_code": 7,
|
1241
|
+
"is_current": false,
|
1242
|
+
"created_at": 1407377457,
|
1243
|
+
"updated_at": 1407377505
|
1244
|
+
},
|
1245
|
+
"relationships":
|
1246
|
+
{
|
1247
|
+
"person":
|
1248
|
+
{
|
1249
|
+
"type": "Person",
|
1250
|
+
"uuid": "e3e49c1a095003b61c4f65b9a37947e9",
|
1251
|
+
"properties":
|
1252
|
+
{
|
1253
|
+
"permalink": "hugo-angelmar",
|
1254
|
+
"api_path": "people/hugo-angelmar",
|
1255
|
+
"web_path": "person/hugo-angelmar",
|
1256
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/hugo-angelmar",
|
1257
|
+
"first_name": "Hugo",
|
1258
|
+
"last_name": "Angelmar",
|
1259
|
+
"gender": "Male",
|
1260
|
+
"also_known_as": null,
|
1261
|
+
"bio": "Hugo Angelmar is the director of growth marketing at [FiveStars](https://www.crunchbase.com/organization/fivestars-loyalty), a rewards program for small businesses. He was previously employed as the head of demand generation a Bluenose Analytics.\n\nBefore starting his marketing career, Angelmar held several quantitative roles in the finance and logistics industries. At Facebook and iSyndica, he worked as both a marketing and program manager respectively.\n\nAngelmar holds an MBA from INSEAD as well as a bachelor’s and master’s degree from Northwestern University.",
|
1262
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1407377618/mmcdfsdjlnbvqzlkddgm.jpg",
|
1263
|
+
"role_investor": false,
|
1264
|
+
"born_on": null,
|
1265
|
+
"born_on_trust_code": null,
|
1266
|
+
"died_on": null,
|
1267
|
+
"died_on_trust_code": null,
|
1268
|
+
"created_at": 1252942043,
|
1269
|
+
"updated_at": 1466905889
|
1270
|
+
}
|
1271
|
+
}
|
1272
|
+
}
|
1273
|
+
},
|
1274
|
+
{
|
1275
|
+
"type": "Job",
|
1276
|
+
"uuid": "5abaa61211017c0c937450cba29a5da1",
|
1277
|
+
"properties":
|
1278
|
+
{
|
1279
|
+
"title": "Director of Marketing and Brand Strategy",
|
1280
|
+
"started_on": null,
|
1281
|
+
"started_on_trust_code": null,
|
1282
|
+
"ended_on": null,
|
1283
|
+
"ended_on_trust_code": 0,
|
1284
|
+
"is_current": false,
|
1285
|
+
"created_at": 1454589387,
|
1286
|
+
"updated_at": 1491826181
|
1287
|
+
},
|
1288
|
+
"relationships":
|
1289
|
+
{
|
1290
|
+
"person":
|
1291
|
+
{
|
1292
|
+
"type": "Person",
|
1293
|
+
"uuid": "c0aa242a683058b9eea6e442c6f1b643",
|
1294
|
+
"properties":
|
1295
|
+
{
|
1296
|
+
"permalink": "kevin-mcspadden-2",
|
1297
|
+
"api_path": "people/kevin-mcspadden-2",
|
1298
|
+
"web_path": "person/kevin-mcspadden-2",
|
1299
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/kevin-mcspadden-2",
|
1300
|
+
"first_name": "Kevin",
|
1301
|
+
"last_name": "McSpadden",
|
1302
|
+
"gender": "Male",
|
1303
|
+
"also_known_as": null,
|
1304
|
+
"bio": "Kevin McSpadden is the director of marketing and brand strategy at [Facebook](https://www.crunchbase.com/organization/facebook#/entity), an online social networking service. Before joining Facebook, he served as the chief executive officer of ThinkBrandNew from 2010 to 2014.\n\nMcSpadden holds a bachelor’s degree in advertising and marketing from [Southern Methodist University](https://www.crunchbase.com/organization/southern-methodist-university). He lives in San Francisco, California, United States.",
|
1305
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1454589338/ywwpopom1pw1asbqfuan.png",
|
1306
|
+
"role_investor": false,
|
1307
|
+
"born_on": null,
|
1308
|
+
"born_on_trust_code": null,
|
1309
|
+
"died_on": null,
|
1310
|
+
"died_on_trust_code": null,
|
1311
|
+
"created_at": 1454589347,
|
1312
|
+
"updated_at": 1491826210
|
1313
|
+
}
|
1314
|
+
}
|
1315
|
+
}
|
1316
|
+
},
|
1317
|
+
{
|
1318
|
+
"type": "Job",
|
1319
|
+
"uuid": "ab7d1d2cac451938bba888311ab609df",
|
1320
|
+
"properties":
|
1321
|
+
{
|
1322
|
+
"title": "VP Global Sales",
|
1323
|
+
"started_on": null,
|
1324
|
+
"started_on_trust_code": null,
|
1325
|
+
"ended_on": "2010-12-01",
|
1326
|
+
"ended_on_trust_code": 6,
|
1327
|
+
"is_current": false,
|
1328
|
+
"created_at": 1264456191,
|
1329
|
+
"updated_at": 1438040949
|
1330
|
+
},
|
1331
|
+
"relationships":
|
1332
|
+
{
|
1333
|
+
"person":
|
1334
|
+
{
|
1335
|
+
"type": "Person",
|
1336
|
+
"uuid": "59d1fdf18541cdbcb44ba4f2bdf8345a",
|
1337
|
+
"properties":
|
1338
|
+
{
|
1339
|
+
"permalink": "mike-murphy",
|
1340
|
+
"api_path": "people/mike-murphy",
|
1341
|
+
"web_path": "person/mike-murphy",
|
1342
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/mike-murphy",
|
1343
|
+
"first_name": "Mike",
|
1344
|
+
"last_name": "Murphy",
|
1345
|
+
"gender": "Male",
|
1346
|
+
"also_known_as": null,
|
1347
|
+
"bio": "Mike Murphy is the Vice President of Global Sales at [Facebook](/organization/facebook) where he leads media strategy, advertising sales and account management. Mike joined Facebook from [Yahoo!](/organization/yahoo), where he was Vice President of Media Sales for the Western region. \r\n\r\nPrior to Yahoo!, Mike founded the company TAG that provided outsourced sales, marketing and business development services to established technology and early-stage start-up companies. \r\n\r\nMike began his media career at Ziff-Davis Publishing and CMP Media where he was Publisher, Associate Publisher and Managing Director. Mike holds a bachelor's degree from the University of North Texas.",
|
1348
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397180694/5d0709d4f73aa8676a179e7c339a96f0.jpg",
|
1349
|
+
"role_investor": true,
|
1350
|
+
"born_on": "1986-01-01",
|
1351
|
+
"born_on_trust_code": 7,
|
1352
|
+
"died_on": null,
|
1353
|
+
"died_on_trust_code": null,
|
1354
|
+
"created_at": 1264484990,
|
1355
|
+
"updated_at": 1507367134
|
1356
|
+
}
|
1357
|
+
}
|
1358
|
+
}
|
1359
|
+
},
|
1360
|
+
{
|
1361
|
+
"type": "Job",
|
1362
|
+
"uuid": "9a757280373b662f31aa8420eddd7fbc",
|
1363
|
+
"properties":
|
1364
|
+
{
|
1365
|
+
"title": "Data Analyst",
|
1366
|
+
"started_on": "2010-09-01",
|
1367
|
+
"started_on_trust_code": 6,
|
1368
|
+
"ended_on": "2011-04-01",
|
1369
|
+
"ended_on_trust_code": 6,
|
1370
|
+
"is_current": false,
|
1371
|
+
"created_at": 1382093715,
|
1372
|
+
"updated_at": 1438041586
|
1373
|
+
},
|
1374
|
+
"relationships":
|
1375
|
+
{
|
1376
|
+
"person":
|
1377
|
+
{
|
1378
|
+
"type": "Person",
|
1379
|
+
"uuid": "bd56a36607c3e4aee60b16d921417d22",
|
1380
|
+
"properties":
|
1381
|
+
{
|
1382
|
+
"permalink": "derek-steer",
|
1383
|
+
"api_path": "people/derek-steer",
|
1384
|
+
"web_path": "person/derek-steer",
|
1385
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/derek-steer",
|
1386
|
+
"first_name": "Derek",
|
1387
|
+
"last_name": "Steer",
|
1388
|
+
"gender": "Male",
|
1389
|
+
"also_known_as": null,
|
1390
|
+
"bio": "Derek Steer is the CEO of Mode, a new startup enabling data scientists to share and discover work. With Mode, analysts are more productive and connected, both publicly within the data community and privately within organizations. Before co-founding Mode in 2013, Derek was an early member of Yammer’s Analytics team. There, he built tools to identify strong leads and customers at risk of attrition within a pool of freemium users. Derek has also worked in antitrust economics and on the Monetization Analytics team at Facebook.",
|
1391
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397182378/e2731358ad7e6d47656161bbf05c388e.jpg",
|
1392
|
+
"role_investor": false,
|
1393
|
+
"born_on": null,
|
1394
|
+
"born_on_trust_code": null,
|
1395
|
+
"died_on": null,
|
1396
|
+
"died_on_trust_code": null,
|
1397
|
+
"created_at": 1382074182,
|
1398
|
+
"updated_at": 1464460547
|
1399
|
+
}
|
1400
|
+
}
|
1401
|
+
}
|
1402
|
+
},
|
1403
|
+
{
|
1404
|
+
"type": "Job",
|
1405
|
+
"uuid": "1bbef4ef555b8e891e3055db2b39e3e2",
|
1406
|
+
"properties":
|
1407
|
+
{
|
1408
|
+
"title": "Head of Apps Growth Marketing- Messenger & Instagram",
|
1409
|
+
"started_on": "2015-05-01",
|
1410
|
+
"started_on_trust_code": 6,
|
1411
|
+
"ended_on": "2016-04-01",
|
1412
|
+
"ended_on_trust_code": 6,
|
1413
|
+
"is_current": false,
|
1414
|
+
"created_at": 1501015528,
|
1415
|
+
"updated_at": 1501015528
|
1416
|
+
},
|
1417
|
+
"relationships":
|
1418
|
+
{
|
1419
|
+
"person":
|
1420
|
+
{
|
1421
|
+
"type": "Person",
|
1422
|
+
"uuid": "51d4933432554f1cde326da6dcaa3492",
|
1423
|
+
"properties":
|
1424
|
+
{
|
1425
|
+
"permalink": "jai-singh-2",
|
1426
|
+
"api_path": "people/jai-singh-2",
|
1427
|
+
"web_path": "person/jai-singh-2",
|
1428
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/jai-singh-2",
|
1429
|
+
"first_name": "Jai",
|
1430
|
+
"last_name": "Singh",
|
1431
|
+
"gender": null,
|
1432
|
+
"also_known_as": null,
|
1433
|
+
"bio": null,
|
1434
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1501043973/uw9maaqlq5w373v8xrze.jpg",
|
1435
|
+
"role_investor": false,
|
1436
|
+
"born_on": null,
|
1437
|
+
"born_on_trust_code": null,
|
1438
|
+
"died_on": null,
|
1439
|
+
"died_on_trust_code": null,
|
1440
|
+
"created_at": 1405622119,
|
1441
|
+
"updated_at": 1501043979
|
1442
|
+
}
|
1443
|
+
}
|
1444
|
+
}
|
1445
|
+
},
|
1446
|
+
{
|
1447
|
+
"type": "Job",
|
1448
|
+
"uuid": "a5f744311428e7f269f7234928c5f5b6",
|
1449
|
+
"properties":
|
1450
|
+
{
|
1451
|
+
"title": "Global Marketing Solutions",
|
1452
|
+
"started_on": "2010-01-01",
|
1453
|
+
"started_on_trust_code": 5,
|
1454
|
+
"ended_on": "2014-01-01",
|
1455
|
+
"ended_on_trust_code": 5,
|
1456
|
+
"is_current": false,
|
1457
|
+
"created_at": 1406189093,
|
1458
|
+
"updated_at": 1438755973
|
1459
|
+
},
|
1460
|
+
"relationships":
|
1461
|
+
{
|
1462
|
+
"person":
|
1463
|
+
{
|
1464
|
+
"type": "Person",
|
1465
|
+
"uuid": "bf1bcea64769747f74a9715805311d41",
|
1466
|
+
"properties":
|
1467
|
+
{
|
1468
|
+
"permalink": "rich-liu",
|
1469
|
+
"api_path": "people/rich-liu",
|
1470
|
+
"web_path": "person/rich-liu",
|
1471
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/rich-liu",
|
1472
|
+
"first_name": "Rich",
|
1473
|
+
"last_name": "Liu",
|
1474
|
+
"gender": "Male",
|
1475
|
+
"also_known_as": null,
|
1476
|
+
"bio": "Rich Liu is the vice president of corporate sales at [Mulesoft](https://www.crunchbase.com/organization/mulesoft), a technology company that enables users to connect applications and data across devices. He is also an advisor at Avegant.\n\nLiu was also employed in companies such as Lawrence Berkeley National Laboratory, Piazza, and Facebook.\n\nLiu holds a bachelor’s degree in biomedical engineering from Yale University.",
|
1477
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1405488700/bcaagx7gyuqkcmzy2sae.png",
|
1478
|
+
"role_investor": true,
|
1479
|
+
"born_on": null,
|
1480
|
+
"born_on_trust_code": null,
|
1481
|
+
"died_on": null,
|
1482
|
+
"died_on_trust_code": null,
|
1483
|
+
"created_at": 1405488661,
|
1484
|
+
"updated_at": 1503556395
|
1485
|
+
}
|
1486
|
+
}
|
1487
|
+
}
|
1488
|
+
},
|
1489
|
+
{
|
1490
|
+
"type": "Job",
|
1491
|
+
"uuid": "de1cdb226d3865358e9c10b83c7c83df",
|
1492
|
+
"properties":
|
1493
|
+
{
|
1494
|
+
"title": "Director - Product Engineering",
|
1495
|
+
"started_on": "2007-01-01",
|
1496
|
+
"started_on_trust_code": 5,
|
1497
|
+
"ended_on": "2010-01-01",
|
1498
|
+
"ended_on_trust_code": 5,
|
1499
|
+
"is_current": false,
|
1500
|
+
"created_at": 1253028898,
|
1501
|
+
"updated_at": 1434175214
|
1502
|
+
},
|
1503
|
+
"relationships":
|
1504
|
+
{
|
1505
|
+
"person":
|
1506
|
+
{
|
1507
|
+
"type": "Person",
|
1508
|
+
"uuid": "4ea2a40f8ac995c3084ab533edc4d00e",
|
1509
|
+
"properties":
|
1510
|
+
{
|
1511
|
+
"permalink": "aditya-agarwal",
|
1512
|
+
"api_path": "people/aditya-agarwal",
|
1513
|
+
"web_path": "person/aditya-agarwal",
|
1514
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/aditya-agarwal",
|
1515
|
+
"first_name": "Aditya",
|
1516
|
+
"last_name": "Agarwal",
|
1517
|
+
"gender": "Male",
|
1518
|
+
"also_known_as": null,
|
1519
|
+
"bio": "Aditya Agarwal is VP of Engineering at Dropbox. He oversees the different engineering teams including new product development, infrastructure, platform and operations. \r\n\r\nAditya came to Dropbox via the acquisition of Cove, a company he co-founded that was focused on improving group collaboration and communication. \r\n\r\nPrior to Cove, Aditya Agarwal was the Director of Product Engineering at Facebook where he oversaw the development of core products such as News Feed, Search, Photos, Profile and Applications. Aditya was one of the first engineers at Facebook and played an important role in helping to design and build core parts of the Facebook engineering infrastructure. He also wrote the initial Facebook search engine and co-authored Thrift, a popular open-source RPC framework. Before that, Aditya worked at Oracle on the Server Manageability team, which was responsible for creating a self-healing database. \r\n\r\nAditya holds Master’s and Bachelor’s degrees in Computer Science from Carnegie Mellon University.",
|
1520
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397185170/71a9012f2b1aa9fd30c7b6e3a12fb602.jpg",
|
1521
|
+
"role_investor": true,
|
1522
|
+
"born_on": "1978-09-24",
|
1523
|
+
"born_on_trust_code": 7,
|
1524
|
+
"died_on": null,
|
1525
|
+
"died_on_trust_code": null,
|
1526
|
+
"created_at": 1253054098,
|
1527
|
+
"updated_at": 1500662324
|
1528
|
+
}
|
1529
|
+
}
|
1530
|
+
}
|
1531
|
+
},
|
1532
|
+
{
|
1533
|
+
"type": "Job",
|
1534
|
+
"uuid": "f0df839bc15a85cf60d545d35a9ef9c8",
|
1535
|
+
"properties":
|
1536
|
+
{
|
1537
|
+
"title": "Platform Program Manager",
|
1538
|
+
"started_on": null,
|
1539
|
+
"started_on_trust_code": null,
|
1540
|
+
"ended_on": null,
|
1541
|
+
"ended_on_trust_code": 0,
|
1542
|
+
"is_current": false,
|
1543
|
+
"created_at": 1256538373,
|
1544
|
+
"updated_at": 1398003281
|
1545
|
+
},
|
1546
|
+
"relationships":
|
1547
|
+
{
|
1548
|
+
"person":
|
1549
|
+
{
|
1550
|
+
"type": "Person",
|
1551
|
+
"uuid": "0026bf408f4287e2b371978055165959",
|
1552
|
+
"properties":
|
1553
|
+
{
|
1554
|
+
"permalink": "josh-elman",
|
1555
|
+
"api_path": "people/josh-elman",
|
1556
|
+
"web_path": "person/josh-elman",
|
1557
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/josh-elman",
|
1558
|
+
"first_name": "Josh",
|
1559
|
+
"last_name": "Elman",
|
1560
|
+
"gender": "Male",
|
1561
|
+
"also_known_as": null,
|
1562
|
+
"bio": "Josh is an investment partner at Greylock Partners, He invests in entrepreneurs building social networks and platforms, mobile apps, new media, and connected devices.\r\n\r\nHe joined the team in 2011 and invests in entrepreneurs building new consumer products and services. Josh specializes in designing, building, and scaling consumer products, having been part of multiple companies that have grown to more than 100 million users.\r\n\r\nBefore joining Greylock, Josh spent 15 years in product and engineering roles at leading companies in social, commerce, and media. Josh was the product lead for growth and relevance at Twitter, growing Twitter’s active user base by nearly 10x. Prior to Twitter, Josh worked on the platform at Facebook and led the launch of Facebook Connect. Josh was an early employee at LinkedIn and helped establish early models for user growth and launched v1 of LinkedIn Jobs. Josh also held roles leading product management for Zazzle, and product and engineering for RealJukebox and RealPlayer at RealNetworks.\r\n\r\nJosh currently serves on the boards of Medium, Meerkat, Operator, Discord, Musical.ly and Jelly. Josh also works closely with our investments in Nextdoor and Whosay. Josh led Greylock’s investment in SmartThings, which was acquired by Samsung in 2014.\r\n\r\nJosh holds a BS in Symbolic Systems with a focus on Human Computer Interaction from Stanford University. Josh is also quite Handsome :)",
|
1563
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1470942085/adxm8omeq5hesmouzgt6.png",
|
1564
|
+
"role_investor": true,
|
1565
|
+
"born_on": null,
|
1566
|
+
"born_on_trust_code": null,
|
1567
|
+
"died_on": null,
|
1568
|
+
"died_on_trust_code": null,
|
1569
|
+
"created_at": 1256563573,
|
1570
|
+
"updated_at": 1509269560
|
1571
|
+
}
|
1572
|
+
}
|
1573
|
+
}
|
1574
|
+
},
|
1575
|
+
{
|
1576
|
+
"type": "Job",
|
1577
|
+
"uuid": "fd49dd37ff8f1ef0e9608e09bd2fba44",
|
1578
|
+
"properties":
|
1579
|
+
{
|
1580
|
+
"title": "Software Engineer",
|
1581
|
+
"started_on": "2015-05-01",
|
1582
|
+
"started_on_trust_code": 6,
|
1583
|
+
"ended_on": null,
|
1584
|
+
"ended_on_trust_code": 0,
|
1585
|
+
"is_current": false,
|
1586
|
+
"created_at": 1473158885,
|
1587
|
+
"updated_at": 1502974875
|
1588
|
+
},
|
1589
|
+
"relationships":
|
1590
|
+
{
|
1591
|
+
"person":
|
1592
|
+
{
|
1593
|
+
"type": "Person",
|
1594
|
+
"uuid": "700514d785625f2d671a5634053420be",
|
1595
|
+
"properties":
|
1596
|
+
{
|
1597
|
+
"permalink": "ihar-mahaniok",
|
1598
|
+
"api_path": "people/ihar-mahaniok",
|
1599
|
+
"web_path": "person/ihar-mahaniok",
|
1600
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/ihar-mahaniok",
|
1601
|
+
"first_name": "Ihar",
|
1602
|
+
"last_name": "Mahaniok",
|
1603
|
+
"gender": "Male",
|
1604
|
+
"also_known_as": null,
|
1605
|
+
"bio": null,
|
1606
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1399878285/alxhf0udwsjlhvnkffov.jpg",
|
1607
|
+
"role_investor": true,
|
1608
|
+
"born_on": null,
|
1609
|
+
"born_on_trust_code": null,
|
1610
|
+
"died_on": null,
|
1611
|
+
"died_on_trust_code": null,
|
1612
|
+
"created_at": 1399878495,
|
1613
|
+
"updated_at": 1508651238
|
1614
|
+
}
|
1615
|
+
}
|
1616
|
+
}
|
1617
|
+
},
|
1618
|
+
{
|
1619
|
+
"type": "Job",
|
1620
|
+
"uuid": "ccb49213f3c6275d170bf2c355cd5aea",
|
1621
|
+
"properties":
|
1622
|
+
{
|
1623
|
+
"title": "Product Manager & Developer Relations",
|
1624
|
+
"started_on": "2010-05-24",
|
1625
|
+
"started_on_trust_code": 7,
|
1626
|
+
"ended_on": "2014-10-17",
|
1627
|
+
"ended_on_trust_code": 7,
|
1628
|
+
"is_current": false,
|
1629
|
+
"created_at": 1325156110,
|
1630
|
+
"updated_at": 1437070316
|
1631
|
+
},
|
1632
|
+
"relationships":
|
1633
|
+
{
|
1634
|
+
"person":
|
1635
|
+
{
|
1636
|
+
"type": "Person",
|
1637
|
+
"uuid": "9aaa8f193cbbfdc7c4c8bcb510f36647",
|
1638
|
+
"properties":
|
1639
|
+
{
|
1640
|
+
"permalink": "charles-dowd",
|
1641
|
+
"api_path": "people/charles-dowd",
|
1642
|
+
"web_path": "person/charles-dowd",
|
1643
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/charles-dowd",
|
1644
|
+
"first_name": "Charles",
|
1645
|
+
"last_name": "Dowd",
|
1646
|
+
"gender": "Male",
|
1647
|
+
"also_known_as": null,
|
1648
|
+
"bio": "Charles began his engineering career like many others at the time in IBM. Following a stint at Microsoft, Charles set up a social loyalty company that was acquired by Student Universe (Parent: FLT (ASX)) & morphed into SoHalo. After this Charles spent almost 5 years as a PM at Facebook based between Dublin and Menlo Park. Since 2015 Charles has been pulling his various skills together to build a team to tackle the problem of person-to-person payments with his latest venture, Plynk.",
|
1649
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1430652567/zqt9chdw8er8jtcqatao.png",
|
1650
|
+
"role_investor": false,
|
1651
|
+
"born_on": null,
|
1652
|
+
"born_on_trust_code": null,
|
1653
|
+
"died_on": null,
|
1654
|
+
"died_on_trust_code": null,
|
1655
|
+
"created_at": 1309544379,
|
1656
|
+
"updated_at": 1507637790
|
1657
|
+
}
|
1658
|
+
}
|
1659
|
+
}
|
1660
|
+
},
|
1661
|
+
{
|
1662
|
+
"type": "Job",
|
1663
|
+
"uuid": "274453df8849cd3e9e4f496d173f08cd",
|
1664
|
+
"properties":
|
1665
|
+
{
|
1666
|
+
"title": "CFO",
|
1667
|
+
"started_on": "2006-01-01",
|
1668
|
+
"started_on_trust_code": 5,
|
1669
|
+
"ended_on": "2007-01-01",
|
1670
|
+
"ended_on_trust_code": 5,
|
1671
|
+
"is_current": false,
|
1672
|
+
"created_at": 1225428036,
|
1673
|
+
"updated_at": 1434172867
|
1674
|
+
},
|
1675
|
+
"relationships":
|
1676
|
+
{
|
1677
|
+
"person":
|
1678
|
+
{
|
1679
|
+
"type": "Person",
|
1680
|
+
"uuid": "70bf0c6dc50623929cdb2095b72e0269",
|
1681
|
+
"properties":
|
1682
|
+
{
|
1683
|
+
"permalink": "michael-sheridan",
|
1684
|
+
"api_path": "people/michael-sheridan",
|
1685
|
+
"web_path": "person/michael-sheridan",
|
1686
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/michael-sheridan",
|
1687
|
+
"first_name": "Michael",
|
1688
|
+
"last_name": "Sheridan",
|
1689
|
+
"gender": "Male",
|
1690
|
+
"also_known_as": null,
|
1691
|
+
"bio": "As chief financial officer at FireEye, Mike brings over 25 years of financial, operational and business management experience in several private and public Internet and technology companies. Most recently, Mike was chief financial officer at Mimosa Systems until it was acquired by Iron Mountain in 2010. Prior to Mimosa, Mike held chief financial officer positions at Facebook, IGN Entertainment (acquired by NewsCorp), and SonicWALL. Prior to that, Mike was a finance executive at Genesys Telecommunications (acquired by Alcatel) and NetApp. \r\n\r\nAdditionally, Mike served on the board of directors and audit committee of 3Par Inc. until its acquisition by HP in 2010. He was the CFO at [Project Playlist](http://www.crunchbase.com/organization/project-playlist), which he joined in November of 2008. He served as director of the board of [3PAR](http://www.3par.com) from Mid 2007 until joining Playlist He continues to serve as a board member. Prior to joining 3Par, Michael served as the CFO of [Facebook](http://www.crunchbase.com/organization/facebook) from September 2006 to July 2007.\r\n\r\n Michael also served as the CFO of [IGN Entertainment, Inc.](http://www.crunchbase.com/organization/ignentertainment), a leading Internet media and services provider focused on the video game and entertainment enthusiast markets. As an executive officer of [SonicWALL, Inc.](http://www.crunchbase.com/organization/sonicwall), an Internet security appliance provider, Michael served in various roles including CFO, Chief Operating Officer, and Senior Vice President of Strategy. \r\n\r\nHe holds a BS in Commerce from Santa Clara University.",
|
1692
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397187111/0d9b271282ab0d2daac4d3d1e83ebe63.jpg",
|
1693
|
+
"role_investor": false,
|
1694
|
+
"born_on": null,
|
1695
|
+
"born_on_trust_code": null,
|
1696
|
+
"died_on": null,
|
1697
|
+
"died_on_trust_code": null,
|
1698
|
+
"created_at": 1225453236,
|
1699
|
+
"updated_at": 1499141783
|
1700
|
+
}
|
1701
|
+
}
|
1702
|
+
}
|
1703
|
+
},
|
1704
|
+
{
|
1705
|
+
"type": "Job",
|
1706
|
+
"uuid": "3d595c93d1fa673e076eb15aa32a77b0",
|
1707
|
+
"properties":
|
1708
|
+
{
|
1709
|
+
"title": "Risk and Payments",
|
1710
|
+
"started_on": "2011-07-01",
|
1711
|
+
"started_on_trust_code": 6,
|
1712
|
+
"ended_on": "2013-03-01",
|
1713
|
+
"ended_on_trust_code": 6,
|
1714
|
+
"is_current": false,
|
1715
|
+
"created_at": 1415834891,
|
1716
|
+
"updated_at": 1438043873
|
1717
|
+
},
|
1718
|
+
"relationships":
|
1719
|
+
{
|
1720
|
+
"person":
|
1721
|
+
{
|
1722
|
+
"type": "Person",
|
1723
|
+
"uuid": "8319fdb7c858aa13b3b0a48f1d6a5e84",
|
1724
|
+
"properties":
|
1725
|
+
{
|
1726
|
+
"permalink": "jake-heimark",
|
1727
|
+
"api_path": "people/jake-heimark",
|
1728
|
+
"web_path": "person/jake-heimark",
|
1729
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/jake-heimark",
|
1730
|
+
"first_name": "Jake",
|
1731
|
+
"last_name": "Heimark",
|
1732
|
+
"gender": "Male",
|
1733
|
+
"also_known_as": null,
|
1734
|
+
"bio": "Currently: CEO @ Plus.\r\n\r\nFormerly: Facebook and Gumroad.",
|
1735
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1415834724/fsaw5vewicyzwz1qfkkd.png",
|
1736
|
+
"role_investor": false,
|
1737
|
+
"born_on": "1987-09-30",
|
1738
|
+
"born_on_trust_code": 7,
|
1739
|
+
"died_on": null,
|
1740
|
+
"died_on_trust_code": null,
|
1741
|
+
"created_at": 1415834762,
|
1742
|
+
"updated_at": 1508649976
|
1743
|
+
}
|
1744
|
+
}
|
1745
|
+
}
|
1746
|
+
},
|
1747
|
+
{
|
1748
|
+
"type": "Job",
|
1749
|
+
"uuid": "d0bc7abe34cfdd83c92fd73351e1b1a1",
|
1750
|
+
"properties":
|
1751
|
+
{
|
1752
|
+
"title": "Software Engineer",
|
1753
|
+
"started_on": "2005-01-01",
|
1754
|
+
"started_on_trust_code": 5,
|
1755
|
+
"ended_on": null,
|
1756
|
+
"ended_on_trust_code": 0,
|
1757
|
+
"is_current": false,
|
1758
|
+
"created_at": 1392182820,
|
1759
|
+
"updated_at": 1434158026
|
1760
|
+
},
|
1761
|
+
"relationships":
|
1762
|
+
{
|
1763
|
+
"person":
|
1764
|
+
{
|
1765
|
+
"type": "Person",
|
1766
|
+
"uuid": "f6dc0a5023f1bd675cf0f66b44b19e4c",
|
1767
|
+
"properties":
|
1768
|
+
{
|
1769
|
+
"permalink": "chris-cox",
|
1770
|
+
"api_path": "people/chris-cox",
|
1771
|
+
"web_path": "person/chris-cox",
|
1772
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/chris-cox",
|
1773
|
+
"first_name": "Chris",
|
1774
|
+
"last_name": "Cox",
|
1775
|
+
"gender": "Male",
|
1776
|
+
"also_known_as": null,
|
1777
|
+
"bio": "Cox is the Vice President of Product at Facebook, where he is responsible for organizing Facebook's product strategy and overseeing the product management and design functions. \r\n\r\nChris joined Facebook in 2005 as a Software Engineer and was instrumental in implementing first versions of key Facebook features, including News Feed and Inbox. \r\n\r\nHe then became Director of Human Resources where he drove the development of Facebook's mission, values, and people strategy. \r\n\r\nChristopher holds a bachelor's degree in symbolic systems with a concentration in artificial intelligence from Stanford University.",
|
1778
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397183457/0a9605644fa87b46b996561f85599e55.jpg",
|
1779
|
+
"role_investor": false,
|
1780
|
+
"born_on": null,
|
1781
|
+
"born_on_trust_code": null,
|
1782
|
+
"died_on": null,
|
1783
|
+
"died_on_trust_code": null,
|
1784
|
+
"created_at": 1245298545,
|
1785
|
+
"updated_at": 1481314653
|
1786
|
+
}
|
1787
|
+
}
|
1788
|
+
}
|
1789
|
+
},
|
1790
|
+
{
|
1791
|
+
"type": "Job",
|
1792
|
+
"uuid": "409212933bd871df2493dad84cb6b296",
|
1793
|
+
"properties":
|
1794
|
+
{
|
1795
|
+
"title": "Account Manager and Monetization Ad Operations Lead",
|
1796
|
+
"started_on": "2008-01-01",
|
1797
|
+
"started_on_trust_code": 7,
|
1798
|
+
"ended_on": "2010-01-31",
|
1799
|
+
"ended_on_trust_code": 7,
|
1800
|
+
"is_current": false,
|
1801
|
+
"created_at": 1464399715,
|
1802
|
+
"updated_at": 1464399715
|
1803
|
+
},
|
1804
|
+
"relationships":
|
1805
|
+
{
|
1806
|
+
"person":
|
1807
|
+
{
|
1808
|
+
"type": "Person",
|
1809
|
+
"uuid": "b36c150b968b884d4109d6a7ed0e3ae7",
|
1810
|
+
"properties":
|
1811
|
+
{
|
1812
|
+
"permalink": "yvonne-chen-2",
|
1813
|
+
"api_path": "people/yvonne-chen-2",
|
1814
|
+
"web_path": "person/yvonne-chen-2",
|
1815
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/yvonne-chen-2",
|
1816
|
+
"first_name": "Yvonne",
|
1817
|
+
"last_name": "Chen",
|
1818
|
+
"gender": "Female",
|
1819
|
+
"also_known_as": null,
|
1820
|
+
"bio": "Yvonne is an experienced and passionate marketing leader. She has done exceptional since her early days at Google to owning the first ad campaigns at Facebook. She has a strong experience building product marketing teams, marketing strategy, and customer marketing. She has led cross-functional efforts spanning product, engineering, sales, operations, PR, and legal. Strong operations and direct client experience working with SMB advertisers and key Fortune 500 brands. She currently leads Marketing at Udemy for Business.",
|
1821
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1464399138/amawb6tqfq9upt95xsou.png",
|
1822
|
+
"role_investor": false,
|
1823
|
+
"born_on": null,
|
1824
|
+
"born_on_trust_code": null,
|
1825
|
+
"died_on": null,
|
1826
|
+
"died_on_trust_code": null,
|
1827
|
+
"created_at": 1464399179,
|
1828
|
+
"updated_at": 1464400693
|
1829
|
+
}
|
1830
|
+
}
|
1831
|
+
}
|
1832
|
+
},
|
1833
|
+
{
|
1834
|
+
"type": "Job",
|
1835
|
+
"uuid": "05c6a86c8b285f7dab698d772aedb7ee",
|
1836
|
+
"properties":
|
1837
|
+
{
|
1838
|
+
"title": "Account Specialist - Associate",
|
1839
|
+
"started_on": "2010-06-01",
|
1840
|
+
"started_on_trust_code": 6,
|
1841
|
+
"ended_on": "2013-04-01",
|
1842
|
+
"ended_on_trust_code": 6,
|
1843
|
+
"is_current": false,
|
1844
|
+
"created_at": 1375339562,
|
1845
|
+
"updated_at": 1438043314
|
1846
|
+
},
|
1847
|
+
"relationships":
|
1848
|
+
{
|
1849
|
+
"person":
|
1850
|
+
{
|
1851
|
+
"type": "Person",
|
1852
|
+
"uuid": "d9b7c9749c0f12b465f04709413519a7",
|
1853
|
+
"properties":
|
1854
|
+
{
|
1855
|
+
"permalink": "lorry-destainville",
|
1856
|
+
"api_path": "people/lorry-destainville",
|
1857
|
+
"web_path": "person/lorry-destainville",
|
1858
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/lorry-destainville",
|
1859
|
+
"first_name": "Lorry",
|
1860
|
+
"last_name": "Destainville",
|
1861
|
+
"gender": "Male",
|
1862
|
+
"also_known_as": null,
|
1863
|
+
"bio": "Lead global partnerships with media agencies and the AdTech ecosystem here at Quora. \r\n\r\nWe are hiring! Out team has grown exponentially over the past few weeks. Please DM for more information on the growth of our Advertising platform and opportunities at Quora.",
|
1864
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397181332/034dbe0538e4b8c6ed0e9ed1acd5d4f9.jpg",
|
1865
|
+
"role_investor": false,
|
1866
|
+
"born_on": "1987-02-28",
|
1867
|
+
"born_on_trust_code": 7,
|
1868
|
+
"died_on": null,
|
1869
|
+
"died_on_trust_code": null,
|
1870
|
+
"created_at": 1369668362,
|
1871
|
+
"updated_at": 1509298917
|
1872
|
+
}
|
1873
|
+
}
|
1874
|
+
}
|
1875
|
+
},
|
1876
|
+
{
|
1877
|
+
"type": "Job",
|
1878
|
+
"uuid": "f110f906053794eb0173bc4e497e7fa0",
|
1879
|
+
"properties":
|
1880
|
+
{
|
1881
|
+
"title": "Vice President, Global Public Policy",
|
1882
|
+
"started_on": null,
|
1883
|
+
"started_on_trust_code": null,
|
1884
|
+
"ended_on": null,
|
1885
|
+
"ended_on_trust_code": 0,
|
1886
|
+
"is_current": false,
|
1887
|
+
"created_at": 1438250359,
|
1888
|
+
"updated_at": 1454569693
|
1889
|
+
},
|
1890
|
+
"relationships":
|
1891
|
+
{
|
1892
|
+
"person":
|
1893
|
+
{
|
1894
|
+
"type": "Person",
|
1895
|
+
"uuid": "918b235c0781119973cea5143559c632",
|
1896
|
+
"properties":
|
1897
|
+
{
|
1898
|
+
"permalink": "marne-levine",
|
1899
|
+
"api_path": "people/marne-levine",
|
1900
|
+
"web_path": "person/marne-levine",
|
1901
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/marne-levine",
|
1902
|
+
"first_name": "Marne",
|
1903
|
+
"last_name": "Levine",
|
1904
|
+
"gender": "Female",
|
1905
|
+
"also_known_as": null,
|
1906
|
+
"bio": "Marne Levine brings extensive experience in the policy, communication and technology fields, and has served on our board of directors since May 2013. In January 2015, Levine became Chief Operating Officer of Instagram, a community of more than 400 million who capture and share the world’s moments on the service. \r\n\r\nPrior to that, she served as Vice President, Global Public Policy for Facebook, a social media company, for 4 years. \r\n\r\nPreviously, Levine served as Chief of Staff at the White House National Economic Council and Special Assistant to the President for Economic Policy, from January 2009 to June 2010. \r\n\r\nPrior to those roles, Levine served as director of product management for Revolution Money and as Chief of Staff to Lawrence Summers when he was President of Harvard University. She began her career at the United States Department of Treasury, where she served in a variety of positions, including as the Deputy Assistant Secretary for banking and finance in the Office of Legislative Affairs and Public Liaison.\r\n\r\nLevine holds a B.A. in political science and communications from Miami University and an M.B.A. from Harvard Business School.",
|
1907
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1438249942/h1wjxnxwgnbikvqi4fy1.jpg",
|
1908
|
+
"role_investor": false,
|
1909
|
+
"born_on": null,
|
1910
|
+
"born_on_trust_code": null,
|
1911
|
+
"died_on": null,
|
1912
|
+
"died_on_trust_code": null,
|
1913
|
+
"created_at": 1438249968,
|
1914
|
+
"updated_at": 1508017285
|
1915
|
+
}
|
1916
|
+
}
|
1917
|
+
}
|
1918
|
+
},
|
1919
|
+
{
|
1920
|
+
"type": "Job",
|
1921
|
+
"uuid": "4601af2b66c36a25fca59bc49fd3743b",
|
1922
|
+
"properties":
|
1923
|
+
{
|
1924
|
+
"title": "Software Engineering Manager",
|
1925
|
+
"started_on": "2006-01-01",
|
1926
|
+
"started_on_trust_code": 5,
|
1927
|
+
"ended_on": "2009-01-01",
|
1928
|
+
"ended_on_trust_code": 5,
|
1929
|
+
"is_current": false,
|
1930
|
+
"created_at": 1371977501,
|
1931
|
+
"updated_at": 1434168713
|
1932
|
+
},
|
1933
|
+
"relationships":
|
1934
|
+
{
|
1935
|
+
"person":
|
1936
|
+
{
|
1937
|
+
"type": "Person",
|
1938
|
+
"uuid": "c1eff7aa29340f7c1f92ac5061dbeb73",
|
1939
|
+
"properties":
|
1940
|
+
{
|
1941
|
+
"permalink": "charlie-cheever",
|
1942
|
+
"api_path": "people/charlie-cheever",
|
1943
|
+
"web_path": "person/charlie-cheever",
|
1944
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/charlie-cheever",
|
1945
|
+
"first_name": "Charlie",
|
1946
|
+
"last_name": "Cheever",
|
1947
|
+
"gender": "Male",
|
1948
|
+
"also_known_as": null,
|
1949
|
+
"bio": "Charlie Cheever is the co-founder of [Quora](/organization/quora), formerly Alma Networks. Before founding Quora Charlie worked as an engineer and manager at [Facebook](/organization/facebook), where he oversaw the creation of Facebook Connect and the Facebook Platform. \r\n\r\nPrior to joining Facebook, Charlie served as a Software Development Engineer at [Amazon](/organization/amazon). \r\n\r\nCharlie graduated from Harvard College with an A.B. in Computer Science.",
|
1950
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1496137781/c7obzudr8o1wiiszudzt.png",
|
1951
|
+
"role_investor": true,
|
1952
|
+
"born_on": "1981-08-02",
|
1953
|
+
"born_on_trust_code": 7,
|
1954
|
+
"died_on": null,
|
1955
|
+
"died_on_trust_code": null,
|
1956
|
+
"created_at": 1244252593,
|
1957
|
+
"updated_at": 1499367549
|
1958
|
+
}
|
1959
|
+
}
|
1960
|
+
}
|
1961
|
+
},
|
1962
|
+
{
|
1963
|
+
"type": "Job",
|
1964
|
+
"uuid": "f9e4d813d3355f7d8924f8cf47633630",
|
1965
|
+
"properties":
|
1966
|
+
{
|
1967
|
+
"title": "Data Science Manager",
|
1968
|
+
"started_on": "2010-01-01",
|
1969
|
+
"started_on_trust_code": 5,
|
1970
|
+
"ended_on": "2015-04-01",
|
1971
|
+
"ended_on_trust_code": 7,
|
1972
|
+
"is_current": false,
|
1973
|
+
"created_at": 1433542792,
|
1974
|
+
"updated_at": 1434150641
|
1975
|
+
},
|
1976
|
+
"relationships":
|
1977
|
+
{
|
1978
|
+
"person":
|
1979
|
+
{
|
1980
|
+
"type": "Person",
|
1981
|
+
"uuid": "983e4c00ec627bc21ba96216e031c2d6",
|
1982
|
+
"properties":
|
1983
|
+
{
|
1984
|
+
"permalink": "yihua-liao",
|
1985
|
+
"api_path": "people/yihua-liao",
|
1986
|
+
"web_path": "person/yihua-liao",
|
1987
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/yihua-liao",
|
1988
|
+
"first_name": "Yihua",
|
1989
|
+
"last_name": "Liao",
|
1990
|
+
"gender": "Male",
|
1991
|
+
"also_known_as": null,
|
1992
|
+
"bio": "Yihua Liao is a co-founder and the CEO of [Brilent](https://www.crunchbase.com/organization/brilent), a data science tech company that develops software to help recruiters automatically identify the right candidates for their organization.\n\nLiao began his career as a scientist at ID Analytics Inc. in 2005. In 2008, he joined China Tomorrow Education Foundation as the chief information officer. Liao also served as a decision scientist at [Microsoft](https://www.crunchbase.com/organization/microsoft) and also as a data scientist manager at [Facebook](https://www.crunchbase.com/organization/facebook) for more than 4 years.\n\nLiao holds bachelor’s and master’s degrees in physics from Wuhan University and Chinese Academy of Sciences. He earned his PhD in computer science from University of California, Davis.",
|
1993
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1438191046/w6hzmvtnyozuqgn2becx.jpg",
|
1994
|
+
"role_investor": false,
|
1995
|
+
"born_on": null,
|
1996
|
+
"born_on_trust_code": null,
|
1997
|
+
"died_on": null,
|
1998
|
+
"died_on_trust_code": null,
|
1999
|
+
"created_at": 1433542696,
|
2000
|
+
"updated_at": 1471553815
|
2001
|
+
}
|
2002
|
+
}
|
2003
|
+
}
|
2004
|
+
},
|
2005
|
+
{
|
2006
|
+
"type": "Job",
|
2007
|
+
"uuid": "8eda75224c3d0cdcec4db133302559ca",
|
2008
|
+
"properties":
|
2009
|
+
{
|
2010
|
+
"title": "Product Designer",
|
2011
|
+
"started_on": "2011-01-01",
|
2012
|
+
"started_on_trust_code": 5,
|
2013
|
+
"ended_on": null,
|
2014
|
+
"ended_on_trust_code": 0,
|
2015
|
+
"is_current": false,
|
2016
|
+
"created_at": 1385257366,
|
2017
|
+
"updated_at": 1434152476
|
2018
|
+
},
|
2019
|
+
"relationships":
|
2020
|
+
{
|
2021
|
+
"person":
|
2022
|
+
{
|
2023
|
+
"type": "Person",
|
2024
|
+
"uuid": "849e257fd55bdf07e9912d7cd005fb69",
|
2025
|
+
"properties":
|
2026
|
+
{
|
2027
|
+
"permalink": "rob-morris",
|
2028
|
+
"api_path": "people/rob-morris",
|
2029
|
+
"web_path": "person/rob-morris",
|
2030
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/rob-morris",
|
2031
|
+
"first_name": "Rob",
|
2032
|
+
"last_name": "Morris",
|
2033
|
+
"gender": "Male",
|
2034
|
+
"also_known_as": null,
|
2035
|
+
"bio": "Robyn's work has been featured in online design galleries, magazines and books worldwide. In 2002 Robyn founded Digitalmash, working for clients including Coca-Cola, Knowledge Network, Broadway.com, and hip hop artist JAY-Z.\r\n\r\nIn 2009, Robyn became a product designer/partner at HiiDef Inc., a privately held web incubator started by a team from Vimeo, Digg, Meetup, Zend, IAC, and Pentagram. We make Flavors.me and Goodsie.\r\n\r\nIn 2011, Robyn joined the product design team at Facebook.\r\n\r\nRobyn holds a Masters in Internet Communication and currently resides in Japan Australia California, with his wonderful partner Krista.",
|
2036
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397184097/03ae595132190731ebcf61aacac591fb.png",
|
2037
|
+
"role_investor": false,
|
2038
|
+
"born_on": null,
|
2039
|
+
"born_on_trust_code": null,
|
2040
|
+
"died_on": null,
|
2041
|
+
"died_on_trust_code": null,
|
2042
|
+
"created_at": 1247113152,
|
2043
|
+
"updated_at": 1477445555
|
2044
|
+
}
|
2045
|
+
}
|
2046
|
+
}
|
2047
|
+
},
|
2048
|
+
{
|
2049
|
+
"type": "Job",
|
2050
|
+
"uuid": "4e46e111689107c1222e6c8ad50b84da",
|
2051
|
+
"properties":
|
2052
|
+
{
|
2053
|
+
"title": "Product Marketing Manager",
|
2054
|
+
"started_on": "2013-04-01",
|
2055
|
+
"started_on_trust_code": 6,
|
2056
|
+
"ended_on": "2016-01-01",
|
2057
|
+
"ended_on_trust_code": 6,
|
2058
|
+
"is_current": false,
|
2059
|
+
"created_at": 1435037302,
|
2060
|
+
"updated_at": 1485234052
|
2061
|
+
},
|
2062
|
+
"relationships":
|
2063
|
+
{
|
2064
|
+
"person":
|
2065
|
+
{
|
2066
|
+
"type": "Person",
|
2067
|
+
"uuid": "94cc517344959d571e0f49811b893405",
|
2068
|
+
"properties":
|
2069
|
+
{
|
2070
|
+
"permalink": "kevin-prior",
|
2071
|
+
"api_path": "people/kevin-prior",
|
2072
|
+
"web_path": "person/kevin-prior",
|
2073
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/kevin-prior",
|
2074
|
+
"first_name": "Kevin",
|
2075
|
+
"last_name": "Prior",
|
2076
|
+
"gender": "Male",
|
2077
|
+
"also_known_as": null,
|
2078
|
+
"bio": "Kevin Prior is the director of marketing at [Button](https://www.crunchbase.com/organization/button#/entity). Previously, he served as a product marketing manager at [Facebook](https://www.crunchbase.com/organization/facebook#/entity).\r\n\r\nPrior founded FbStart, a program from Facebook which helps mobile startups succeed, and was also employed as a marketing manager at [Microsoft](https://www.crunchbase.com/organization/microsoft#/entity).\r\n\r\nPrior obtained a bachelor’s degree in arts from [Harvard University](https://www.crunchbase.com/organization/harvard-university). He is based in New York.",
|
2079
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1435037160/mv2qc77raszhfb92fr0w.png",
|
2080
|
+
"role_investor": false,
|
2081
|
+
"born_on": null,
|
2082
|
+
"born_on_trust_code": null,
|
2083
|
+
"died_on": null,
|
2084
|
+
"died_on_trust_code": null,
|
2085
|
+
"created_at": 1435037173,
|
2086
|
+
"updated_at": 1485234204
|
2087
|
+
}
|
2088
|
+
}
|
2089
|
+
}
|
2090
|
+
},
|
2091
|
+
{
|
2092
|
+
"type": "Job",
|
2093
|
+
"uuid": "3473f5eaaf89b04ac5fd03d189717d50",
|
2094
|
+
"properties":
|
2095
|
+
{
|
2096
|
+
"title": "Facebook Mexico Office Launch - Media Solutions Team",
|
2097
|
+
"started_on": "2013-06-01",
|
2098
|
+
"started_on_trust_code": 7,
|
2099
|
+
"ended_on": "2013-08-31",
|
2100
|
+
"ended_on_trust_code": 7,
|
2101
|
+
"is_current": false,
|
2102
|
+
"created_at": 1450467622,
|
2103
|
+
"updated_at": 1450467622
|
2104
|
+
},
|
2105
|
+
"relationships":
|
2106
|
+
{
|
2107
|
+
"person":
|
2108
|
+
{
|
2109
|
+
"type": "Person",
|
2110
|
+
"uuid": "234855d85ad67abdc02b9ddfb218108c",
|
2111
|
+
"properties":
|
2112
|
+
{
|
2113
|
+
"permalink": "auri-korva",
|
2114
|
+
"api_path": "people/auri-korva",
|
2115
|
+
"web_path": "person/auri-korva",
|
2116
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/auri-korva",
|
2117
|
+
"first_name": "Auri",
|
2118
|
+
"last_name": "Korva",
|
2119
|
+
"gender": "Female",
|
2120
|
+
"also_known_as": null,
|
2121
|
+
"bio": "+5yrs Online Advertising Expert with +3yrs experience at Facebook, advising key accounts and media agencies in Europe and LATAM. Built and developed Facebook media teams. Led media agency education strategies. Developed process optimization for ad operations. Founded an E-commerce business.",
|
2122
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1450464983/iv2dl1xhnnj2bsb71m8a.jpg",
|
2123
|
+
"role_investor": false,
|
2124
|
+
"born_on": "1986-04-24",
|
2125
|
+
"born_on_trust_code": 7,
|
2126
|
+
"died_on": null,
|
2127
|
+
"died_on_trust_code": null,
|
2128
|
+
"created_at": 1450465134,
|
2129
|
+
"updated_at": 1453278215
|
2130
|
+
}
|
2131
|
+
}
|
2132
|
+
}
|
2133
|
+
},
|
2134
|
+
{
|
2135
|
+
"type": "Job",
|
2136
|
+
"uuid": "0a14649479b093a8de9f10dc12fa9b1e",
|
2137
|
+
"properties":
|
2138
|
+
{
|
2139
|
+
"title": "Product Manager, Location & Events",
|
2140
|
+
"started_on": "2012-01-01",
|
2141
|
+
"started_on_trust_code": 5,
|
2142
|
+
"ended_on": null,
|
2143
|
+
"ended_on_trust_code": 0,
|
2144
|
+
"is_current": false,
|
2145
|
+
"created_at": 1368961698,
|
2146
|
+
"updated_at": 1491812357
|
2147
|
+
},
|
2148
|
+
"relationships":
|
2149
|
+
{
|
2150
|
+
"person":
|
2151
|
+
{
|
2152
|
+
"type": "Person",
|
2153
|
+
"uuid": "2a820e285c409918a7f80bae24b613e5",
|
2154
|
+
"properties":
|
2155
|
+
{
|
2156
|
+
"permalink": "josh-williams",
|
2157
|
+
"api_path": "people/josh-williams",
|
2158
|
+
"web_path": "person/josh-williams",
|
2159
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/josh-williams",
|
2160
|
+
"first_name": "Josh",
|
2161
|
+
"last_name": "Williams",
|
2162
|
+
"gender": "Male",
|
2163
|
+
"also_known_as": null,
|
2164
|
+
"bio": "A visual designer by trade, Josh Williams is co-founder and CEO of [Gowalla](/organization/gowalla), a consumer-media and social service inspiring people globally to express themselves and communicate about the everyday places and the extraordinary settings they enjoy.\r\n\r\nPrior to Gowalla, he was Principal at Firewheel Design, a boutique user-interface consultancy, where his clients included Microsoft, Samsung, Hewlett Packard, Thompson Reuters and Causes. Josh lives in Austin, Texas with his wife and two daughters.",
|
2165
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397186509/1e7a6fa0642c1cad15f0274bcde06d73.jpg",
|
2166
|
+
"role_investor": true,
|
2167
|
+
"born_on": null,
|
2168
|
+
"born_on_trust_code": null,
|
2169
|
+
"died_on": null,
|
2170
|
+
"died_on_trust_code": null,
|
2171
|
+
"created_at": 1221538037,
|
2172
|
+
"updated_at": 1453282009
|
2173
|
+
}
|
2174
|
+
}
|
2175
|
+
}
|
2176
|
+
},
|
2177
|
+
{
|
2178
|
+
"type": "Job",
|
2179
|
+
"uuid": "6a14fab9eab83afa8359e8fe37734177",
|
2180
|
+
"properties":
|
2181
|
+
{
|
2182
|
+
"title": "Software Engineer",
|
2183
|
+
"started_on": "2007-01-01",
|
2184
|
+
"started_on_trust_code": 5,
|
2185
|
+
"ended_on": "2011-01-01",
|
2186
|
+
"ended_on_trust_code": 5,
|
2187
|
+
"is_current": false,
|
2188
|
+
"created_at": 1484644694,
|
2189
|
+
"updated_at": 1484644694
|
2190
|
+
},
|
2191
|
+
"relationships":
|
2192
|
+
{
|
2193
|
+
"person":
|
2194
|
+
{
|
2195
|
+
"type": "Person",
|
2196
|
+
"uuid": "14c192a8bc9eb5851c51dd99df4a5f14",
|
2197
|
+
"properties":
|
2198
|
+
{
|
2199
|
+
"permalink": "avinash-lakshman",
|
2200
|
+
"api_path": "people/avinash-lakshman",
|
2201
|
+
"web_path": "person/avinash-lakshman",
|
2202
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/avinash-lakshman",
|
2203
|
+
"first_name": "Avinash",
|
2204
|
+
"last_name": "Lakshman",
|
2205
|
+
"gender": "Male",
|
2206
|
+
"also_known_as": null,
|
2207
|
+
"bio": "Avinash Lakshman is the CEO and Founder of Hedvig. He founded Hedvig in 2012 after coinventing Dynamo while at Amazon (2004-2007) and Cassandra at Facebook (2007-2011) .",
|
2208
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1467832821/opqyzhzusif0zn9gfvaj.jpg",
|
2209
|
+
"role_investor": false,
|
2210
|
+
"born_on": null,
|
2211
|
+
"born_on_trust_code": null,
|
2212
|
+
"died_on": null,
|
2213
|
+
"died_on_trust_code": null,
|
2214
|
+
"created_at": 1427292895,
|
2215
|
+
"updated_at": 1492260026
|
2216
|
+
}
|
2217
|
+
}
|
2218
|
+
}
|
2219
|
+
},
|
2220
|
+
{
|
2221
|
+
"type": "Job",
|
2222
|
+
"uuid": "4ed7a19bb7c9bfca855b88d6c50b5019",
|
2223
|
+
"properties":
|
2224
|
+
{
|
2225
|
+
"title": "Senior Software Engineer",
|
2226
|
+
"started_on": null,
|
2227
|
+
"started_on_trust_code": null,
|
2228
|
+
"ended_on": null,
|
2229
|
+
"ended_on_trust_code": 0,
|
2230
|
+
"is_current": false,
|
2231
|
+
"created_at": 1490801423,
|
2232
|
+
"updated_at": 1490801423
|
2233
|
+
},
|
2234
|
+
"relationships":
|
2235
|
+
{
|
2236
|
+
"person":
|
2237
|
+
{
|
2238
|
+
"type": "Person",
|
2239
|
+
"uuid": "febbb5cbdac8d9a4a47441b36abf8549",
|
2240
|
+
"properties":
|
2241
|
+
{
|
2242
|
+
"permalink": "brandon-black",
|
2243
|
+
"api_path": "people/brandon-black",
|
2244
|
+
"web_path": "person/brandon-black",
|
2245
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/brandon-black",
|
2246
|
+
"first_name": "Brandon",
|
2247
|
+
"last_name": "Black",
|
2248
|
+
"gender": "Male",
|
2249
|
+
"also_known_as": null,
|
2250
|
+
"bio": null,
|
2251
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1415687376/a6ocxrqhjl14ktqppl9u.jpg",
|
2252
|
+
"role_investor": false,
|
2253
|
+
"born_on": null,
|
2254
|
+
"born_on_trust_code": null,
|
2255
|
+
"died_on": null,
|
2256
|
+
"died_on_trust_code": null,
|
2257
|
+
"created_at": 1415687398,
|
2258
|
+
"updated_at": 1490801661
|
2259
|
+
}
|
2260
|
+
}
|
2261
|
+
}
|
2262
|
+
},
|
2263
|
+
{
|
2264
|
+
"type": "Job",
|
2265
|
+
"uuid": "99c9e44a661a4c032ada4bd6ff743581",
|
2266
|
+
"properties":
|
2267
|
+
{
|
2268
|
+
"title": "Independent Contractor",
|
2269
|
+
"started_on": "2009-03-01",
|
2270
|
+
"started_on_trust_code": 6,
|
2271
|
+
"ended_on": "2009-06-01",
|
2272
|
+
"ended_on_trust_code": 6,
|
2273
|
+
"is_current": false,
|
2274
|
+
"created_at": 1277941049,
|
2275
|
+
"updated_at": 1438040940
|
2276
|
+
},
|
2277
|
+
"relationships":
|
2278
|
+
{
|
2279
|
+
"person":
|
2280
|
+
{
|
2281
|
+
"type": "Person",
|
2282
|
+
"uuid": "ad7fb91f1632a5721699e18dd71db6e1",
|
2283
|
+
"properties":
|
2284
|
+
{
|
2285
|
+
"permalink": "todd-mckinnon",
|
2286
|
+
"api_path": "people/todd-mckinnon",
|
2287
|
+
"web_path": "person/todd-mckinnon",
|
2288
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/todd-mckinnon",
|
2289
|
+
"first_name": "Todd",
|
2290
|
+
"last_name": "McKinnon",
|
2291
|
+
"gender": "Male",
|
2292
|
+
"also_known_as": null,
|
2293
|
+
"bio": "Todd McKinnon is the Chief Executive Officer and Co-Founder of Okta. He is responsible for creating, communicating and implementing the overall vision and strategy for the company. Under Todd's leadership, Okta has grown into the leading identity solution with hundreds of enterprise customers.\r\n\r\nPrior to Okta, Todd served as the Head of Engineering at Salesforce.com, where he helped grow the team from 15 people to more than 250, and the service from two million daily transactions to more than 150 million with industry-leading performance and reliability. Todd also has nearly a decade of experience working in various engineering and leadership roles at PeopleSoft.\r\n\r\nTodd earned his bachelor's degree in business from Brigham Young University and his master's in computer science from Cal Poly San Luis Obispo. He is as a regular contributor to industry publications, including Forbes, Fast Company, Fortune and the Wall Street Journal Accelerators. Todd also serves on the Board of Directors for Family House, a not-for-profit organization that provides temporary housing to families of seriously ill children receiving treatment at the University of California-San Francisco Children's Hospital. Todd also enjoys exercising and spending time with his family.",
|
2294
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1485259242/vh66mk8vxlpbdpfkj9cs.png",
|
2295
|
+
"role_investor": false,
|
2296
|
+
"born_on": null,
|
2297
|
+
"born_on_trust_code": null,
|
2298
|
+
"died_on": null,
|
2299
|
+
"died_on_trust_code": null,
|
2300
|
+
"created_at": 1276563211,
|
2301
|
+
"updated_at": 1502604188
|
2302
|
+
}
|
2303
|
+
}
|
2304
|
+
}
|
2305
|
+
},
|
2306
|
+
{
|
2307
|
+
"type": "Job",
|
2308
|
+
"uuid": "8a13a0741f704d25bff628d18647f75f",
|
2309
|
+
"properties":
|
2310
|
+
{
|
2311
|
+
"title": "Head - Marketing Science - Australia & New Zealand",
|
2312
|
+
"started_on": "2014-01-01",
|
2313
|
+
"started_on_trust_code": 6,
|
2314
|
+
"ended_on": "2014-12-01",
|
2315
|
+
"ended_on_trust_code": 6,
|
2316
|
+
"is_current": false,
|
2317
|
+
"created_at": 1442006969,
|
2318
|
+
"updated_at": 1442006969
|
2319
|
+
},
|
2320
|
+
"relationships":
|
2321
|
+
{
|
2322
|
+
"person":
|
2323
|
+
{
|
2324
|
+
"type": "Person",
|
2325
|
+
"uuid": "e1df8dc556a5f2131dee45e0a0ac4e6f",
|
2326
|
+
"properties":
|
2327
|
+
{
|
2328
|
+
"permalink": "helen-crossley",
|
2329
|
+
"api_path": "people/helen-crossley",
|
2330
|
+
"web_path": "person/helen-crossley",
|
2331
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/helen-crossley",
|
2332
|
+
"first_name": "Helen",
|
2333
|
+
"last_name": "Crossley",
|
2334
|
+
"gender": "Female",
|
2335
|
+
"also_known_as": null,
|
2336
|
+
"bio": "Helen Crossley is the Global Head of Audience Research at Facebook since January 2015. Prior to her current role Helen was Head of Measurement and Insights for Australia and New Zealand at Facebook. Helen led Facebook’s work in Australia to measure, model and monitor Facebook’s ad platform and shared those insights with businesses so they can improve what they do on Facebook. Helen's team worked to unlock Facebook’s strategic advantage in data and analytics by building innovative measurement and insights capabilities including marketing effectiveness solutions and consumer and advertising insights. \r\n\r\nPrior to joining Facebook, Helen was at P&G Asia. At P&G Helen took on roles including Head of Developing Markets Integrated Business Optimisation for P&G Asia, Shopper Insights Lead for Australia and Consumer and Market Knowledge Business Optimisation Manager for Skincare. \r\n\r\nHelen earned her Bachelor of Commerce degree in Economics and Marketing from University of Sydney.",
|
2337
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1442005873/mirpewdhbhyxgk3sbr79.png",
|
2338
|
+
"role_investor": false,
|
2339
|
+
"born_on": null,
|
2340
|
+
"born_on_trust_code": null,
|
2341
|
+
"died_on": null,
|
2342
|
+
"died_on_trust_code": null,
|
2343
|
+
"created_at": 1442005878,
|
2344
|
+
"updated_at": 1489278014
|
2345
|
+
}
|
2346
|
+
}
|
2347
|
+
}
|
2348
|
+
},
|
2349
|
+
{
|
2350
|
+
"type": "Job",
|
2351
|
+
"uuid": "99e3b6a0ce675cea8bd26317c3cdb033",
|
2352
|
+
"properties":
|
2353
|
+
{
|
2354
|
+
"title": "Director of Product",
|
2355
|
+
"started_on": "2012-01-01",
|
2356
|
+
"started_on_trust_code": 7,
|
2357
|
+
"ended_on": "2016-05-01",
|
2358
|
+
"ended_on_trust_code": 7,
|
2359
|
+
"is_current": false,
|
2360
|
+
"created_at": 1503816486,
|
2361
|
+
"updated_at": 1503816486
|
2362
|
+
},
|
2363
|
+
"relationships":
|
2364
|
+
{
|
2365
|
+
"person":
|
2366
|
+
{
|
2367
|
+
"type": "Person",
|
2368
|
+
"uuid": "358ddec5a2a1471d2340885ff0bcf743",
|
2369
|
+
"properties":
|
2370
|
+
{
|
2371
|
+
"permalink": "mike-hudack",
|
2372
|
+
"api_path": "people/mike-hudack",
|
2373
|
+
"web_path": "person/mike-hudack",
|
2374
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/mike-hudack",
|
2375
|
+
"first_name": "Mike",
|
2376
|
+
"last_name": "Hudack",
|
2377
|
+
"gender": "Male",
|
2378
|
+
"also_known_as": null,
|
2379
|
+
"bio": "Mike is the CTO of Deliveroo. Prior to Deliveroo he worked at Facebook in both consumer and ads. He started Blip, an online video company, in 2005 with four friends. He lives in London.",
|
2380
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397181406/7ec6d9bb393fcd0b2b44d040bd9bc5c6.jpg",
|
2381
|
+
"role_investor": false,
|
2382
|
+
"born_on": null,
|
2383
|
+
"born_on_trust_code": null,
|
2384
|
+
"died_on": null,
|
2385
|
+
"died_on_trust_code": null,
|
2386
|
+
"created_at": 1191276950,
|
2387
|
+
"updated_at": 1508651436
|
2388
|
+
}
|
2389
|
+
}
|
2390
|
+
}
|
2391
|
+
},
|
2392
|
+
{
|
2393
|
+
"type": "Job",
|
2394
|
+
"uuid": "90090ff044d12ce608f29625a73bd2ef",
|
2395
|
+
"properties":
|
2396
|
+
{
|
2397
|
+
"title": "Monetization Analytics",
|
2398
|
+
"started_on": "2011-08-01",
|
2399
|
+
"started_on_trust_code": 6,
|
2400
|
+
"ended_on": null,
|
2401
|
+
"ended_on_trust_code": 0,
|
2402
|
+
"is_current": false,
|
2403
|
+
"created_at": 1315491907,
|
2404
|
+
"updated_at": 1491812718
|
2405
|
+
},
|
2406
|
+
"relationships":
|
2407
|
+
{
|
2408
|
+
"person":
|
2409
|
+
{
|
2410
|
+
"type": "Person",
|
2411
|
+
"uuid": "988d5a15729f2a2519a6e198a6db2afe",
|
2412
|
+
"properties":
|
2413
|
+
{
|
2414
|
+
"permalink": "jimmy-zhu",
|
2415
|
+
"api_path": "people/jimmy-zhu",
|
2416
|
+
"web_path": "person/jimmy-zhu",
|
2417
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/jimmy-zhu",
|
2418
|
+
"first_name": "Jimmy",
|
2419
|
+
"last_name": "Zhu",
|
2420
|
+
"gender": "Male",
|
2421
|
+
"also_known_as": null,
|
2422
|
+
"bio": null,
|
2423
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1460733066/tpsrlpda4n1cc5256vq7.jpg",
|
2424
|
+
"role_investor": false,
|
2425
|
+
"born_on": null,
|
2426
|
+
"born_on_trust_code": null,
|
2427
|
+
"died_on": null,
|
2428
|
+
"died_on_trust_code": null,
|
2429
|
+
"created_at": 1315517107,
|
2430
|
+
"updated_at": 1460733069
|
2431
|
+
}
|
2432
|
+
}
|
2433
|
+
}
|
2434
|
+
},
|
2435
|
+
{
|
2436
|
+
"type": "Job",
|
2437
|
+
"uuid": "d918cd27985427924355cf7a6640be99",
|
2438
|
+
"properties":
|
2439
|
+
{
|
2440
|
+
"title": "Director of Game Partnerships",
|
2441
|
+
"started_on": null,
|
2442
|
+
"started_on_trust_code": null,
|
2443
|
+
"ended_on": null,
|
2444
|
+
"ended_on_trust_code": 0,
|
2445
|
+
"is_current": false,
|
2446
|
+
"created_at": 1427840860,
|
2447
|
+
"updated_at": 1491826317
|
2448
|
+
},
|
2449
|
+
"relationships":
|
2450
|
+
{
|
2451
|
+
"person":
|
2452
|
+
{
|
2453
|
+
"type": "Person",
|
2454
|
+
"uuid": "905ed3c77f757947176ef19252614853",
|
2455
|
+
"properties":
|
2456
|
+
{
|
2457
|
+
"permalink": "dan-morris",
|
2458
|
+
"api_path": "people/dan-morris",
|
2459
|
+
"web_path": "person/dan-morris",
|
2460
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/dan-morris",
|
2461
|
+
"first_name": "Dan",
|
2462
|
+
"last_name": "Morris",
|
2463
|
+
"gender": "Male",
|
2464
|
+
"also_known_as": null,
|
2465
|
+
"bio": "Dan Morris is a director of game partnerships at [Facebook](https://www.crunchbase.com/organization/facebook).",
|
2466
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1427840821/ob4kspp9vmdv4dcowenb.png",
|
2467
|
+
"role_investor": false,
|
2468
|
+
"born_on": null,
|
2469
|
+
"born_on_trust_code": null,
|
2470
|
+
"died_on": null,
|
2471
|
+
"died_on_trust_code": null,
|
2472
|
+
"created_at": 1427840827,
|
2473
|
+
"updated_at": 1509211788
|
2474
|
+
}
|
2475
|
+
}
|
2476
|
+
}
|
2477
|
+
},
|
2478
|
+
{
|
2479
|
+
"type": "Job",
|
2480
|
+
"uuid": "c0b6da2183ed65fa88b0b0afc7546d43",
|
2481
|
+
"properties":
|
2482
|
+
{
|
2483
|
+
"title": "Engineer",
|
2484
|
+
"started_on": "2004-01-01",
|
2485
|
+
"started_on_trust_code": 5,
|
2486
|
+
"ended_on": "2005-01-01",
|
2487
|
+
"ended_on_trust_code": 5,
|
2488
|
+
"is_current": false,
|
2489
|
+
"created_at": 1471953294,
|
2490
|
+
"updated_at": 1471953294
|
2491
|
+
},
|
2492
|
+
"relationships":
|
2493
|
+
{
|
2494
|
+
"person":
|
2495
|
+
{
|
2496
|
+
"type": "Person",
|
2497
|
+
"uuid": "9ac9ae678b94b03957e404b7f2791719",
|
2498
|
+
"properties":
|
2499
|
+
{
|
2500
|
+
"permalink": "adam-dangelo",
|
2501
|
+
"api_path": "people/adam-dangelo",
|
2502
|
+
"web_path": "person/adam-dangelo",
|
2503
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/adam-dangelo",
|
2504
|
+
"first_name": "Adam",
|
2505
|
+
"last_name": "D’Angelo",
|
2506
|
+
"gender": "Male",
|
2507
|
+
"also_known_as": [
|
2508
|
+
"Adam D'Angelo",
|
2509
|
+
"Adam DAngelo",
|
2510
|
+
"Adam D Angelo"
|
2511
|
+
],
|
2512
|
+
"bio": "Adam D’Angelo is a Founder and CEO of Quora.\r\n\r\nHe previously served as Chief Technology Officer at Facebook, where he oversaw new product development and managed the engineering team. In addition, he guided the site’s architecture and infrastructure to ensure scalability as the site expanded.\r\n\r\nPrior to serving as CTO, Adam led the Facebook Platform team and, as an engineer, built the initial infrastructure for news feed, ad targeting and delivery, and worked on scalability and optimization. He holds a Bachelor’s degree in Computer Science from the California Institute of Technology.",
|
2513
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1471939443/ryggcvzfb88fguy6hsbs.png",
|
2514
|
+
"role_investor": true,
|
2515
|
+
"born_on": null,
|
2516
|
+
"born_on_trust_code": null,
|
2517
|
+
"died_on": null,
|
2518
|
+
"died_on_trust_code": null,
|
2519
|
+
"created_at": 1345024085,
|
2520
|
+
"updated_at": 1509270373
|
2521
|
+
}
|
2522
|
+
}
|
2523
|
+
}
|
2524
|
+
},
|
2525
|
+
{
|
2526
|
+
"type": "Job",
|
2527
|
+
"uuid": "fe9ca4369f859a23cf16ccbf181d2029",
|
2528
|
+
"properties":
|
2529
|
+
{
|
2530
|
+
"title": "Product Design Intern",
|
2531
|
+
"started_on": "2013-08-01",
|
2532
|
+
"started_on_trust_code": 7,
|
2533
|
+
"ended_on": "2013-11-01",
|
2534
|
+
"ended_on_trust_code": 7,
|
2535
|
+
"is_current": false,
|
2536
|
+
"created_at": 1426193617,
|
2537
|
+
"updated_at": 1438044099
|
2538
|
+
},
|
2539
|
+
"relationships":
|
2540
|
+
{
|
2541
|
+
"person":
|
2542
|
+
{
|
2543
|
+
"type": "Person",
|
2544
|
+
"uuid": "264a6e069cfd5026a861c24b1d93103c",
|
2545
|
+
"properties":
|
2546
|
+
{
|
2547
|
+
"permalink": "wayne-spiegel",
|
2548
|
+
"api_path": "people/wayne-spiegel",
|
2549
|
+
"web_path": "person/wayne-spiegel",
|
2550
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/wayne-spiegel",
|
2551
|
+
"first_name": "Wayne",
|
2552
|
+
"last_name": "Spiegel",
|
2553
|
+
"gender": "Male",
|
2554
|
+
"also_known_as": null,
|
2555
|
+
"bio": null,
|
2556
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1426193151/bksfh3rkx1wjmdsffhpz.jpg",
|
2557
|
+
"role_investor": false,
|
2558
|
+
"born_on": "1989-01-01",
|
2559
|
+
"born_on_trust_code": 7,
|
2560
|
+
"died_on": null,
|
2561
|
+
"died_on_trust_code": null,
|
2562
|
+
"created_at": 1389767249,
|
2563
|
+
"updated_at": 1452590071
|
2564
|
+
}
|
2565
|
+
}
|
2566
|
+
}
|
2567
|
+
},
|
2568
|
+
{
|
2569
|
+
"type": "Job",
|
2570
|
+
"uuid": "775b3a7714c05e41f94633276c8fc013",
|
2571
|
+
"properties":
|
2572
|
+
{
|
2573
|
+
"title": "Payments Specialist",
|
2574
|
+
"started_on": null,
|
2575
|
+
"started_on_trust_code": null,
|
2576
|
+
"ended_on": null,
|
2577
|
+
"ended_on_trust_code": 0,
|
2578
|
+
"is_current": false,
|
2579
|
+
"created_at": 1498017954,
|
2580
|
+
"updated_at": 1498017954
|
2581
|
+
},
|
2582
|
+
"relationships":
|
2583
|
+
{
|
2584
|
+
"person":
|
2585
|
+
{
|
2586
|
+
"type": "Person",
|
2587
|
+
"uuid": "acecfa1466720a627e41e28d10cb8e29",
|
2588
|
+
"properties":
|
2589
|
+
{
|
2590
|
+
"permalink": "sidharth-garg",
|
2591
|
+
"api_path": "people/sidharth-garg",
|
2592
|
+
"web_path": "person/sidharth-garg",
|
2593
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/sidharth-garg",
|
2594
|
+
"first_name": "Sidharth",
|
2595
|
+
"last_name": "Garg",
|
2596
|
+
"gender": "Male",
|
2597
|
+
"also_known_as": null,
|
2598
|
+
"bio": null,
|
2599
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1498017825/jprfeoekxvx9ulexxdir.jpg",
|
2600
|
+
"role_investor": false,
|
2601
|
+
"born_on": null,
|
2602
|
+
"born_on_trust_code": null,
|
2603
|
+
"died_on": null,
|
2604
|
+
"died_on_trust_code": null,
|
2605
|
+
"created_at": 1498017844,
|
2606
|
+
"updated_at": 1498212027
|
2607
|
+
}
|
2608
|
+
}
|
2609
|
+
}
|
2610
|
+
},
|
2611
|
+
{
|
2612
|
+
"type": "Job",
|
2613
|
+
"uuid": "504c096e84c85e7a2f055820c5e2c89c",
|
2614
|
+
"properties":
|
2615
|
+
{
|
2616
|
+
"title": "Executive Assistant",
|
2617
|
+
"started_on": null,
|
2618
|
+
"started_on_trust_code": null,
|
2619
|
+
"ended_on": null,
|
2620
|
+
"ended_on_trust_code": 0,
|
2621
|
+
"is_current": false,
|
2622
|
+
"created_at": 1438667788,
|
2623
|
+
"updated_at": 1438667788
|
2624
|
+
},
|
2625
|
+
"relationships":
|
2626
|
+
{
|
2627
|
+
"person":
|
2628
|
+
{
|
2629
|
+
"type": "Person",
|
2630
|
+
"uuid": "00e37db4389b9892ede149842576cd58",
|
2631
|
+
"properties":
|
2632
|
+
{
|
2633
|
+
"permalink": "louise-deason",
|
2634
|
+
"api_path": "people/louise-deason",
|
2635
|
+
"web_path": "person/louise-deason",
|
2636
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/louise-deason",
|
2637
|
+
"first_name": "Louise",
|
2638
|
+
"last_name": "Deason",
|
2639
|
+
"gender": "Female",
|
2640
|
+
"also_known_as": null,
|
2641
|
+
"bio": "Louise was a late starter on the tech scene, but is now a full time ComSci student in London (and fed up at being one of only 6 girls on the course!).\r\n\r\nPrevious work includes a stint at Facebook as PA to Joanna Shields, and Head of People/HR at DueDil, one of London’s hottest startups of 2013. Likes tea, cookies, and hackathons.",
|
2642
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1438667672/rueaduht02xyhs1lxbo1.png",
|
2643
|
+
"role_investor": false,
|
2644
|
+
"born_on": null,
|
2645
|
+
"born_on_trust_code": null,
|
2646
|
+
"died_on": null,
|
2647
|
+
"died_on_trust_code": null,
|
2648
|
+
"created_at": 1438667700,
|
2649
|
+
"updated_at": 1474527999
|
2650
|
+
}
|
2651
|
+
}
|
2652
|
+
}
|
2653
|
+
},
|
2654
|
+
{
|
2655
|
+
"type": "Job",
|
2656
|
+
"uuid": "05770e0139b5188ce0aed20d6d147f11",
|
2657
|
+
"properties":
|
2658
|
+
{
|
2659
|
+
"title": "Software Engineer",
|
2660
|
+
"started_on": null,
|
2661
|
+
"started_on_trust_code": null,
|
2662
|
+
"ended_on": null,
|
2663
|
+
"ended_on_trust_code": 0,
|
2664
|
+
"is_current": false,
|
2665
|
+
"created_at": 1250958641,
|
2666
|
+
"updated_at": 1398001544
|
2667
|
+
},
|
2668
|
+
"relationships":
|
2669
|
+
{
|
2670
|
+
"person":
|
2671
|
+
{
|
2672
|
+
"type": "Person",
|
2673
|
+
"uuid": "2fcbf014705239abc11915f7251302ce",
|
2674
|
+
"properties":
|
2675
|
+
{
|
2676
|
+
"permalink": "ivan-kirigin",
|
2677
|
+
"api_path": "people/ivan-kirigin",
|
2678
|
+
"web_path": "person/ivan-kirigin",
|
2679
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/ivan-kirigin",
|
2680
|
+
"first_name": "Ivan",
|
2681
|
+
"last_name": "Kirigin",
|
2682
|
+
"gender": "Male",
|
2683
|
+
"also_known_as": null,
|
2684
|
+
"bio": "YesGraph founder. YesGraph helps your business grow by recommending exactly who a user should invite.\r\nhttps://www.yesgraph.com\r\n\r\nBefore YesGraph, Ivan helped Dropbox drive 12X growth over 2 years. Previously, Ivan worked on Facebook's virtual currency and cofounded Tipjoy, a social micropayments system in YC W08.",
|
2685
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397182344/b8ded8f155277e8efc5a96312722c78c.png",
|
2686
|
+
"role_investor": false,
|
2687
|
+
"born_on": null,
|
2688
|
+
"born_on_trust_code": null,
|
2689
|
+
"died_on": null,
|
2690
|
+
"died_on_trust_code": null,
|
2691
|
+
"created_at": 1202709087,
|
2692
|
+
"updated_at": 1488286891
|
2693
|
+
}
|
2694
|
+
}
|
2695
|
+
}
|
2696
|
+
},
|
2697
|
+
{
|
2698
|
+
"type": "Job",
|
2699
|
+
"uuid": "57c9ab66f3332369e6a3cfd40274e7ca",
|
2700
|
+
"properties":
|
2701
|
+
{
|
2702
|
+
"title": "Software Engineer",
|
2703
|
+
"started_on": "2014-06-09",
|
2704
|
+
"started_on_trust_code": 7,
|
2705
|
+
"ended_on": "2014-08-29",
|
2706
|
+
"ended_on_trust_code": 7,
|
2707
|
+
"is_current": false,
|
2708
|
+
"created_at": 1406062908,
|
2709
|
+
"updated_at": 1457037375
|
2710
|
+
},
|
2711
|
+
"relationships":
|
2712
|
+
{
|
2713
|
+
"person":
|
2714
|
+
{
|
2715
|
+
"type": "Person",
|
2716
|
+
"uuid": "7ec9edbd069282c84504ba945ad4303c",
|
2717
|
+
"properties":
|
2718
|
+
{
|
2719
|
+
"permalink": "michael-sayman",
|
2720
|
+
"api_path": "people/michael-sayman",
|
2721
|
+
"web_path": "person/michael-sayman",
|
2722
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/michael-sayman",
|
2723
|
+
"first_name": "Michael",
|
2724
|
+
"last_name": "Sayman",
|
2725
|
+
"gender": "Male",
|
2726
|
+
"also_known_as": null,
|
2727
|
+
"bio": "17-year-old entrepreneur, programmer, and student. Michael created an iOS app development company, when he was 13 after teaching himself Objective-C online. Since then, he's gone on to create dozens of apps which have been downloaded over 3 million times worldwide, featured on CNN, ABC News, Univision, Telemundo, CNN en Español, Reuters, Sky News, and has spoken and given conferences to thousands of college students at various universities across the country and many other universities internationally. These apps have reached the top 20 most downloaded apps in the entire App Store, above million dollar apps such as Candy Crush, Pinterest, Tumblr, Angry Birds, LinkedIn, and even Twitter. Michael's apps have gotten the attention of many large companies including Zynga, Coca-Cola, and Facebook. Additionally, Mark Zuckerberg, CEO of Facebook, also requested to meet him at the Facebook HQ in November of 2013. He also met with their university recruiting team (although he was still in high school) to talk about potential partnerships and employment opportunities (currently interning at Facebook). Although he programs the apps, he sees himself as more of an entrepreneur than a computer scientist.\r\n\r\nAnyone can make a complex app, but to know the strategies of reaching the top each and every time, that's totally different. It may seem like pure luck, but it's not. It's all about analyzing the target audience and picturing the app in their hands.\r\n\r\nMichael was in a private high school thanks to his efforts in paying for his own tuition. He may be only 17 years old, but that doesn't stop him!",
|
2728
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1454536028/pyx82pd8344nopsn7hua.jpg",
|
2729
|
+
"role_investor": false,
|
2730
|
+
"born_on": "1996-08-24",
|
2731
|
+
"born_on_trust_code": 7,
|
2732
|
+
"died_on": null,
|
2733
|
+
"died_on_trust_code": null,
|
2734
|
+
"created_at": 1376576023,
|
2735
|
+
"updated_at": 1488207093
|
2736
|
+
}
|
2737
|
+
}
|
2738
|
+
}
|
2739
|
+
},
|
2740
|
+
{
|
2741
|
+
"type": "Job",
|
2742
|
+
"uuid": "b24807e92fbb4706a193971b91c20765",
|
2743
|
+
"properties":
|
2744
|
+
{
|
2745
|
+
"title": "Software Engineer",
|
2746
|
+
"started_on": "2012-03-26",
|
2747
|
+
"started_on_trust_code": 7,
|
2748
|
+
"ended_on": null,
|
2749
|
+
"ended_on_trust_code": 0,
|
2750
|
+
"is_current": false,
|
2751
|
+
"created_at": 1336103669,
|
2752
|
+
"updated_at": 1491826371
|
2753
|
+
},
|
2754
|
+
"relationships":
|
2755
|
+
{
|
2756
|
+
"person":
|
2757
|
+
{
|
2758
|
+
"type": "Person",
|
2759
|
+
"uuid": "308d5603d663897e2193f4f343663115",
|
2760
|
+
"properties":
|
2761
|
+
{
|
2762
|
+
"permalink": "zac-morris",
|
2763
|
+
"api_path": "people/zac-morris",
|
2764
|
+
"web_path": "person/zac-morris",
|
2765
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/zac-morris",
|
2766
|
+
"first_name": "Zac",
|
2767
|
+
"last_name": "Morris",
|
2768
|
+
"gender": "Male",
|
2769
|
+
"also_known_as": null,
|
2770
|
+
"bio": null,
|
2771
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397630445/aed986c6e59773de489c528fe7514bdb.jpg",
|
2772
|
+
"role_investor": false,
|
2773
|
+
"born_on": "1984-04-24",
|
2774
|
+
"born_on_trust_code": 7,
|
2775
|
+
"died_on": null,
|
2776
|
+
"died_on_trust_code": null,
|
2777
|
+
"created_at": 1300756466,
|
2778
|
+
"updated_at": 1449305636
|
2779
|
+
}
|
2780
|
+
}
|
2781
|
+
}
|
2782
|
+
},
|
2783
|
+
{
|
2784
|
+
"type": "Job",
|
2785
|
+
"uuid": "bd0951148aeb7458ef83326691493429",
|
2786
|
+
"properties":
|
2787
|
+
{
|
2788
|
+
"title": "Marketing",
|
2789
|
+
"started_on": "2009-01-01",
|
2790
|
+
"started_on_trust_code": 5,
|
2791
|
+
"ended_on": "2011-01-01",
|
2792
|
+
"ended_on_trust_code": 5,
|
2793
|
+
"is_current": false,
|
2794
|
+
"created_at": 1251691917,
|
2795
|
+
"updated_at": 1434172291
|
2796
|
+
},
|
2797
|
+
"relationships":
|
2798
|
+
{
|
2799
|
+
"person":
|
2800
|
+
{
|
2801
|
+
"type": "Person",
|
2802
|
+
"uuid": "6bbddf9f734dc836940d6c07309ddc34",
|
2803
|
+
"properties":
|
2804
|
+
{
|
2805
|
+
"permalink": "jonathan-ehrlich",
|
2806
|
+
"api_path": "people/jonathan-ehrlich",
|
2807
|
+
"web_path": "person/jonathan-ehrlich",
|
2808
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/jonathan-ehrlich",
|
2809
|
+
"first_name": "Jonathan",
|
2810
|
+
"last_name": "Ehrlich",
|
2811
|
+
"gender": "Male",
|
2812
|
+
"also_known_as": null,
|
2813
|
+
"bio": "Jonathan is a Partner at Foundation Capital.\r\n\r\nJonathan joined Foundation Capital as an EIR in January, 2013. \r\n\r\nPrior to Foundation, Jonathan co-founded Utah Street Labs, a Foundation portfolio company. \r\n\r\nMr. Ehrlich was previously the Director of Marketing at Facebook. \r\n\r\nFrom November 2003 until 2007 he was the Executive Vice-President, Online at Indigo Books & Music Inc. (TSE: IDG), Canada's largest book retailer, where he was responsible for that company's Online business. \r\n\r\nPrior to joining Indigo, Mr. Ehrlich was an Entrepreneur-in-Residence at Mosaic Venture Partners and before that was a Co-Founder and Vice President of Marketing for MobShop Inc, a pioneer in Online eCommerce. MobShop was funded by GE Capital, Visa International, Mayfield Fund and Marc Andreessen. His previous business experience also includes several years at CYBERplex interactive media and MacLaren McCann advertising.\r\n\r\nHe holds an MBA from the Richard Ivey School of Business and a BA in Political Science from the University of Western Ontario.",
|
2814
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1480328168/tqamtwjre8kloiojpkqe.jpg",
|
2815
|
+
"role_investor": true,
|
2816
|
+
"born_on": null,
|
2817
|
+
"born_on_trust_code": null,
|
2818
|
+
"died_on": null,
|
2819
|
+
"died_on_trust_code": null,
|
2820
|
+
"created_at": 1206543593,
|
2821
|
+
"updated_at": 1509212695
|
2822
|
+
}
|
2823
|
+
}
|
2824
|
+
}
|
2825
|
+
},
|
2826
|
+
{
|
2827
|
+
"type": "Job",
|
2828
|
+
"uuid": "0231b03c43ae96b1707bd9b5a6192088",
|
2829
|
+
"properties":
|
2830
|
+
{
|
2831
|
+
"title": "Social Marketing Specialist",
|
2832
|
+
"started_on": "2010-01-01",
|
2833
|
+
"started_on_trust_code": 5,
|
2834
|
+
"ended_on": "2013-01-01",
|
2835
|
+
"ended_on_trust_code": 5,
|
2836
|
+
"is_current": false,
|
2837
|
+
"created_at": 1433944931,
|
2838
|
+
"updated_at": 1434170149
|
2839
|
+
},
|
2840
|
+
"relationships":
|
2841
|
+
{
|
2842
|
+
"person":
|
2843
|
+
{
|
2844
|
+
"type": "Person",
|
2845
|
+
"uuid": "29a10b85bd4bbd8e23163cd5153fbb88",
|
2846
|
+
"properties":
|
2847
|
+
{
|
2848
|
+
"permalink": "samer-ragheb",
|
2849
|
+
"api_path": "people/samer-ragheb",
|
2850
|
+
"web_path": "person/samer-ragheb",
|
2851
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/samer-ragheb",
|
2852
|
+
"first_name": "Samer",
|
2853
|
+
"last_name": "Ragheb",
|
2854
|
+
"gender": "Male",
|
2855
|
+
"also_known_as": null,
|
2856
|
+
"bio": null,
|
2857
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1433944737/utlvogcolplle4bumdkm.jpg",
|
2858
|
+
"role_investor": false,
|
2859
|
+
"born_on": null,
|
2860
|
+
"born_on_trust_code": null,
|
2861
|
+
"died_on": null,
|
2862
|
+
"died_on_trust_code": null,
|
2863
|
+
"created_at": 1433944766,
|
2864
|
+
"updated_at": 1509126378
|
2865
|
+
}
|
2866
|
+
}
|
2867
|
+
}
|
2868
|
+
},
|
2869
|
+
{
|
2870
|
+
"type": "Job",
|
2871
|
+
"uuid": "0341dd7065b0427d22c1de26e4e8fa70",
|
2872
|
+
"properties":
|
2873
|
+
{
|
2874
|
+
"title": "Engineer",
|
2875
|
+
"started_on": null,
|
2876
|
+
"started_on_trust_code": null,
|
2877
|
+
"ended_on": null,
|
2878
|
+
"ended_on_trust_code": 0,
|
2879
|
+
"is_current": false,
|
2880
|
+
"created_at": 1437462655,
|
2881
|
+
"updated_at": 1437462655
|
2882
|
+
},
|
2883
|
+
"relationships":
|
2884
|
+
{
|
2885
|
+
"person":
|
2886
|
+
{
|
2887
|
+
"type": "Person",
|
2888
|
+
"uuid": "3021ffc67bd9d4249fe14848d4775785",
|
2889
|
+
"properties":
|
2890
|
+
{
|
2891
|
+
"permalink": "pete-hunt",
|
2892
|
+
"api_path": "people/pete-hunt",
|
2893
|
+
"web_path": "person/pete-hunt",
|
2894
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/pete-hunt",
|
2895
|
+
"first_name": "Pete",
|
2896
|
+
"last_name": "Hunt",
|
2897
|
+
"gender": "Male",
|
2898
|
+
"also_known_as": null,
|
2899
|
+
"bio": "Ex-FB and Instagram. Currently funemployed and contributing to reactjs.org",
|
2900
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1437462340/jkaicxrcdacst7dpnyx2.jpg",
|
2901
|
+
"role_investor": false,
|
2902
|
+
"born_on": null,
|
2903
|
+
"born_on_trust_code": null,
|
2904
|
+
"died_on": null,
|
2905
|
+
"died_on_trust_code": null,
|
2906
|
+
"created_at": 1437462366,
|
2907
|
+
"updated_at": 1453279442
|
2908
|
+
}
|
2909
|
+
}
|
2910
|
+
}
|
2911
|
+
},
|
2912
|
+
{
|
2913
|
+
"type": "Job",
|
2914
|
+
"uuid": "7655b9e51de0de0c78081c8d7afdac3f",
|
2915
|
+
"properties":
|
2916
|
+
{
|
2917
|
+
"title": "Co-Founder",
|
2918
|
+
"started_on": "2004-01-01",
|
2919
|
+
"started_on_trust_code": 5,
|
2920
|
+
"ended_on": null,
|
2921
|
+
"ended_on_trust_code": 0,
|
2922
|
+
"is_current": false,
|
2923
|
+
"created_at": 1299282032,
|
2924
|
+
"updated_at": 1501697207
|
2925
|
+
},
|
2926
|
+
"relationships":
|
2927
|
+
{
|
2928
|
+
"person":
|
2929
|
+
{
|
2930
|
+
"type": "Person",
|
2931
|
+
"uuid": "fb5b458c0aaba97771b9ecf78d3ec756",
|
2932
|
+
"properties":
|
2933
|
+
{
|
2934
|
+
"permalink": "eduardo-saverin",
|
2935
|
+
"api_path": "people/eduardo-saverin",
|
2936
|
+
"web_path": "person/eduardo-saverin",
|
2937
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/eduardo-saverin",
|
2938
|
+
"first_name": "Eduardo",
|
2939
|
+
"last_name": "Saverin",
|
2940
|
+
"gender": "Male",
|
2941
|
+
"also_known_as": null,
|
2942
|
+
"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.",
|
2943
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1488569689/tguyaajkbrzranyecmg0.png",
|
2944
|
+
"role_investor": true,
|
2945
|
+
"born_on": "1982-03-19",
|
2946
|
+
"born_on_trust_code": 7,
|
2947
|
+
"died_on": null,
|
2948
|
+
"died_on_trust_code": null,
|
2949
|
+
"created_at": 1285115504,
|
2950
|
+
"updated_at": 1506579158
|
2951
|
+
}
|
2952
|
+
}
|
2953
|
+
}
|
2954
|
+
},
|
2955
|
+
{
|
2956
|
+
"type": "Job",
|
2957
|
+
"uuid": "95b993fb1165d360c502b5cf72850759",
|
2958
|
+
"properties":
|
2959
|
+
{
|
2960
|
+
"title": "Product Designer",
|
2961
|
+
"started_on": "2007-02-01",
|
2962
|
+
"started_on_trust_code": 6,
|
2963
|
+
"ended_on": "2012-07-01",
|
2964
|
+
"ended_on_trust_code": 6,
|
2965
|
+
"is_current": false,
|
2966
|
+
"created_at": 1397170607,
|
2967
|
+
"updated_at": 1438041022
|
2968
|
+
},
|
2969
|
+
"relationships":
|
2970
|
+
{
|
2971
|
+
"person":
|
2972
|
+
{
|
2973
|
+
"type": "Person",
|
2974
|
+
"uuid": "699808b584c99654b3e602e8568cf4cb",
|
2975
|
+
"properties":
|
2976
|
+
{
|
2977
|
+
"permalink": "ben-blumenfeld",
|
2978
|
+
"api_path": "people/ben-blumenfeld",
|
2979
|
+
"web_path": "person/ben-blumenfeld",
|
2980
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/ben-blumenfeld",
|
2981
|
+
"first_name": "Ben",
|
2982
|
+
"last_name": "Blumenfeld",
|
2983
|
+
"gender": "Male",
|
2984
|
+
"also_known_as": null,
|
2985
|
+
"bio": "Ben Blumenfeld is the co-director of the Designer Fund. Previously, Ben was a design lead at Facebook for over 5 years where he helped build products for nearly a billion people and grow Facebook’s world-class design team. He was also the design director at Varien which he helped build into one of the world’s leading e-commerce firms and a designer at CBS where he designed many of their prime time show web experiences.",
|
2986
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397749796/99bf29324bcf1c247b3677ac205b2f83.jpg",
|
2987
|
+
"role_investor": false,
|
2988
|
+
"born_on": "1979-01-01",
|
2989
|
+
"born_on_trust_code": 7,
|
2990
|
+
"died_on": null,
|
2991
|
+
"died_on_trust_code": null,
|
2992
|
+
"created_at": 1344418290,
|
2993
|
+
"updated_at": 1499101784
|
2994
|
+
}
|
2995
|
+
}
|
2996
|
+
}
|
2997
|
+
},
|
2998
|
+
{
|
2999
|
+
"type": "Job",
|
3000
|
+
"uuid": "213b95e850c846e135272907c057101b",
|
3001
|
+
"properties":
|
3002
|
+
{
|
3003
|
+
"title": "Engineering Manager",
|
3004
|
+
"started_on": "2011-01-01",
|
3005
|
+
"started_on_trust_code": 5,
|
3006
|
+
"ended_on": "2013-01-01",
|
3007
|
+
"ended_on_trust_code": 5,
|
3008
|
+
"is_current": false,
|
3009
|
+
"created_at": 1472601168,
|
3010
|
+
"updated_at": 1472601168
|
3011
|
+
},
|
3012
|
+
"relationships":
|
3013
|
+
{
|
3014
|
+
"person":
|
3015
|
+
{
|
3016
|
+
"type": "Person",
|
3017
|
+
"uuid": "4b9a962a075f67d60ca3537ea53e4750",
|
3018
|
+
"properties":
|
3019
|
+
{
|
3020
|
+
"permalink": "ross-bayer",
|
3021
|
+
"api_path": "people/ross-bayer",
|
3022
|
+
"web_path": "person/ross-bayer",
|
3023
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/ross-bayer",
|
3024
|
+
"first_name": "Ross",
|
3025
|
+
"last_name": "Bayer",
|
3026
|
+
"gender": "Male",
|
3027
|
+
"also_known_as": null,
|
3028
|
+
"bio": "Ross Bayer is the Co-Founder & CTO of Breakaway Labs.",
|
3029
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1472601051/k4rl0ynjh747fh5vmoue.jpg",
|
3030
|
+
"role_investor": false,
|
3031
|
+
"born_on": null,
|
3032
|
+
"born_on_trust_code": null,
|
3033
|
+
"died_on": null,
|
3034
|
+
"died_on_trust_code": null,
|
3035
|
+
"created_at": 1472601068,
|
3036
|
+
"updated_at": 1472601312
|
3037
|
+
}
|
3038
|
+
}
|
3039
|
+
}
|
3040
|
+
},
|
3041
|
+
{
|
3042
|
+
"type": "Job",
|
3043
|
+
"uuid": "255c5d7aed9f03d8f2e978c8d851a981",
|
3044
|
+
"properties":
|
3045
|
+
{
|
3046
|
+
"title": "Manager of Product Marketing, Facebook Credits",
|
3047
|
+
"started_on": "2014-10-01",
|
3048
|
+
"started_on_trust_code": 6,
|
3049
|
+
"ended_on": "2017-09-01",
|
3050
|
+
"ended_on_trust_code": 6,
|
3051
|
+
"is_current": false,
|
3052
|
+
"created_at": 1295999608,
|
3053
|
+
"updated_at": 1505335605
|
3054
|
+
},
|
3055
|
+
"relationships":
|
3056
|
+
{
|
3057
|
+
"person":
|
3058
|
+
{
|
3059
|
+
"type": "Person",
|
3060
|
+
"uuid": "cadc99ca4985ff819b44fc93a9c02da8",
|
3061
|
+
"properties":
|
3062
|
+
{
|
3063
|
+
"permalink": "deborah-liu",
|
3064
|
+
"api_path": "people/deborah-liu",
|
3065
|
+
"web_path": "person/deborah-liu",
|
3066
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/deborah-liu",
|
3067
|
+
"first_name": "Deborah",
|
3068
|
+
"last_name": "Liu",
|
3069
|
+
"gender": "Female",
|
3070
|
+
"also_known_as": null,
|
3071
|
+
"bio": "DEBORAH LIU is manager of product marketing for Facebook Credits and Games at Facebook, where she oversees initiatives related to game applications on Facebook.com and the Facebook virtual currency. Prior to Facebook, Deborah spent seven years at eBay and PayPal, where she had various roles including Director of Product Marketing Management for the eBay business at PayPal and Director of Product Management for the eBay Buyer Experience. Deborah has an MBA from Stanford Graduate School of Business and a bachelor's degree in civil and environmental engineering from Duke University.",
|
3072
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1505335750/rpvl8ybbymy09s6w2sxl.png",
|
3073
|
+
"role_investor": true,
|
3074
|
+
"born_on": null,
|
3075
|
+
"born_on_trust_code": null,
|
3076
|
+
"died_on": null,
|
3077
|
+
"died_on_trust_code": null,
|
3078
|
+
"created_at": 1296026704,
|
3079
|
+
"updated_at": 1507366011
|
3080
|
+
}
|
3081
|
+
}
|
3082
|
+
}
|
3083
|
+
},
|
3084
|
+
{
|
3085
|
+
"type": "Job",
|
3086
|
+
"uuid": "cff75171b99bf2bf4abf4137024453fc",
|
3087
|
+
"properties":
|
3088
|
+
{
|
3089
|
+
"title": "Product Designer",
|
3090
|
+
"started_on": "2013-05-06",
|
3091
|
+
"started_on_trust_code": 7,
|
3092
|
+
"ended_on": "2017-08-01",
|
3093
|
+
"ended_on_trust_code": 7,
|
3094
|
+
"is_current": false,
|
3095
|
+
"created_at": 1495647510,
|
3096
|
+
"updated_at": 1502432765
|
3097
|
+
},
|
3098
|
+
"relationships":
|
3099
|
+
{
|
3100
|
+
"person":
|
3101
|
+
{
|
3102
|
+
"type": "Person",
|
3103
|
+
"uuid": "ea240d1270ed0db9c24b3a5d3c2c5d1e",
|
3104
|
+
"properties":
|
3105
|
+
{
|
3106
|
+
"permalink": "connie-yang",
|
3107
|
+
"api_path": "people/connie-yang",
|
3108
|
+
"web_path": "person/connie-yang",
|
3109
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/connie-yang",
|
3110
|
+
"first_name": "Connie",
|
3111
|
+
"last_name": "Yang",
|
3112
|
+
"gender": "Female",
|
3113
|
+
"also_known_as": null,
|
3114
|
+
"bio": null,
|
3115
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1495647392/v90thakufwoqbidjxgx9.jpg",
|
3116
|
+
"role_investor": false,
|
3117
|
+
"born_on": "0198-01-01",
|
3118
|
+
"born_on_trust_code": 7,
|
3119
|
+
"died_on": null,
|
3120
|
+
"died_on_trust_code": null,
|
3121
|
+
"created_at": 1495647397,
|
3122
|
+
"updated_at": 1502432739
|
3123
|
+
}
|
3124
|
+
}
|
3125
|
+
}
|
3126
|
+
},
|
3127
|
+
{
|
3128
|
+
"type": "Job",
|
3129
|
+
"uuid": "6e43ef1dd0328d17d161faad49009b2d",
|
3130
|
+
"properties":
|
3131
|
+
{
|
3132
|
+
"title": "Content Specialist",
|
3133
|
+
"started_on": null,
|
3134
|
+
"started_on_trust_code": null,
|
3135
|
+
"ended_on": null,
|
3136
|
+
"ended_on_trust_code": 0,
|
3137
|
+
"is_current": false,
|
3138
|
+
"created_at": 1442202719,
|
3139
|
+
"updated_at": 1442202720
|
3140
|
+
},
|
3141
|
+
"relationships":
|
3142
|
+
{
|
3143
|
+
"person":
|
3144
|
+
{
|
3145
|
+
"type": "Person",
|
3146
|
+
"uuid": "003e1bc508792750453f370c13e7b3f8",
|
3147
|
+
"properties":
|
3148
|
+
{
|
3149
|
+
"permalink": "juliano-kimura",
|
3150
|
+
"api_path": "people/juliano-kimura",
|
3151
|
+
"web_path": "person/juliano-kimura",
|
3152
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/juliano-kimura",
|
3153
|
+
"first_name": "Juliano",
|
3154
|
+
"last_name": "Kimura",
|
3155
|
+
"gender": "Male",
|
3156
|
+
"also_known_as": null,
|
3157
|
+
"bio": "Julian Kimura Trianons, was content specialist and lecturer Facebook Brazil. Creator and co-founder of the Social Brunch. Elected Social Media 2015 by professional Abcomm (Brazilian Association of Electronic Commerce) has 15 years of experience in the digital landscape.",
|
3158
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1442160111/moriqctooozlqjxabpxy.png",
|
3159
|
+
"role_investor": false,
|
3160
|
+
"born_on": null,
|
3161
|
+
"born_on_trust_code": null,
|
3162
|
+
"died_on": null,
|
3163
|
+
"died_on_trust_code": null,
|
3164
|
+
"created_at": 1442160115,
|
3165
|
+
"updated_at": 1442202824
|
3166
|
+
}
|
3167
|
+
}
|
3168
|
+
}
|
3169
|
+
},
|
3170
|
+
{
|
3171
|
+
"type": "Job",
|
3172
|
+
"uuid": "24a0a7af8053e9ddb748284e6d505619",
|
3173
|
+
"properties":
|
3174
|
+
{
|
3175
|
+
"title": "Hacker",
|
3176
|
+
"started_on": "2010-03-29",
|
3177
|
+
"started_on_trust_code": 7,
|
3178
|
+
"ended_on": "2015-04-22",
|
3179
|
+
"ended_on_trust_code": 7,
|
3180
|
+
"is_current": false,
|
3181
|
+
"created_at": 1269800660,
|
3182
|
+
"updated_at": 1444857340
|
3183
|
+
},
|
3184
|
+
"relationships":
|
3185
|
+
{
|
3186
|
+
"person":
|
3187
|
+
{
|
3188
|
+
"type": "Person",
|
3189
|
+
"uuid": "4e742df4fbc885a6001d2e3a3f86bb69",
|
3190
|
+
"properties":
|
3191
|
+
{
|
3192
|
+
"permalink": "paul-tarjan",
|
3193
|
+
"api_path": "people/paul-tarjan",
|
3194
|
+
"web_path": "person/paul-tarjan",
|
3195
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/paul-tarjan",
|
3196
|
+
"first_name": "Paul",
|
3197
|
+
"last_name": "Tarjan",
|
3198
|
+
"gender": "Male",
|
3199
|
+
"also_known_as": null,
|
3200
|
+
"bio": "Paul Tarjan is a software engineer in the bay area.\r\n\r\nHe has two B.Sc. degrees from the Universtiy of Calgary in Honours Pure Math and Honours Computer Science. Then a Masters degree from Stanford working with Dr. Nick McKeown in the High Performance Networking group.\r\n\r\nHe joined Yahoo! directly out of his masters, and co-founded the SearchMonkey team with Amit Kumar. He served as the tech lead and gave the SuperStar award acceptance speech. He did many internal projects, but SearchMonkey was his most public facing one.\r\n\r\nIn 2010 he joined Facebook then left after 5 years to found Trimian.\r\n\r\nHe can often be found unicycling and juggling around the bay area.",
|
3201
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1444857418/wqk52dk7ara9in4z7fac.jpg",
|
3202
|
+
"role_investor": false,
|
3203
|
+
"born_on": "1984-05-02",
|
3204
|
+
"born_on_trust_code": 7,
|
3205
|
+
"died_on": null,
|
3206
|
+
"died_on_trust_code": null,
|
3207
|
+
"created_at": 1269825860,
|
3208
|
+
"updated_at": 1453280019
|
3209
|
+
}
|
3210
|
+
}
|
3211
|
+
}
|
3212
|
+
},
|
3213
|
+
{
|
3214
|
+
"type": "Job",
|
3215
|
+
"uuid": "2fc0400603e8d93834548e6f9b0ede3b",
|
3216
|
+
"properties":
|
3217
|
+
{
|
3218
|
+
"title": "Design",
|
3219
|
+
"started_on": null,
|
3220
|
+
"started_on_trust_code": null,
|
3221
|
+
"ended_on": null,
|
3222
|
+
"ended_on_trust_code": 0,
|
3223
|
+
"is_current": false,
|
3224
|
+
"created_at": 1495121725,
|
3225
|
+
"updated_at": 1495121725
|
3226
|
+
},
|
3227
|
+
"relationships":
|
3228
|
+
{
|
3229
|
+
"person":
|
3230
|
+
{
|
3231
|
+
"type": "Person",
|
3232
|
+
"uuid": "251b5c87a20676be5307fa40d26b905c",
|
3233
|
+
"properties":
|
3234
|
+
{
|
3235
|
+
"permalink": "adam-michela",
|
3236
|
+
"api_path": "people/adam-michela",
|
3237
|
+
"web_path": "person/adam-michela",
|
3238
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/adam-michela",
|
3239
|
+
"first_name": "Adam",
|
3240
|
+
"last_name": "Michela",
|
3241
|
+
"gender": "Male",
|
3242
|
+
"also_known_as": [
|
3243
|
+
"soopa"
|
3244
|
+
],
|
3245
|
+
"bio": "A digital product investor, designer and engineer.",
|
3246
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1401956650/lqkymnvvs3zatwavwo8d.jpg",
|
3247
|
+
"role_investor": false,
|
3248
|
+
"born_on": "1982-01-01",
|
3249
|
+
"born_on_trust_code": 7,
|
3250
|
+
"died_on": null,
|
3251
|
+
"died_on_trust_code": null,
|
3252
|
+
"created_at": 1366883514,
|
3253
|
+
"updated_at": 1502064953
|
3254
|
+
}
|
3255
|
+
}
|
3256
|
+
}
|
3257
|
+
},
|
3258
|
+
{
|
3259
|
+
"type": "Job",
|
3260
|
+
"uuid": "78b0a021ad18e54f7bd70eb10943167f",
|
3261
|
+
"properties":
|
3262
|
+
{
|
3263
|
+
"title": "Partnerships, SMB/Local Monetization",
|
3264
|
+
"started_on": "2010-10-01",
|
3265
|
+
"started_on_trust_code": 6,
|
3266
|
+
"ended_on": "2011-10-01",
|
3267
|
+
"ended_on_trust_code": 6,
|
3268
|
+
"is_current": false,
|
3269
|
+
"created_at": 1474400514,
|
3270
|
+
"updated_at": 1474400514
|
3271
|
+
},
|
3272
|
+
"relationships":
|
3273
|
+
{
|
3274
|
+
"person":
|
3275
|
+
{
|
3276
|
+
"type": "Person",
|
3277
|
+
"uuid": "f25629ae8de3c3e4f27070891646884a",
|
3278
|
+
"properties":
|
3279
|
+
{
|
3280
|
+
"permalink": "maz-sharafi",
|
3281
|
+
"api_path": "people/maz-sharafi",
|
3282
|
+
"web_path": "person/maz-sharafi",
|
3283
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/maz-sharafi",
|
3284
|
+
"first_name": "Maz",
|
3285
|
+
"last_name": "Sharafi",
|
3286
|
+
"gender": "Male",
|
3287
|
+
"also_known_as": null,
|
3288
|
+
"bio": "Maz Sharafi is a Director of Monetization Product Marketing at Facebook. He has been working at Facebook since 2009. He is also currently working as Regional Board Member at BUILD. Maz also worked as Senior Manager of Strategic Planning Group at American Express, Strategic Partnerships of Local/SMB Monetization at Google, and an associate of Corporate Development and Investment Banking at Citigroup.",
|
3289
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1474399159/h6a9v3m9uafcuzx5pclc.jpg",
|
3290
|
+
"role_investor": false,
|
3291
|
+
"born_on": null,
|
3292
|
+
"born_on_trust_code": null,
|
3293
|
+
"died_on": null,
|
3294
|
+
"died_on_trust_code": null,
|
3295
|
+
"created_at": 1474399126,
|
3296
|
+
"updated_at": 1474400750
|
3297
|
+
}
|
3298
|
+
}
|
3299
|
+
}
|
3300
|
+
},
|
3301
|
+
{
|
3302
|
+
"type": "Job",
|
3303
|
+
"uuid": "abca271409a614d09d8f88d4fb1019b8",
|
3304
|
+
"properties":
|
3305
|
+
{
|
3306
|
+
"title": "Software Engineer Intern",
|
3307
|
+
"started_on": "2015-06-29",
|
3308
|
+
"started_on_trust_code": 7,
|
3309
|
+
"ended_on": "2015-09-18",
|
3310
|
+
"ended_on_trust_code": 7,
|
3311
|
+
"is_current": false,
|
3312
|
+
"created_at": 1471296928,
|
3313
|
+
"updated_at": 1471296986
|
3314
|
+
},
|
3315
|
+
"relationships":
|
3316
|
+
{
|
3317
|
+
"person":
|
3318
|
+
{
|
3319
|
+
"type": "Person",
|
3320
|
+
"uuid": "0fcab60b924dc88cf55ed5903cd85cb5",
|
3321
|
+
"properties":
|
3322
|
+
{
|
3323
|
+
"permalink": "mostafa-gabriel",
|
3324
|
+
"api_path": "people/mostafa-gabriel",
|
3325
|
+
"web_path": "person/mostafa-gabriel",
|
3326
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/mostafa-gabriel",
|
3327
|
+
"first_name": "Mostafa",
|
3328
|
+
"last_name": "Gabriel",
|
3329
|
+
"gender": "Male",
|
3330
|
+
"also_known_as": null,
|
3331
|
+
"bio": null,
|
3332
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1471296863/br2oaajekqtzuhulhmwx.jpg",
|
3333
|
+
"role_investor": false,
|
3334
|
+
"born_on": "1992-10-16",
|
3335
|
+
"born_on_trust_code": 7,
|
3336
|
+
"died_on": null,
|
3337
|
+
"died_on_trust_code": null,
|
3338
|
+
"created_at": 1471296873,
|
3339
|
+
"updated_at": 1507591338
|
3340
|
+
}
|
3341
|
+
}
|
3342
|
+
}
|
3343
|
+
},
|
3344
|
+
{
|
3345
|
+
"type": "Job",
|
3346
|
+
"uuid": "9ef8b964186e55e95faafb1d60034f6e",
|
3347
|
+
"properties":
|
3348
|
+
{
|
3349
|
+
"title": "Co-Founder",
|
3350
|
+
"started_on": "2004-02-01",
|
3351
|
+
"started_on_trust_code": 6,
|
3352
|
+
"ended_on": "2008-11-01",
|
3353
|
+
"ended_on_trust_code": 6,
|
3354
|
+
"is_current": false,
|
3355
|
+
"created_at": 1180131305,
|
3356
|
+
"updated_at": 1481698565
|
3357
|
+
},
|
3358
|
+
"relationships":
|
3359
|
+
{
|
3360
|
+
"person":
|
3361
|
+
{
|
3362
|
+
"type": "Person",
|
3363
|
+
"uuid": "084aaa0707951fe89c4698bbeb02cd64",
|
3364
|
+
"properties":
|
3365
|
+
{
|
3366
|
+
"permalink": "dustin-moskovitz",
|
3367
|
+
"api_path": "people/dustin-moskovitz",
|
3368
|
+
"web_path": "person/dustin-moskovitz",
|
3369
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/dustin-moskovitz",
|
3370
|
+
"first_name": "Dustin",
|
3371
|
+
"last_name": "Moskovitz",
|
3372
|
+
"gender": "Male",
|
3373
|
+
"also_known_as": null,
|
3374
|
+
"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.",
|
3375
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1487977138/xrboecldujx1ey7ejmun.png",
|
3376
|
+
"role_investor": true,
|
3377
|
+
"born_on": "1984-05-22",
|
3378
|
+
"born_on_trust_code": 7,
|
3379
|
+
"died_on": null,
|
3380
|
+
"died_on_trust_code": null,
|
3381
|
+
"created_at": 1180156505,
|
3382
|
+
"updated_at": 1508608110
|
3383
|
+
}
|
3384
|
+
}
|
3385
|
+
}
|
3386
|
+
},
|
3387
|
+
{
|
3388
|
+
"type": "Job",
|
3389
|
+
"uuid": "02d7cd2b5d700db16d6443441a99c77f",
|
3390
|
+
"properties":
|
3391
|
+
{
|
3392
|
+
"title": "Product Designer",
|
3393
|
+
"started_on": "2007-05-01",
|
3394
|
+
"started_on_trust_code": 6,
|
3395
|
+
"ended_on": "2008-09-01",
|
3396
|
+
"ended_on_trust_code": 6,
|
3397
|
+
"is_current": false,
|
3398
|
+
"created_at": 1226202371,
|
3399
|
+
"updated_at": 1438041386
|
3400
|
+
},
|
3401
|
+
"relationships":
|
3402
|
+
{
|
3403
|
+
"person":
|
3404
|
+
{
|
3405
|
+
"type": "Person",
|
3406
|
+
"uuid": "77a3ab03a595bcef7080962fd1132d7f",
|
3407
|
+
"properties":
|
3408
|
+
{
|
3409
|
+
"permalink": "eston-bond",
|
3410
|
+
"api_path": "people/eston-bond",
|
3411
|
+
"web_path": "person/eston-bond",
|
3412
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/eston-bond",
|
3413
|
+
"first_name": "Eston",
|
3414
|
+
"last_name": "Bond",
|
3415
|
+
"gender": "Male",
|
3416
|
+
"also_known_as": null,
|
3417
|
+
"bio": "Currently, Mr. Bond contributes to the future success of [iSocket](/organization/isocket).\r\n\r\nHe previously served as Design Director of social classifieds startup [iList](/organization/ilist), where he helped create the Twitter game [Spymaster](http://www.playspymaster.com), and as a Product Designer at [Facebook](http://www.crunchbase.com/organization/facebook).\r\n\r\nEston blogs at [socialuxe](http://socialuxe.com/).",
|
3418
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397186158/7397baa8efd76c7db0c08413e609e000.jpg",
|
3419
|
+
"role_investor": false,
|
3420
|
+
"born_on": null,
|
3421
|
+
"born_on_trust_code": null,
|
3422
|
+
"died_on": null,
|
3423
|
+
"died_on_trust_code": null,
|
3424
|
+
"created_at": 1219366970,
|
3425
|
+
"updated_at": 1452588829
|
3426
|
+
}
|
3427
|
+
}
|
3428
|
+
}
|
3429
|
+
},
|
3430
|
+
{
|
3431
|
+
"type": "Job",
|
3432
|
+
"uuid": "c82742978f09a67ac1fea296e06ab35f",
|
3433
|
+
"properties":
|
3434
|
+
{
|
3435
|
+
"title": "Director of Developer Relations",
|
3436
|
+
"started_on": "2010-09-07",
|
3437
|
+
"started_on_trust_code": 7,
|
3438
|
+
"ended_on": "2012-02-01",
|
3439
|
+
"ended_on_trust_code": 7,
|
3440
|
+
"is_current": false,
|
3441
|
+
"created_at": 1334939806,
|
3442
|
+
"updated_at": 1438041721
|
3443
|
+
},
|
3444
|
+
"relationships":
|
3445
|
+
{
|
3446
|
+
"person":
|
3447
|
+
{
|
3448
|
+
"type": "Person",
|
3449
|
+
"uuid": "64ad1d5b8bcd77deeb032bdeba9540cd",
|
3450
|
+
"properties":
|
3451
|
+
{
|
3452
|
+
"permalink": "douglas-purdy",
|
3453
|
+
"api_path": "people/douglas-purdy",
|
3454
|
+
"web_path": "person/douglas-purdy",
|
3455
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/douglas-purdy",
|
3456
|
+
"first_name": "Douglas",
|
3457
|
+
"last_name": "Purdy",
|
3458
|
+
"gender": "Male",
|
3459
|
+
"also_known_as": null,
|
3460
|
+
"bio": "Doug Purdy is the Director of Product Management where he drives the development of Facebook Platform including the Open Graph, Games & Payments and Developer Experience. \r\n\r\nHe previously was a Director of Engineering and Director of Developer Relations at Facebook. \r\n\r\nPrior to joining Facebook, Doug spent 11 years at Microsoft in consulting, evangelism and engineering leadership roles building software development tools and frameworks.",
|
3461
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397180231/b66b393398bf43fbd640ea2b0484ea7a.jpg",
|
3462
|
+
"role_investor": true,
|
3463
|
+
"born_on": null,
|
3464
|
+
"born_on_trust_code": null,
|
3465
|
+
"died_on": null,
|
3466
|
+
"died_on_trust_code": null,
|
3467
|
+
"created_at": 1334965006,
|
3468
|
+
"updated_at": 1471632158
|
3469
|
+
}
|
3470
|
+
}
|
3471
|
+
}
|
3472
|
+
},
|
3473
|
+
{
|
3474
|
+
"type": "Job",
|
3475
|
+
"uuid": "df3da655a75d5374037fddd8261945fa",
|
3476
|
+
"properties":
|
3477
|
+
{
|
3478
|
+
"title": "Team Member",
|
3479
|
+
"started_on": null,
|
3480
|
+
"started_on_trust_code": null,
|
3481
|
+
"ended_on": null,
|
3482
|
+
"ended_on_trust_code": 0,
|
3483
|
+
"is_current": false,
|
3484
|
+
"created_at": 1447479050,
|
3485
|
+
"updated_at": 1447479050
|
3486
|
+
},
|
3487
|
+
"relationships":
|
3488
|
+
{
|
3489
|
+
"person":
|
3490
|
+
{
|
3491
|
+
"type": "Person",
|
3492
|
+
"uuid": "f5657dbda3e721f06c46b85a07d4c4b5",
|
3493
|
+
"properties":
|
3494
|
+
{
|
3495
|
+
"permalink": "frank-chimero",
|
3496
|
+
"api_path": "people/frank-chimero",
|
3497
|
+
"web_path": "person/frank-chimero",
|
3498
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/frank-chimero",
|
3499
|
+
"first_name": "Frank",
|
3500
|
+
"last_name": "Chimero",
|
3501
|
+
"gender": "Male",
|
3502
|
+
"also_known_as": null,
|
3503
|
+
"bio": "Frank Chimero is a designer, illustrator, and writer who focuses on designing websites and publications for clients.\r\n\r\n\r\nAs a teacher, Frank worked with undergraduates at Portland State and Missouri State University, and taught typography, design systems, information design, and thesis courses. He also taught thesis development at SVA’s MFA in Interaction Design program. Since then, he’s been doing workshops at schools around the country.\r\n\r\n\r\nIn 2011, he was honored with the Art Directors Club Young Guns award and featured in Print Magazine’s New Visual Artist issue, highlighting twenty designers under the age of thirty. In 2012, he published The Shape of Design, a design theory overview that focuses on storytelling, craft, and interdependency instead of typography, grids, or software.",
|
3504
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1419479655/kwcrqufilpvlcwwmhs9d.jpg",
|
3505
|
+
"role_investor": false,
|
3506
|
+
"born_on": null,
|
3507
|
+
"born_on_trust_code": null,
|
3508
|
+
"died_on": null,
|
3509
|
+
"died_on_trust_code": null,
|
3510
|
+
"created_at": 1419478447,
|
3511
|
+
"updated_at": 1447479056
|
3512
|
+
}
|
3513
|
+
}
|
3514
|
+
}
|
3515
|
+
},
|
3516
|
+
{
|
3517
|
+
"type": "Job",
|
3518
|
+
"uuid": "88ddf889094b61e1bbe2147717ab3dc1",
|
3519
|
+
"properties":
|
3520
|
+
{
|
3521
|
+
"title": "Engineering Manager, Mobile",
|
3522
|
+
"started_on": "2009-02-01",
|
3523
|
+
"started_on_trust_code": 6,
|
3524
|
+
"ended_on": "2012-11-01",
|
3525
|
+
"ended_on_trust_code": 6,
|
3526
|
+
"is_current": false,
|
3527
|
+
"created_at": 1495774052,
|
3528
|
+
"updated_at": 1495774052
|
3529
|
+
},
|
3530
|
+
"relationships":
|
3531
|
+
{
|
3532
|
+
"person":
|
3533
|
+
{
|
3534
|
+
"type": "Person",
|
3535
|
+
"uuid": "5180901c34fe097ada5f22b7e335db27",
|
3536
|
+
"properties":
|
3537
|
+
{
|
3538
|
+
"permalink": "dave-fetterman",
|
3539
|
+
"api_path": "people/dave-fetterman",
|
3540
|
+
"web_path": "person/dave-fetterman",
|
3541
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/dave-fetterman",
|
3542
|
+
"first_name": "Dave",
|
3543
|
+
"last_name": "Fetterman",
|
3544
|
+
"gender": "Male",
|
3545
|
+
"also_known_as": null,
|
3546
|
+
"bio": "Dave is an advisor to Quizlet on management, engineering, and recruiting. Previously Dave worked in engineering for seven years at Facebook, where he managed all mobile software development, ran the engineering hiring team, and started the Facebook Development Platform. He studied and taught math and computer science at Harvard University.",
|
3547
|
+
"profile_image_url": null,
|
3548
|
+
"role_investor": false,
|
3549
|
+
"born_on": null,
|
3550
|
+
"born_on_trust_code": null,
|
3551
|
+
"died_on": null,
|
3552
|
+
"died_on_trust_code": null,
|
3553
|
+
"created_at": 1374539360,
|
3554
|
+
"updated_at": 1508650957
|
3555
|
+
}
|
3556
|
+
}
|
3557
|
+
}
|
3558
|
+
},
|
3559
|
+
{
|
3560
|
+
"type": "Job",
|
3561
|
+
"uuid": "72347d4230cfae40f6ddf8a17b99626e",
|
3562
|
+
"properties":
|
3563
|
+
{
|
3564
|
+
"title": "Senior Product Designer",
|
3565
|
+
"started_on": "2009-08-13",
|
3566
|
+
"started_on_trust_code": 7,
|
3567
|
+
"ended_on": "2010-05-24",
|
3568
|
+
"ended_on_trust_code": 7,
|
3569
|
+
"is_current": false,
|
3570
|
+
"created_at": 1287302223,
|
3571
|
+
"updated_at": 1398005331
|
3572
|
+
},
|
3573
|
+
"relationships":
|
3574
|
+
{
|
3575
|
+
"person":
|
3576
|
+
{
|
3577
|
+
"type": "Person",
|
3578
|
+
"uuid": "cca14c1fb9abaad3307ad7e9fef80c9e",
|
3579
|
+
"properties":
|
3580
|
+
{
|
3581
|
+
"permalink": "kevin-fox",
|
3582
|
+
"api_path": "people/kevin-fox",
|
3583
|
+
"web_path": "person/kevin-fox",
|
3584
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/kevin-fox",
|
3585
|
+
"first_name": "Kevin",
|
3586
|
+
"last_name": "Fox",
|
3587
|
+
"gender": "Male",
|
3588
|
+
"also_known_as": null,
|
3589
|
+
"bio": "Kevin Fox is co-founder and Director of User Experience at Electric Imp, a company which aims to provide Internet connectivity to all devices. \r\n\r\nFox has previously webmastered for Levi Strauss, received a Bachelors in Cognitive Science at UC Berkeley, designed at [Yahoo](/organization/yahoo), and studied in HCI at Carnegie Mellon. He has worked for companies including [FriendFeed](/organization/friendfeed), [Mozilla](/organization/mozilla), and [Google](/organization/google), where he designed interfaces for [Gmail](/product/gmail), [Google Calendar](/product/google-calendar), [Google Reader](/product/google-reader), and other products.",
|
3590
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397183591/17c2c5aae56417f94d7236d57fa2e07d.png",
|
3591
|
+
"role_investor": false,
|
3592
|
+
"born_on": null,
|
3593
|
+
"born_on_trust_code": null,
|
3594
|
+
"died_on": null,
|
3595
|
+
"died_on_trust_code": null,
|
3596
|
+
"created_at": 1207517608,
|
3597
|
+
"updated_at": 1501092492
|
3598
|
+
}
|
3599
|
+
}
|
3600
|
+
}
|
3601
|
+
},
|
3602
|
+
{
|
3603
|
+
"type": "Job",
|
3604
|
+
"uuid": "373cadf98d40aa8ca0e16a5d591006dc",
|
3605
|
+
"properties":
|
3606
|
+
{
|
3607
|
+
"title": "Global Marketing Solutions",
|
3608
|
+
"started_on": "2010-01-01",
|
3609
|
+
"started_on_trust_code": 5,
|
3610
|
+
"ended_on": "2012-09-01",
|
3611
|
+
"ended_on_trust_code": 7,
|
3612
|
+
"is_current": false,
|
3613
|
+
"created_at": 1383730815,
|
3614
|
+
"updated_at": 1438041947
|
3615
|
+
},
|
3616
|
+
"relationships":
|
3617
|
+
{
|
3618
|
+
"person":
|
3619
|
+
{
|
3620
|
+
"type": "Person",
|
3621
|
+
"uuid": "3d5063229abd617c419eb5a9c7e29d44",
|
3622
|
+
"properties":
|
3623
|
+
{
|
3624
|
+
"permalink": "miriam-grut-norrby",
|
3625
|
+
"api_path": "people/miriam-grut-norrby",
|
3626
|
+
"web_path": "person/miriam-grut-norrby",
|
3627
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/miriam-grut-norrby",
|
3628
|
+
"first_name": "Miriam",
|
3629
|
+
"last_name": "Grut Norrby",
|
3630
|
+
"gender": "Female",
|
3631
|
+
"also_known_as": null,
|
3632
|
+
"bio": "Miriam is an investor, a former entrepreneur and internet/media executive. She joined Schibsted in 2012 as an Investment Manager at Schibsted Growth, which is Schibsted Media Group's venture company for investing in and managing a portfolio of fast growing digital companies. Over the years Schibsted Growth has made investments in companies like Blocket, Bytbil, Hitta.se, Mötesplatsen, Prisjakt, TV.nu, Webtraffic, Lendo, Servicefinder, Let's Deal, Compricer and many more. The portfolio currently consists of over 25 companies and Schibsted is actively looking for new investment opportunities. \r\n\r\nPrior to joining Schibsted, Miriam worked on the Global Marketing Solutions team at Facebook. Co-founded a digital agency and a management consultancy firm, served as CEO of an IT startup and held different positions within sales and marketing.",
|
3633
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1459998486/fr1umkzmlptwdg3zgeyy.jpg",
|
3634
|
+
"role_investor": false,
|
3635
|
+
"born_on": null,
|
3636
|
+
"born_on_trust_code": null,
|
3637
|
+
"died_on": null,
|
3638
|
+
"died_on_trust_code": null,
|
3639
|
+
"created_at": 1383759615,
|
3640
|
+
"updated_at": 1476262122
|
3641
|
+
}
|
3642
|
+
}
|
3643
|
+
}
|
3644
|
+
},
|
3645
|
+
{
|
3646
|
+
"type": "Job",
|
3647
|
+
"uuid": "e630b3d7bc1206e160cba90da5e88f8f",
|
3648
|
+
"properties":
|
3649
|
+
{
|
3650
|
+
"title": "Engineer",
|
3651
|
+
"started_on": "2007-06-01",
|
3652
|
+
"started_on_trust_code": 7,
|
3653
|
+
"ended_on": "2010-01-01",
|
3654
|
+
"ended_on_trust_code": 5,
|
3655
|
+
"is_current": false,
|
3656
|
+
"created_at": 1372880057,
|
3657
|
+
"updated_at": 1437764865
|
3658
|
+
},
|
3659
|
+
"relationships":
|
3660
|
+
{
|
3661
|
+
"person":
|
3662
|
+
{
|
3663
|
+
"type": "Person",
|
3664
|
+
"uuid": "7baa67fdd6273085b4ba9e02c4d200cb",
|
3665
|
+
"properties":
|
3666
|
+
{
|
3667
|
+
"permalink": "justin-mitchell",
|
3668
|
+
"api_path": "people/justin-mitchell",
|
3669
|
+
"web_path": "person/justin-mitchell",
|
3670
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/justin-mitchell",
|
3671
|
+
"first_name": "Justin",
|
3672
|
+
"last_name": "Mitchell",
|
3673
|
+
"gender": "Male",
|
3674
|
+
"also_known_as": null,
|
3675
|
+
"bio": "Justin Mitchell is a co-founder of [Pave](https://www.crunchbase.com/organization/pave). He is also a founding partner of A# Capital. Previously, Mitchell served as a photos and video engineering manager and engineer at [Facebook](https://www.crunchbase.com/organization/facebook).\n\nMitchell earned his bachelor’s degree in computer science from [Georgia Institute of Technology](https://www.crunchbase.com/organization/georgia-institute-of-technology).",
|
3676
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1428272506/bjkvvwhsnnzut0yonyab.jpg",
|
3677
|
+
"role_investor": true,
|
3678
|
+
"born_on": null,
|
3679
|
+
"born_on_trust_code": null,
|
3680
|
+
"died_on": null,
|
3681
|
+
"died_on_trust_code": null,
|
3682
|
+
"created_at": 1365065702,
|
3683
|
+
"updated_at": 1466905992
|
3684
|
+
}
|
3685
|
+
}
|
3686
|
+
}
|
3687
|
+
},
|
3688
|
+
{
|
3689
|
+
"type": "Job",
|
3690
|
+
"uuid": "6ab49e7cced4356a2e310a5bae6ef1b8",
|
3691
|
+
"properties":
|
3692
|
+
{
|
3693
|
+
"title": "Product Designer",
|
3694
|
+
"started_on": "2013-08-01",
|
3695
|
+
"started_on_trust_code": 6,
|
3696
|
+
"ended_on": "2015-09-01",
|
3697
|
+
"ended_on_trust_code": 6,
|
3698
|
+
"is_current": false,
|
3699
|
+
"created_at": 1453668315,
|
3700
|
+
"updated_at": 1453668315
|
3701
|
+
},
|
3702
|
+
"relationships":
|
3703
|
+
{
|
3704
|
+
"person":
|
3705
|
+
{
|
3706
|
+
"type": "Person",
|
3707
|
+
"uuid": "a3724659b7b94b97d4f87bde7783c54e",
|
3708
|
+
"properties":
|
3709
|
+
{
|
3710
|
+
"permalink": "chris-masterson",
|
3711
|
+
"api_path": "people/chris-masterson",
|
3712
|
+
"web_path": "person/chris-masterson",
|
3713
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/chris-masterson",
|
3714
|
+
"first_name": "Chris",
|
3715
|
+
"last_name": "Masterson",
|
3716
|
+
"gender": "Male",
|
3717
|
+
"also_known_as": null,
|
3718
|
+
"bio": null,
|
3719
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1453656349/yptx9bwcgmjpolbvseme.jpg",
|
3720
|
+
"role_investor": false,
|
3721
|
+
"born_on": null,
|
3722
|
+
"born_on_trust_code": null,
|
3723
|
+
"died_on": null,
|
3724
|
+
"died_on_trust_code": null,
|
3725
|
+
"created_at": 1453656359,
|
3726
|
+
"updated_at": 1453668519
|
3727
|
+
}
|
3728
|
+
}
|
3729
|
+
}
|
3730
|
+
},
|
3731
|
+
{
|
3732
|
+
"type": "Job",
|
3733
|
+
"uuid": "90ef5e9c037373f706adf765edc41ee6",
|
3734
|
+
"properties":
|
3735
|
+
{
|
3736
|
+
"title": "Growth",
|
3737
|
+
"started_on": "2012-01-01",
|
3738
|
+
"started_on_trust_code": 5,
|
3739
|
+
"ended_on": null,
|
3740
|
+
"ended_on_trust_code": 0,
|
3741
|
+
"is_current": false,
|
3742
|
+
"created_at": 1375201669,
|
3743
|
+
"updated_at": 1462936827
|
3744
|
+
},
|
3745
|
+
"relationships":
|
3746
|
+
{
|
3747
|
+
"person":
|
3748
|
+
{
|
3749
|
+
"type": "Person",
|
3750
|
+
"uuid": "0300608a9625ad200a3614332c17b983",
|
3751
|
+
"properties":
|
3752
|
+
{
|
3753
|
+
"permalink": "rob-goldman",
|
3754
|
+
"api_path": "people/rob-goldman",
|
3755
|
+
"web_path": "person/rob-goldman",
|
3756
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/rob-goldman",
|
3757
|
+
"first_name": "Rob",
|
3758
|
+
"last_name": "Goldman",
|
3759
|
+
"gender": "Male",
|
3760
|
+
"also_known_as": null,
|
3761
|
+
"bio": "Rob Goldman is the creator and Founder of Threadsy, an online messaging service in private beta. \r\n\r\nGoldman also co-founded [Geodelic](http://www.crunchbase.com/organization/geodelic-systems), where he currently serves as a board member. \r\n\r\nPrior to Threadsy and Geodelic, Goldman held various executive positions at [Shopping.com](http://www.crunchbase.com/organization/shopping-com) from 2001 through their IPO and subsequent acquisition by \r\n [eBay](http://www.crunchbase.com/organization/ebay), where he ran Shopping.com's US business Unit from 2006 to 2007.",
|
3762
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1474263483/ok97xehvgizhydrovies.png",
|
3763
|
+
"role_investor": true,
|
3764
|
+
"born_on": null,
|
3765
|
+
"born_on_trust_code": null,
|
3766
|
+
"died_on": null,
|
3767
|
+
"died_on_trust_code": null,
|
3768
|
+
"created_at": 1247806996,
|
3769
|
+
"updated_at": 1495693472
|
3770
|
+
}
|
3771
|
+
}
|
3772
|
+
}
|
3773
|
+
},
|
3774
|
+
{
|
3775
|
+
"type": "Job",
|
3776
|
+
"uuid": "3905fe8b1f5bd69b16748acee404e4ff",
|
3777
|
+
"properties":
|
3778
|
+
{
|
3779
|
+
"title": "Manager Hardware Designs",
|
3780
|
+
"started_on": "2009-03-01",
|
3781
|
+
"started_on_trust_code": 6,
|
3782
|
+
"ended_on": "2013-04-01",
|
3783
|
+
"ended_on_trust_code": 6,
|
3784
|
+
"is_current": false,
|
3785
|
+
"created_at": 1460155091,
|
3786
|
+
"updated_at": 1460155091
|
3787
|
+
},
|
3788
|
+
"relationships":
|
3789
|
+
{
|
3790
|
+
"person":
|
3791
|
+
{
|
3792
|
+
"type": "Person",
|
3793
|
+
"uuid": "ad7682faf2a714f131ae871933598e41",
|
3794
|
+
"properties":
|
3795
|
+
{
|
3796
|
+
"permalink": "amir-michael",
|
3797
|
+
"api_path": "people/amir-michael",
|
3798
|
+
"web_path": "person/amir-michael",
|
3799
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/amir-michael",
|
3800
|
+
"first_name": "Amir",
|
3801
|
+
"last_name": "Michael",
|
3802
|
+
"gender": "Male",
|
3803
|
+
"also_known_as": null,
|
3804
|
+
"bio": "Before co-founding Coolan, Amir led Facebook's hardware teams responsible for the design and implementation of servers that power some of the most-trafficked sites in the world. He co-founded the Open Compute Project and plays an active role in sharing custom-engineered technology for large-scale data centers. Amir also worked at Google where he developed server and data center infrastructure",
|
3805
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1482145344/lino582k8uhoccgyvzux.png",
|
3806
|
+
"role_investor": false,
|
3807
|
+
"born_on": null,
|
3808
|
+
"born_on_trust_code": null,
|
3809
|
+
"died_on": null,
|
3810
|
+
"died_on_trust_code": null,
|
3811
|
+
"created_at": 1431145552,
|
3812
|
+
"updated_at": 1497906475
|
3813
|
+
}
|
3814
|
+
}
|
3815
|
+
}
|
3816
|
+
},
|
3817
|
+
{
|
3818
|
+
"type": "Job",
|
3819
|
+
"uuid": "423d125c5d7ab9c9935c29196643bfb3",
|
3820
|
+
"properties":
|
3821
|
+
{
|
3822
|
+
"title": "Business Development & Business Operations",
|
3823
|
+
"started_on": null,
|
3824
|
+
"started_on_trust_code": null,
|
3825
|
+
"ended_on": null,
|
3826
|
+
"ended_on_trust_code": 0,
|
3827
|
+
"is_current": false,
|
3828
|
+
"created_at": 1375266631,
|
3829
|
+
"updated_at": 1425919309
|
3830
|
+
},
|
3831
|
+
"relationships":
|
3832
|
+
{
|
3833
|
+
"person":
|
3834
|
+
{
|
3835
|
+
"type": "Person",
|
3836
|
+
"uuid": "b85ba259d298455a7203f49081141049",
|
3837
|
+
"properties":
|
3838
|
+
{
|
3839
|
+
"permalink": "michael-teng",
|
3840
|
+
"api_path": "people/michael-teng",
|
3841
|
+
"web_path": "person/michael-teng",
|
3842
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/michael-teng",
|
3843
|
+
"first_name": "Michael",
|
3844
|
+
"last_name": "Teng",
|
3845
|
+
"gender": "Male",
|
3846
|
+
"also_known_as": null,
|
3847
|
+
"bio": "Michael Teng is the vice president of partnerships at [Counsyl](https://www.crunchbase.com/organization/counsyl), a health technology company that offers DNA screening for men, women, and children. He was previously employed as a technology analyst at Morgan Stanley after which he joined Facebook as a business development associate.\n\nTeng holds a bachelor’s degree in economics from the University of Stanford.",
|
3848
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397188483/6f16436fdaf4df7eac9befcc4ce513ac.jpg",
|
3849
|
+
"role_investor": false,
|
3850
|
+
"born_on": null,
|
3851
|
+
"born_on_trust_code": null,
|
3852
|
+
"died_on": null,
|
3853
|
+
"died_on_trust_code": null,
|
3854
|
+
"created_at": 1375272782,
|
3855
|
+
"updated_at": 1466906110
|
3856
|
+
}
|
3857
|
+
}
|
3858
|
+
}
|
3859
|
+
},
|
3860
|
+
{
|
3861
|
+
"type": "Job",
|
3862
|
+
"uuid": "de4ae05913e7479f4d2e0a4605f59517",
|
3863
|
+
"properties":
|
3864
|
+
{
|
3865
|
+
"title": "Sales Operations",
|
3866
|
+
"started_on": "2014-08-01",
|
3867
|
+
"started_on_trust_code": 6,
|
3868
|
+
"ended_on": "2015-12-01",
|
3869
|
+
"ended_on_trust_code": 6,
|
3870
|
+
"is_current": false,
|
3871
|
+
"created_at": 1458306042,
|
3872
|
+
"updated_at": 1458306042
|
3873
|
+
},
|
3874
|
+
"relationships":
|
3875
|
+
{
|
3876
|
+
"person":
|
3877
|
+
{
|
3878
|
+
"type": "Person",
|
3879
|
+
"uuid": "b407a8a48266a2987193ad333a60904b",
|
3880
|
+
"properties":
|
3881
|
+
{
|
3882
|
+
"permalink": "tim-milazzo",
|
3883
|
+
"api_path": "people/tim-milazzo",
|
3884
|
+
"web_path": "person/tim-milazzo",
|
3885
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/tim-milazzo",
|
3886
|
+
"first_name": "Tim",
|
3887
|
+
"last_name": "Milazzo",
|
3888
|
+
"gender": "Male",
|
3889
|
+
"also_known_as": null,
|
3890
|
+
"bio": "Google, LiveRail -> Facebook, StackSource",
|
3891
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1453830994/snuusalpuu9i5dhvnl3m.jpg",
|
3892
|
+
"role_investor": false,
|
3893
|
+
"born_on": null,
|
3894
|
+
"born_on_trust_code": null,
|
3895
|
+
"died_on": null,
|
3896
|
+
"died_on_trust_code": null,
|
3897
|
+
"created_at": 1453831022,
|
3898
|
+
"updated_at": 1491415506
|
3899
|
+
}
|
3900
|
+
}
|
3901
|
+
}
|
3902
|
+
},
|
3903
|
+
{
|
3904
|
+
"type": "Job",
|
3905
|
+
"uuid": "c6c65ab20ebcffe08a079e8183e30042",
|
3906
|
+
"properties":
|
3907
|
+
{
|
3908
|
+
"title": "Global Diversity Program Manager",
|
3909
|
+
"started_on": "2014-08-01",
|
3910
|
+
"started_on_trust_code": 6,
|
3911
|
+
"ended_on": "2015-12-01",
|
3912
|
+
"ended_on_trust_code": 6,
|
3913
|
+
"is_current": false,
|
3914
|
+
"created_at": 1449086471,
|
3915
|
+
"updated_at": 1449086471
|
3916
|
+
},
|
3917
|
+
"relationships":
|
3918
|
+
{
|
3919
|
+
"person":
|
3920
|
+
{
|
3921
|
+
"type": "Person",
|
3922
|
+
"uuid": "f9e4eb13a76c7feb16a0bf7322cf3099",
|
3923
|
+
"properties":
|
3924
|
+
{
|
3925
|
+
"permalink": "sonja-gittens-ottley",
|
3926
|
+
"api_path": "people/sonja-gittens-ottley",
|
3927
|
+
"web_path": "person/sonja-gittens-ottley",
|
3928
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/sonja-gittens-ottley",
|
3929
|
+
"first_name": "Sonja",
|
3930
|
+
"last_name": "Gittens-Ottley",
|
3931
|
+
"gender": "Female",
|
3932
|
+
"also_known_as": null,
|
3933
|
+
"bio": "With a law degree from Hugh Wooding Law School, Sonja Gittens-Ottley served as an attorney for over 9 years before Yahoo's legal team, then Yahoo's Global Policy Counsel. In 2014, Sonja was tapped to be the Global Diversity Program Manager of Facebook. In late 2015, Sonja was appointed Asana's first-ever Head of Diversity and Inclusion.",
|
3934
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1476767832/hngles4dezd1jek450fw.png",
|
3935
|
+
"role_investor": false,
|
3936
|
+
"born_on": null,
|
3937
|
+
"born_on_trust_code": null,
|
3938
|
+
"died_on": null,
|
3939
|
+
"died_on_trust_code": null,
|
3940
|
+
"created_at": 1449086389,
|
3941
|
+
"updated_at": 1508304954
|
3942
|
+
}
|
3943
|
+
}
|
3944
|
+
}
|
3945
|
+
},
|
3946
|
+
{
|
3947
|
+
"type": "Job",
|
3948
|
+
"uuid": "7cd2daec8925cd45b9c5f6c7a878e03d",
|
3949
|
+
"properties":
|
3950
|
+
{
|
3951
|
+
"title": "Head of Product and Mobile Operations",
|
3952
|
+
"started_on": "2010-01-01",
|
3953
|
+
"started_on_trust_code": 5,
|
3954
|
+
"ended_on": "2013-01-01",
|
3955
|
+
"ended_on_trust_code": 5,
|
3956
|
+
"is_current": false,
|
3957
|
+
"created_at": 1348446542,
|
3958
|
+
"updated_at": 1434173542
|
3959
|
+
},
|
3960
|
+
"relationships":
|
3961
|
+
{
|
3962
|
+
"person":
|
3963
|
+
{
|
3964
|
+
"type": "Person",
|
3965
|
+
"uuid": "9ab09e3021aaa6ce4f78d3a574109855",
|
3966
|
+
"properties":
|
3967
|
+
{
|
3968
|
+
"permalink": "amber-saloner",
|
3969
|
+
"api_path": "people/amber-saloner",
|
3970
|
+
"web_path": "person/amber-saloner",
|
3971
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/amber-saloner",
|
3972
|
+
"first_name": "Amber",
|
3973
|
+
"last_name": "Saloner Tennant",
|
3974
|
+
"gender": "Female",
|
3975
|
+
"also_known_as": null,
|
3976
|
+
"bio": "Amber Saloner Tennant is Vice President of People Operations at Coursera. Amber's team supports the development of people processes and culture at Coursera to build an environment in which employees thrive. She formerly served as Coursera's Vice President of Operations. Prior to joining Coursera, Amber started and ran several operating functions at Facebook, Inc. Her last role was Director of User Operations where she oversaw a team of 250 people, across four global offices, supporting the company's more than 1 billion users. She also ran Product and Mobile Operations, an organization responsible for improving product quality, developing operational systems to support new products, producing the Help Center, and supporting Facebook’s users in Asia Pacific. Before Facebook, Amber worked at Teach For America, where she led Pacific coast recruitment. She also served for two years as a Teach For America corps member, teaching fourth and fifth grade in Bedford-Stuyvesant, Brooklyn. Amber received her Bachelor’s and MBA degrees from Stanford University. She sits on the board of CODE2040, which aims to close the achievement, wealth, and skills gaps for Blacks and Latinos in the United States by creating access, awareness, and opportunities in technology and engineering.",
|
3977
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1469512488/xpwcwtzytssobibjaeuc.png",
|
3978
|
+
"role_investor": false,
|
3979
|
+
"born_on": null,
|
3980
|
+
"born_on_trust_code": null,
|
3981
|
+
"died_on": null,
|
3982
|
+
"died_on_trust_code": null,
|
3983
|
+
"created_at": 1346121499,
|
3984
|
+
"updated_at": 1469512586
|
3985
|
+
}
|
3986
|
+
}
|
3987
|
+
}
|
3988
|
+
},
|
3989
|
+
{
|
3990
|
+
"type": "Job",
|
3991
|
+
"uuid": "4027ae573cbe8d9b2535bb7932dd81e5",
|
3992
|
+
"properties":
|
3993
|
+
{
|
3994
|
+
"title": "Corporate Development & Technical Recruiting",
|
3995
|
+
"started_on": "2013-05-01",
|
3996
|
+
"started_on_trust_code": 7,
|
3997
|
+
"ended_on": "2014-10-01",
|
3998
|
+
"ended_on_trust_code": 6,
|
3999
|
+
"is_current": false,
|
4000
|
+
"created_at": 1428673998,
|
4001
|
+
"updated_at": 1438044111
|
4002
|
+
},
|
4003
|
+
"relationships":
|
4004
|
+
{
|
4005
|
+
"person":
|
4006
|
+
{
|
4007
|
+
"type": "Person",
|
4008
|
+
"uuid": "993ae744fd8c14ef472cb086cf5e3e8b",
|
4009
|
+
"properties":
|
4010
|
+
{
|
4011
|
+
"permalink": "ash-hogan",
|
4012
|
+
"api_path": "people/ash-hogan",
|
4013
|
+
"web_path": "person/ash-hogan",
|
4014
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/ash-hogan",
|
4015
|
+
"first_name": "Ash",
|
4016
|
+
"last_name": "Hogan",
|
4017
|
+
"gender": "Male",
|
4018
|
+
"also_known_as": null,
|
4019
|
+
"bio": null,
|
4020
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1428673804/wc3cr1u1oryepp5nfpv7.jpg",
|
4021
|
+
"role_investor": false,
|
4022
|
+
"born_on": "1976-07-05",
|
4023
|
+
"born_on_trust_code": 7,
|
4024
|
+
"died_on": null,
|
4025
|
+
"died_on_trust_code": null,
|
4026
|
+
"created_at": 1428673842,
|
4027
|
+
"updated_at": 1428674031
|
4028
|
+
}
|
4029
|
+
}
|
4030
|
+
}
|
4031
|
+
},
|
4032
|
+
{
|
4033
|
+
"type": "Job",
|
4034
|
+
"uuid": "79ab67e10fb762866860d465620ea3a8",
|
4035
|
+
"properties":
|
4036
|
+
{
|
4037
|
+
"title": "Strategy & Business Development",
|
4038
|
+
"started_on": "2012-01-01",
|
4039
|
+
"started_on_trust_code": 5,
|
4040
|
+
"ended_on": "2012-01-01",
|
4041
|
+
"ended_on_trust_code": 5,
|
4042
|
+
"is_current": false,
|
4043
|
+
"created_at": 1373724207,
|
4044
|
+
"updated_at": 1434172948
|
4045
|
+
},
|
4046
|
+
"relationships":
|
4047
|
+
{
|
4048
|
+
"person":
|
4049
|
+
{
|
4050
|
+
"type": "Person",
|
4051
|
+
"uuid": "504568383222362bc15c1c9e7b42babc",
|
4052
|
+
"properties":
|
4053
|
+
{
|
4054
|
+
"permalink": "john-henderson-2",
|
4055
|
+
"api_path": "people/john-henderson-2",
|
4056
|
+
"web_path": "person/john-henderson-2",
|
4057
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/john-henderson-2",
|
4058
|
+
"first_name": "John",
|
4059
|
+
"last_name": "Henderson",
|
4060
|
+
"gender": "Male",
|
4061
|
+
"also_known_as": null,
|
4062
|
+
"bio": "John is a Partner at Airtree Ventures. He works with the best Australian and Kiwi founders to create world class technology businesses. John was previously a Principal at White Star Capital in London and New York and also co-founded London.ai, Europe’s leading event for the AI community which is held quarterly in London. Prior to his current roles, John was the COO of Summly (acquired by Yahoo in May 2013) and has also held roles at Facebook, The Boston Consulting Group and as a lawyer at Linklaters. John also co-founded Bush Campus whose failure perhaps taught him more than the rest of his experiences combined.",
|
4063
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1474331272/lfnopeyzngfaaxmn7bqh.jpg",
|
4064
|
+
"role_investor": true,
|
4065
|
+
"born_on": null,
|
4066
|
+
"born_on_trust_code": null,
|
4067
|
+
"died_on": null,
|
4068
|
+
"died_on_trust_code": null,
|
4069
|
+
"created_at": 1351368469,
|
4070
|
+
"updated_at": 1509126412
|
4071
|
+
}
|
4072
|
+
}
|
4073
|
+
}
|
4074
|
+
},
|
4075
|
+
{
|
4076
|
+
"type": "Job",
|
4077
|
+
"uuid": "009b372b0ee6bf03f60346b3a1730f41",
|
4078
|
+
"properties":
|
4079
|
+
{
|
4080
|
+
"title": "Software Engineer",
|
4081
|
+
"started_on": null,
|
4082
|
+
"started_on_trust_code": null,
|
4083
|
+
"ended_on": null,
|
4084
|
+
"ended_on_trust_code": 0,
|
4085
|
+
"is_current": false,
|
4086
|
+
"created_at": 1444813777,
|
4087
|
+
"updated_at": 1444813777
|
4088
|
+
},
|
4089
|
+
"relationships":
|
4090
|
+
{
|
4091
|
+
"person":
|
4092
|
+
{
|
4093
|
+
"type": "Person",
|
4094
|
+
"uuid": "f11d4e9e5756b37dc29817b2a26f4c28",
|
4095
|
+
"properties":
|
4096
|
+
{
|
4097
|
+
"permalink": "perry-tam",
|
4098
|
+
"api_path": "people/perry-tam",
|
4099
|
+
"web_path": "person/perry-tam",
|
4100
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/perry-tam",
|
4101
|
+
"first_name": "Perry",
|
4102
|
+
"last_name": "Tam",
|
4103
|
+
"gender": "Male",
|
4104
|
+
"also_known_as": null,
|
4105
|
+
"bio": "Perry Tam is CEO and co-founder of leading mobile game network Storm8. Storm8’s games have been downloaded more than 1 billion times across iOS and Android. \r\n\r\nBefore co-founding Storm8, Perry was an engineer at Facebook, where he led the payments team that architected Facebook Credits. \r\n\r\nPreviously, he held engineering roles at Guidewire Software and Oracle. The author of four patents, Perry received his undergraduate degree from Cornell University.",
|
4106
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1406229802/nc6trcfhk2n9nzvqxc9n.jpg",
|
4107
|
+
"role_investor": true,
|
4108
|
+
"born_on": null,
|
4109
|
+
"born_on_trust_code": null,
|
4110
|
+
"died_on": null,
|
4111
|
+
"died_on_trust_code": null,
|
4112
|
+
"created_at": 1327564121,
|
4113
|
+
"updated_at": 1505190895
|
4114
|
+
}
|
4115
|
+
}
|
4116
|
+
}
|
4117
|
+
},
|
4118
|
+
{
|
4119
|
+
"type": "Job",
|
4120
|
+
"uuid": "1642e89eabb835b00c09dec5084c16db",
|
4121
|
+
"properties":
|
4122
|
+
{
|
4123
|
+
"title": "Client Solutions Manager",
|
4124
|
+
"started_on": null,
|
4125
|
+
"started_on_trust_code": null,
|
4126
|
+
"ended_on": null,
|
4127
|
+
"ended_on_trust_code": 0,
|
4128
|
+
"is_current": false,
|
4129
|
+
"created_at": 1415918463,
|
4130
|
+
"updated_at": 1415918463
|
4131
|
+
},
|
4132
|
+
"relationships":
|
4133
|
+
{
|
4134
|
+
"person":
|
4135
|
+
{
|
4136
|
+
"type": "Person",
|
4137
|
+
"uuid": "48cb273afe20fd50fde39ce961c189f7",
|
4138
|
+
"properties":
|
4139
|
+
{
|
4140
|
+
"permalink": "arianna-simpson",
|
4141
|
+
"api_path": "people/arianna-simpson",
|
4142
|
+
"web_path": "person/arianna-simpson",
|
4143
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/arianna-simpson",
|
4144
|
+
"first_name": "Arianna",
|
4145
|
+
"last_name": "Simpson",
|
4146
|
+
"gender": "Female",
|
4147
|
+
"also_known_as": null,
|
4148
|
+
"bio": "Arianna Simpson is an account specialist at BitGo, a security-as-a-service provider for Bitcoin and digital currency. Prior to that, she worked at Facebook in Global Marketing Solutions and at Shoptiques in the sales and partner operations. She co-founded Penn State Journal of International Affairs in 2010.\r\n\r\n\r\nSimpson is a regular contributor to publications such as Business Insider, Women2.0, and CoinDesk. She frequently speaks on bitcoin and crypto currency related topics.\r\n\r\n\r\nSimpson studied at American School of Milan and Penn State Schreyer Honors College. She is proficient in Italian, English, and Spanish.\r\n\r\n\r\nArianna Simpson lives in California, United States.",
|
4149
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397183705/4af97a833123f116fc4e491f6ce178f2.png",
|
4150
|
+
"role_investor": false,
|
4151
|
+
"born_on": null,
|
4152
|
+
"born_on_trust_code": null,
|
4153
|
+
"died_on": null,
|
4154
|
+
"died_on_trust_code": null,
|
4155
|
+
"created_at": 1345581821,
|
4156
|
+
"updated_at": 1506420982
|
4157
|
+
}
|
4158
|
+
}
|
4159
|
+
}
|
4160
|
+
},
|
4161
|
+
{
|
4162
|
+
"type": "Job",
|
4163
|
+
"uuid": "de4420d82cb4f35d5b521f28763d00c9",
|
4164
|
+
"properties":
|
4165
|
+
{
|
4166
|
+
"title": "Communication Designer",
|
4167
|
+
"started_on": "2011-01-01",
|
4168
|
+
"started_on_trust_code": 5,
|
4169
|
+
"ended_on": "2013-10-31",
|
4170
|
+
"ended_on_trust_code": 7,
|
4171
|
+
"is_current": false,
|
4172
|
+
"created_at": 1394866805,
|
4173
|
+
"updated_at": 1434156395
|
4174
|
+
},
|
4175
|
+
"relationships":
|
4176
|
+
{
|
4177
|
+
"person":
|
4178
|
+
{
|
4179
|
+
"type": "Person",
|
4180
|
+
"uuid": "1c3909fb895c8abeebe6346223355e83",
|
4181
|
+
"properties":
|
4182
|
+
{
|
4183
|
+
"permalink": "jim-renaud",
|
4184
|
+
"api_path": "people/jim-renaud",
|
4185
|
+
"web_path": "person/jim-renaud",
|
4186
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/jim-renaud",
|
4187
|
+
"first_name": "Jim",
|
4188
|
+
"last_name": "Renaud",
|
4189
|
+
"gender": "Male",
|
4190
|
+
"also_known_as": null,
|
4191
|
+
"bio": "Jim Renaud is a graphic designer who was the Creative Director for TNS, a Strategic Partner at Happy Cog, a Communications Designer at Facebook and now the Design Manager at Asana.",
|
4192
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397750399/a252cdf1bd37a7dc51fa67d94ebf4ab1.jpg",
|
4193
|
+
"role_investor": false,
|
4194
|
+
"born_on": null,
|
4195
|
+
"born_on_trust_code": null,
|
4196
|
+
"died_on": null,
|
4197
|
+
"died_on_trust_code": null,
|
4198
|
+
"created_at": 1394892005,
|
4199
|
+
"updated_at": 1451032279
|
4200
|
+
}
|
4201
|
+
}
|
4202
|
+
}
|
4203
|
+
},
|
4204
|
+
{
|
4205
|
+
"type": "Job",
|
4206
|
+
"uuid": "61420d4f3a4e666ed7c93f0aadb98ad9",
|
4207
|
+
"properties":
|
4208
|
+
{
|
4209
|
+
"title": "Product Designer",
|
4210
|
+
"started_on": "2008-01-01",
|
4211
|
+
"started_on_trust_code": 5,
|
4212
|
+
"ended_on": "2012-01-01",
|
4213
|
+
"ended_on_trust_code": 5,
|
4214
|
+
"is_current": false,
|
4215
|
+
"created_at": 1226017356,
|
4216
|
+
"updated_at": 1445286330
|
4217
|
+
},
|
4218
|
+
"relationships":
|
4219
|
+
{
|
4220
|
+
"person":
|
4221
|
+
{
|
4222
|
+
"type": "Person",
|
4223
|
+
"uuid": "eb455ae429f83407a750d01605801172",
|
4224
|
+
"properties":
|
4225
|
+
{
|
4226
|
+
"permalink": "rob-goodlatte",
|
4227
|
+
"api_path": "people/rob-goodlatte",
|
4228
|
+
"web_path": "person/rob-goodlatte",
|
4229
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/rob-goodlatte",
|
4230
|
+
"first_name": "Bobby",
|
4231
|
+
"last_name": "Goodlatte",
|
4232
|
+
"gender": "Male",
|
4233
|
+
"also_known_as": null,
|
4234
|
+
"bio": "CEO of Openvote. Early product designer at @Facebook & former Designer in Residence at @Greylock Partners",
|
4235
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1419105183/uwozxbwxnrqhdx8dly3b.jpg",
|
4236
|
+
"role_investor": true,
|
4237
|
+
"born_on": "1986-06-30",
|
4238
|
+
"born_on_trust_code": 7,
|
4239
|
+
"died_on": null,
|
4240
|
+
"died_on_trust_code": null,
|
4241
|
+
"created_at": 1208767195,
|
4242
|
+
"updated_at": 1479472217
|
4243
|
+
}
|
4244
|
+
}
|
4245
|
+
}
|
4246
|
+
},
|
4247
|
+
{
|
4248
|
+
"type": "Job",
|
4249
|
+
"uuid": "9400acf28631e270286cee2451012bf8",
|
4250
|
+
"properties":
|
4251
|
+
{
|
4252
|
+
"title": "Head - Consumer Marketing",
|
4253
|
+
"started_on": "2012-02-01",
|
4254
|
+
"started_on_trust_code": 6,
|
4255
|
+
"ended_on": "2017-01-01",
|
4256
|
+
"ended_on_trust_code": 5,
|
4257
|
+
"is_current": false,
|
4258
|
+
"created_at": 1447738311,
|
4259
|
+
"updated_at": 1504206827
|
4260
|
+
},
|
4261
|
+
"relationships":
|
4262
|
+
{
|
4263
|
+
"person":
|
4264
|
+
{
|
4265
|
+
"type": "Person",
|
4266
|
+
"uuid": "9d46161abb8e3b6d4b62f0163901c2f4",
|
4267
|
+
"properties":
|
4268
|
+
{
|
4269
|
+
"permalink": "rebecca-dyck",
|
4270
|
+
"api_path": "people/rebecca-dyck",
|
4271
|
+
"web_path": "person/rebecca-dyck",
|
4272
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/rebecca-dyck",
|
4273
|
+
"first_name": "Rebecca",
|
4274
|
+
"last_name": "Dyck",
|
4275
|
+
"gender": "Female",
|
4276
|
+
"also_known_as": [
|
4277
|
+
"Rebecca Van Dyck"
|
4278
|
+
],
|
4279
|
+
"bio": "Rebecca Van Dyck is the Head of Consumer Marketing at Facebook since February 2012. \r\n\r\nBefore joining Facebook, Rebecca was the Senior Vice President and Global Chief Marketing Officer for Levi’s®, where she was responsible for the development and implementation of marketing strategies for the brand, globally. \r\n\r\nFrom 2007 to 2011, Rebecca was Senior Director of Worldwide Marketing and Communications at Apple, Inc., where she led the worldwide marketing and communications strategies for some of the world’s most well-known and admired product launches, including the iPhone, iPad, Macs and iPod + iTunes. \r\n\r\nPrior to Apple Inc., Rebecca held various positions at Wieden + Kennedy, Inc. from 1994 to 2006, including Global Account Director for Nike International from 2002 to 2006. \r\n\r\nFrom 1992 to 1994, Rebecca held various positions at TBWA Worldwide Inc. \r\n\r\nRebecca graduated from Macalester College with a B.A. degree in History and Psychology and studied abroad at the University of Cairo in Egypt. \r\n\r\nRebecca currently sits on the board of PSI (since June 2011) and The New York Times Company (May 2015). \r\n\r\nPreviously, Rebecca was on the board of the Portland Children’s Museum & the Opal Charter school. \r\n\r\nRebecca lives with her husband and two daughters in Palo Alto, California. Rebecca is also an extensive world traveler and athlete who plays competitive soccer, runs and practices yoga.",
|
4280
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1447871821/qd98fybfg5w3codbr86s.png",
|
4281
|
+
"role_investor": false,
|
4282
|
+
"born_on": null,
|
4283
|
+
"born_on_trust_code": null,
|
4284
|
+
"died_on": null,
|
4285
|
+
"died_on_trust_code": null,
|
4286
|
+
"created_at": 1447738130,
|
4287
|
+
"updated_at": 1504206886
|
4288
|
+
}
|
4289
|
+
}
|
4290
|
+
}
|
4291
|
+
},
|
4292
|
+
{
|
4293
|
+
"type": "Job",
|
4294
|
+
"uuid": "3e535020b46ba9487d46a724986c99e1",
|
4295
|
+
"properties":
|
4296
|
+
{
|
4297
|
+
"title": "core infrastructure systems",
|
4298
|
+
"started_on": null,
|
4299
|
+
"started_on_trust_code": null,
|
4300
|
+
"ended_on": null,
|
4301
|
+
"ended_on_trust_code": 0,
|
4302
|
+
"is_current": false,
|
4303
|
+
"created_at": 1370078229,
|
4304
|
+
"updated_at": 1398003489
|
4305
|
+
},
|
4306
|
+
"relationships":
|
4307
|
+
{
|
4308
|
+
"person":
|
4309
|
+
{
|
4310
|
+
"type": "Person",
|
4311
|
+
"uuid": "d6a80196663d1560a5b76cb7bc1cc5cd",
|
4312
|
+
"properties":
|
4313
|
+
{
|
4314
|
+
"permalink": "nikita-shamgunov",
|
4315
|
+
"api_path": "people/nikita-shamgunov",
|
4316
|
+
"web_path": "person/nikita-shamgunov",
|
4317
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/nikita-shamgunov",
|
4318
|
+
"first_name": "Nikita",
|
4319
|
+
"last_name": "Shamgunov",
|
4320
|
+
"gender": "Male",
|
4321
|
+
"also_known_as": null,
|
4322
|
+
"bio": "Nikita Shamgunov co-founded our company and has served as CTO since inception. Prior to co-founding the company, Nikita worked on core infrastructure systems at Nikita Shamgunov co-founded our company and serves as CEO. Previously, he served as CTO for the company. Prior to co-founding the company, Nikita worked on core infrastructure systems at Facebook. He served as a senior database engineer at Microsoft SQL Server for more than half a decade. Nikita holds a bachelor’s, master’s and doctorate in computer science, has been awarded several patents and was a world medalist in ACM programming contests.",
|
4323
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/djsom31vct5prxtfgb34",
|
4324
|
+
"role_investor": true,
|
4325
|
+
"born_on": "1982-06-08",
|
4326
|
+
"born_on_trust_code": 7,
|
4327
|
+
"died_on": null,
|
4328
|
+
"died_on_trust_code": null,
|
4329
|
+
"created_at": 1310459536,
|
4330
|
+
"updated_at": 1508889132
|
4331
|
+
}
|
4332
|
+
}
|
4333
|
+
}
|
4334
|
+
}]
|
4335
|
+
}
|
4336
|
+
}
|