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,654 @@
|
|
1
|
+
{
|
2
|
+
"metadata":
|
3
|
+
{
|
4
|
+
"version": 31,
|
5
|
+
"www_path_prefix": "https://www.crunchbase.com",
|
6
|
+
"api_path_prefix": "https://api.crunchbase.com",
|
7
|
+
"image_path_prefix": "http://public.crunchbase.com/t_api_images/"
|
8
|
+
},
|
9
|
+
"data":
|
10
|
+
{
|
11
|
+
"type": "Organization",
|
12
|
+
"uuid": "9fe491b2b6a15c870f4d226dd0cc97a9",
|
13
|
+
"properties":
|
14
|
+
{
|
15
|
+
"permalink": "ekohe",
|
16
|
+
"api_path": "organizations/ekohe",
|
17
|
+
"web_path": "organization/ekohe",
|
18
|
+
"api_url": "https://api.crunchbase.com/v3.1/organizations/ekohe",
|
19
|
+
"name": "Ekohe",
|
20
|
+
"also_known_as": null,
|
21
|
+
"short_description": "Ekohe is a web and mobile development firm providing the latest and greatest web technologies.",
|
22
|
+
"description": "Ekohe is a web and mobile development agency founded in 2007. Headquartered in Shanghai, Ekohe has branches in Paris, Tokyo, and Vancouver.\r\n\r\nEkohe’s range of solutions includes strategy consulting, UX/UI design, Ruby on Rails, and native app mobile development. Our technologies include Swift, Java, HTML5, and CSS3. We provide digital solutions to startups, NGOs, corporate enterprises, and agencies.",
|
23
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1500646625/zhionn8nlgbkz4lj7ilz.png",
|
24
|
+
"primary_role": "company",
|
25
|
+
"role_company": true,
|
26
|
+
"role_investor": false,
|
27
|
+
"role_group": false,
|
28
|
+
"role_school": false,
|
29
|
+
"investor_type": null,
|
30
|
+
"founded_on": "2007-02-01",
|
31
|
+
"founded_on_trust_code": 7,
|
32
|
+
"is_closed": false,
|
33
|
+
"closed_on": null,
|
34
|
+
"closed_on_trust_code": null,
|
35
|
+
"num_employees_min": 11,
|
36
|
+
"num_employees_max": 50,
|
37
|
+
"stock_exchange": null,
|
38
|
+
"stock_symbol": null,
|
39
|
+
"total_funding_usd": 0,
|
40
|
+
"number_of_investments": 0,
|
41
|
+
"homepage_url": "http://ekohe.com",
|
42
|
+
"contact_email": "info@ekohe.com",
|
43
|
+
"phone_number": null,
|
44
|
+
"created_at": 1368541718,
|
45
|
+
"updated_at": 1505740904
|
46
|
+
},
|
47
|
+
"relationships":
|
48
|
+
{
|
49
|
+
"primary_image":
|
50
|
+
{
|
51
|
+
"cardinality": "OneToOne",
|
52
|
+
"paging":
|
53
|
+
{
|
54
|
+
"total_items": 1,
|
55
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/primary_image",
|
56
|
+
"sort_order": "not_ordered"
|
57
|
+
},
|
58
|
+
"item":
|
59
|
+
{
|
60
|
+
"type": "Image",
|
61
|
+
"uuid": "9fe491b2b6a15c870f4d226dd0cc97a9",
|
62
|
+
"properties":
|
63
|
+
{
|
64
|
+
"asset_path": "http://public.crunchbase.com/t_api_images/v1500646625/zhionn8nlgbkz4lj7ilz.png",
|
65
|
+
"asset_url": "http://public.crunchbase.com/t_api_images/v1500646625/zhionn8nlgbkz4lj7ilz.png",
|
66
|
+
"content_type": "png",
|
67
|
+
"height": null,
|
68
|
+
"width": null,
|
69
|
+
"filesize": null,
|
70
|
+
"created_at": 1368541718,
|
71
|
+
"updated_at": 1505740904
|
72
|
+
}
|
73
|
+
}
|
74
|
+
},
|
75
|
+
"founders":
|
76
|
+
{
|
77
|
+
"cardinality": "OneToMany",
|
78
|
+
"paging":
|
79
|
+
{
|
80
|
+
"total_items": 0,
|
81
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/founders",
|
82
|
+
"sort_order": "not_ordered"
|
83
|
+
},
|
84
|
+
"items": []
|
85
|
+
},
|
86
|
+
"featured_team":
|
87
|
+
{
|
88
|
+
"cardinality": "OneToMany",
|
89
|
+
"paging":
|
90
|
+
{
|
91
|
+
"total_items": 1,
|
92
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/featured_team",
|
93
|
+
"sort_order": "employee_featured_order ASC"
|
94
|
+
},
|
95
|
+
"items": [
|
96
|
+
{
|
97
|
+
"type": "Job",
|
98
|
+
"uuid": "85b01b9563bf2d317881df7f1505e3c1",
|
99
|
+
"properties":
|
100
|
+
{
|
101
|
+
"title": "CEO",
|
102
|
+
"started_on": "2007-02-01",
|
103
|
+
"started_on_trust_code": 7,
|
104
|
+
"ended_on": null,
|
105
|
+
"ended_on_trust_code": null,
|
106
|
+
"is_current": true,
|
107
|
+
"created_at": 1368516518,
|
108
|
+
"updated_at": 1437769586
|
109
|
+
},
|
110
|
+
"relationships":
|
111
|
+
{
|
112
|
+
"person":
|
113
|
+
{
|
114
|
+
"type": "Person",
|
115
|
+
"uuid": "90f4c92e34791f6e6470b2ae78805839",
|
116
|
+
"properties":
|
117
|
+
{
|
118
|
+
"permalink": "maxime-guilbot",
|
119
|
+
"api_path": "people/maxime-guilbot",
|
120
|
+
"web_path": "person/maxime-guilbot",
|
121
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/maxime-guilbot",
|
122
|
+
"first_name": "Maxime",
|
123
|
+
"last_name": "Guilbot",
|
124
|
+
"gender": "Male",
|
125
|
+
"also_known_as": null,
|
126
|
+
"bio": "Maxime has 12 years of experience in web design and development and four years in mobile development. In early 2007, Maxime founded Ekohe, a Ruby on Rails and mobile, design and development company based in Shanghai that recently expanded to Singapore. He has consulted on more than 25 different web and mobile start-ups based in North America, Europe and Mainland China, as well as architected enterprise information systems for global companies.\r\n\r\nMaxime holds a MA in Science in Artificial Intelligence and Pattern Recognition from Shanghai Jiao Tong University and a BS from a top engineering school in France, Ecole Centrale Lille.",
|
127
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397187169/a7e868611f399d1bca03b38a852a5e3a.jpg",
|
128
|
+
"role_investor": false,
|
129
|
+
"born_on": "1982-08-28",
|
130
|
+
"born_on_trust_code": 7,
|
131
|
+
"died_on": null,
|
132
|
+
"died_on_trust_code": null,
|
133
|
+
"created_at": 1368541718,
|
134
|
+
"updated_at": 1426100269
|
135
|
+
}
|
136
|
+
}
|
137
|
+
}
|
138
|
+
}]
|
139
|
+
},
|
140
|
+
"current_team":
|
141
|
+
{
|
142
|
+
"cardinality": "OneToMany",
|
143
|
+
"paging":
|
144
|
+
{
|
145
|
+
"total_items": 1,
|
146
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/current_team",
|
147
|
+
"sort_order": "not_ordered"
|
148
|
+
},
|
149
|
+
"items": [
|
150
|
+
{
|
151
|
+
"type": "Job",
|
152
|
+
"uuid": "85b01b9563bf2d317881df7f1505e3c1",
|
153
|
+
"properties":
|
154
|
+
{
|
155
|
+
"title": "CEO",
|
156
|
+
"started_on": "2007-02-01",
|
157
|
+
"started_on_trust_code": 7,
|
158
|
+
"ended_on": null,
|
159
|
+
"ended_on_trust_code": null,
|
160
|
+
"is_current": true,
|
161
|
+
"created_at": 1368516518,
|
162
|
+
"updated_at": 1437769586
|
163
|
+
},
|
164
|
+
"relationships":
|
165
|
+
{
|
166
|
+
"person":
|
167
|
+
{
|
168
|
+
"type": "Person",
|
169
|
+
"uuid": "90f4c92e34791f6e6470b2ae78805839",
|
170
|
+
"properties":
|
171
|
+
{
|
172
|
+
"permalink": "maxime-guilbot",
|
173
|
+
"api_path": "people/maxime-guilbot",
|
174
|
+
"web_path": "person/maxime-guilbot",
|
175
|
+
"api_url": "https://api.crunchbase.com/v3.1/people/maxime-guilbot",
|
176
|
+
"first_name": "Maxime",
|
177
|
+
"last_name": "Guilbot",
|
178
|
+
"gender": "Male",
|
179
|
+
"also_known_as": null,
|
180
|
+
"bio": "Maxime has 12 years of experience in web design and development and four years in mobile development. In early 2007, Maxime founded Ekohe, a Ruby on Rails and mobile, design and development company based in Shanghai that recently expanded to Singapore. He has consulted on more than 25 different web and mobile start-ups based in North America, Europe and Mainland China, as well as architected enterprise information systems for global companies.\r\n\r\nMaxime holds a MA in Science in Artificial Intelligence and Pattern Recognition from Shanghai Jiao Tong University and a BS from a top engineering school in France, Ecole Centrale Lille.",
|
181
|
+
"profile_image_url": "http://public.crunchbase.com/t_api_images/v1397187169/a7e868611f399d1bca03b38a852a5e3a.jpg",
|
182
|
+
"role_investor": false,
|
183
|
+
"born_on": "1982-08-28",
|
184
|
+
"born_on_trust_code": 7,
|
185
|
+
"died_on": null,
|
186
|
+
"died_on_trust_code": null,
|
187
|
+
"created_at": 1368541718,
|
188
|
+
"updated_at": 1426100269
|
189
|
+
}
|
190
|
+
}
|
191
|
+
}
|
192
|
+
}]
|
193
|
+
},
|
194
|
+
"past_team":
|
195
|
+
{
|
196
|
+
"cardinality": "OneToMany",
|
197
|
+
"paging":
|
198
|
+
{
|
199
|
+
"total_items": 0,
|
200
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/past_team",
|
201
|
+
"sort_order": "not_ordered"
|
202
|
+
},
|
203
|
+
"items": []
|
204
|
+
},
|
205
|
+
"board_members_and_advisors":
|
206
|
+
{
|
207
|
+
"cardinality": "OneToMany",
|
208
|
+
"paging":
|
209
|
+
{
|
210
|
+
"total_items": 0,
|
211
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/board_members_and_advisors",
|
212
|
+
"sort_order": "not_ordered"
|
213
|
+
},
|
214
|
+
"items": []
|
215
|
+
},
|
216
|
+
"investors":
|
217
|
+
{
|
218
|
+
"cardinality": "ManyToMany",
|
219
|
+
"paging":
|
220
|
+
{
|
221
|
+
"total_items": 0,
|
222
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/investors",
|
223
|
+
"sort_order": "not_ordered"
|
224
|
+
},
|
225
|
+
"items": []
|
226
|
+
},
|
227
|
+
"owned_by":
|
228
|
+
{
|
229
|
+
"cardinality": "ManyToOne",
|
230
|
+
"paging":
|
231
|
+
{
|
232
|
+
"total_items": 0,
|
233
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/owned_by",
|
234
|
+
"sort_order": "not_ordered"
|
235
|
+
}
|
236
|
+
},
|
237
|
+
"sub_organizations":
|
238
|
+
{
|
239
|
+
"cardinality": "OneToMany",
|
240
|
+
"paging":
|
241
|
+
{
|
242
|
+
"total_items": 0,
|
243
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/sub_organizations",
|
244
|
+
"sort_order": "not_ordered"
|
245
|
+
},
|
246
|
+
"items": []
|
247
|
+
},
|
248
|
+
"offices":
|
249
|
+
{
|
250
|
+
"cardinality": "OneToOne",
|
251
|
+
"paging":
|
252
|
+
{
|
253
|
+
"total_items": 1,
|
254
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/offices",
|
255
|
+
"sort_order": "not_ordered"
|
256
|
+
},
|
257
|
+
"item":
|
258
|
+
{
|
259
|
+
"type": "Address",
|
260
|
+
"uuid": "b1d80e8bce7c605459f882bc9f43a18a",
|
261
|
+
"properties":
|
262
|
+
{
|
263
|
+
"name": "Shanghai",
|
264
|
+
"street_1": "Suite 3010 Jing'an China Tower Fortune Gate",
|
265
|
+
"street_2": "1701 West Beijing Road",
|
266
|
+
"postal_code": "200040",
|
267
|
+
"city": "Shanghai",
|
268
|
+
"region": "Shanghai",
|
269
|
+
"country": "China",
|
270
|
+
"city_web_path": "",
|
271
|
+
"region_code2": null,
|
272
|
+
"region_web_path": "",
|
273
|
+
"country_code2": null,
|
274
|
+
"country_code3": null,
|
275
|
+
"country_web_path": "",
|
276
|
+
"latitude": null,
|
277
|
+
"longitude": null,
|
278
|
+
"created_at": 1368629174,
|
279
|
+
"updated_at": 1475288380
|
280
|
+
}
|
281
|
+
}
|
282
|
+
},
|
283
|
+
"headquarters":
|
284
|
+
{
|
285
|
+
"cardinality": "OneToOne",
|
286
|
+
"paging":
|
287
|
+
{
|
288
|
+
"total_items": 1,
|
289
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/headquarters",
|
290
|
+
"sort_order": "not_ordered"
|
291
|
+
},
|
292
|
+
"item":
|
293
|
+
{
|
294
|
+
"type": "Address",
|
295
|
+
"uuid": "b1d80e8bce7c605459f882bc9f43a18a",
|
296
|
+
"properties":
|
297
|
+
{
|
298
|
+
"name": "Shanghai",
|
299
|
+
"street_1": "Suite 3010 Jing'an China Tower Fortune Gate",
|
300
|
+
"street_2": "1701 West Beijing Road",
|
301
|
+
"postal_code": "200040",
|
302
|
+
"city": "Shanghai",
|
303
|
+
"region": "Shanghai",
|
304
|
+
"country": "China",
|
305
|
+
"city_web_path": "",
|
306
|
+
"region_code2": null,
|
307
|
+
"region_web_path": "",
|
308
|
+
"country_code2": null,
|
309
|
+
"country_code3": null,
|
310
|
+
"country_web_path": "",
|
311
|
+
"latitude": null,
|
312
|
+
"longitude": null,
|
313
|
+
"created_at": 1368629174,
|
314
|
+
"updated_at": 1475288380
|
315
|
+
}
|
316
|
+
}
|
317
|
+
},
|
318
|
+
"products":
|
319
|
+
{
|
320
|
+
"cardinality": "OneToMany",
|
321
|
+
"paging":
|
322
|
+
{
|
323
|
+
"total_items": 0,
|
324
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/products",
|
325
|
+
"sort_order": "not_ordered"
|
326
|
+
},
|
327
|
+
"items": []
|
328
|
+
},
|
329
|
+
"categories":
|
330
|
+
{
|
331
|
+
"cardinality": "OneToMany",
|
332
|
+
"paging":
|
333
|
+
{
|
334
|
+
"total_items": 7,
|
335
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/categories",
|
336
|
+
"sort_order": "not_ordered"
|
337
|
+
},
|
338
|
+
"items": [
|
339
|
+
{
|
340
|
+
"type": "Category",
|
341
|
+
"uuid": "275ddcbc27deff4f4e506dc26ebf9570",
|
342
|
+
"properties":
|
343
|
+
{
|
344
|
+
"name": "E-Commerce",
|
345
|
+
"web_path": "category/e-commerce/275ddcbc27deff4f4e506dc26ebf9570",
|
346
|
+
"category_groups": [
|
347
|
+
"Commerce and Shopping"
|
348
|
+
],
|
349
|
+
"created_at": 1397980726,
|
350
|
+
"updated_at": 1507311477
|
351
|
+
}
|
352
|
+
},
|
353
|
+
{
|
354
|
+
"type": "Category",
|
355
|
+
"uuid": "292d82c553819717827f3122ee792e71",
|
356
|
+
"properties":
|
357
|
+
{
|
358
|
+
"name": "Web Development",
|
359
|
+
"web_path": "category/web-development/292d82c553819717827f3122ee792e71",
|
360
|
+
"category_groups": [
|
361
|
+
"Software"
|
362
|
+
],
|
363
|
+
"created_at": 1397980727,
|
364
|
+
"updated_at": 1507302691
|
365
|
+
}
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"type": "Category",
|
369
|
+
"uuid": "5349a2f214d89727c32a19ebea5db78c",
|
370
|
+
"properties":
|
371
|
+
{
|
372
|
+
"name": "Social Media",
|
373
|
+
"web_path": "category/social-media/5349a2f214d89727c32a19ebea5db78c",
|
374
|
+
"category_groups": [
|
375
|
+
"Media and Entertainment",
|
376
|
+
"Internet Services"
|
377
|
+
],
|
378
|
+
"created_at": 1397980726,
|
379
|
+
"updated_at": 1507327103
|
380
|
+
}
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"type": "Category",
|
384
|
+
"uuid": "9fe4b69285863baa84a49ccf4d6eb0fa",
|
385
|
+
"properties":
|
386
|
+
{
|
387
|
+
"name": "Infrastructure",
|
388
|
+
"web_path": "category/infrastructure/9fe4b69285863baa84a49ccf4d6eb0fa",
|
389
|
+
"category_groups": null,
|
390
|
+
"created_at": 1397980727,
|
391
|
+
"updated_at": 1507163222
|
392
|
+
}
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"type": "Category",
|
396
|
+
"uuid": "c08b5441a05b9777b7a6012728caddd9",
|
397
|
+
"properties":
|
398
|
+
{
|
399
|
+
"name": "Software",
|
400
|
+
"web_path": "category/software/c08b5441a05b9777b7a6012728caddd9",
|
401
|
+
"category_groups": [
|
402
|
+
"Software"
|
403
|
+
],
|
404
|
+
"created_at": 1397980727,
|
405
|
+
"updated_at": 1507319530
|
406
|
+
}
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"type": "Category",
|
410
|
+
"uuid": "d38b3f26abc46f7bb29db952021a1b14",
|
411
|
+
"properties":
|
412
|
+
{
|
413
|
+
"name": "Enterprise Software",
|
414
|
+
"web_path": "category/enterprise-software/d38b3f26abc46f7bb29db952021a1b14",
|
415
|
+
"category_groups": [
|
416
|
+
"Software"
|
417
|
+
],
|
418
|
+
"created_at": 1397980726,
|
419
|
+
"updated_at": 1507307319
|
420
|
+
}
|
421
|
+
},
|
422
|
+
{
|
423
|
+
"type": "Category",
|
424
|
+
"uuid": "e907cf2a842d8a30a0b107d9de4a8178",
|
425
|
+
"properties":
|
426
|
+
{
|
427
|
+
"name": "Mobile",
|
428
|
+
"web_path": "category/mobile/e907cf2a842d8a30a0b107d9de4a8178",
|
429
|
+
"category_groups": [
|
430
|
+
"Mobile"
|
431
|
+
],
|
432
|
+
"created_at": 1397980726,
|
433
|
+
"updated_at": 1507302678
|
434
|
+
}
|
435
|
+
}]
|
436
|
+
},
|
437
|
+
"competitors":
|
438
|
+
{
|
439
|
+
"cardinality": "ManyToMany",
|
440
|
+
"paging":
|
441
|
+
{
|
442
|
+
"total_items": 0,
|
443
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/competitors",
|
444
|
+
"sort_order": "not_ordered"
|
445
|
+
},
|
446
|
+
"items": []
|
447
|
+
},
|
448
|
+
"customers":
|
449
|
+
{
|
450
|
+
"cardinality": "ManyToMany",
|
451
|
+
"paging":
|
452
|
+
{
|
453
|
+
"total_items": 0,
|
454
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/customers",
|
455
|
+
"sort_order": "not_ordered"
|
456
|
+
},
|
457
|
+
"items": []
|
458
|
+
},
|
459
|
+
"memberships":
|
460
|
+
{
|
461
|
+
"cardinality": "ManyToMany",
|
462
|
+
"paging":
|
463
|
+
{
|
464
|
+
"total_items": 0,
|
465
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/memberships",
|
466
|
+
"sort_order": "not_ordered"
|
467
|
+
},
|
468
|
+
"items": []
|
469
|
+
},
|
470
|
+
"members":
|
471
|
+
{
|
472
|
+
"cardinality": "ManyToMany",
|
473
|
+
"paging":
|
474
|
+
{
|
475
|
+
"total_items": 0,
|
476
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/members",
|
477
|
+
"sort_order": "not_ordered"
|
478
|
+
},
|
479
|
+
"items": []
|
480
|
+
},
|
481
|
+
"funding_rounds":
|
482
|
+
{
|
483
|
+
"cardinality": "OneToMany",
|
484
|
+
"paging":
|
485
|
+
{
|
486
|
+
"total_items": 0,
|
487
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/funding_rounds",
|
488
|
+
"sort_order": "announced_on DESC"
|
489
|
+
},
|
490
|
+
"items": []
|
491
|
+
},
|
492
|
+
"investments":
|
493
|
+
{
|
494
|
+
"cardinality": "OneToMany",
|
495
|
+
"paging":
|
496
|
+
{
|
497
|
+
"total_items": 0,
|
498
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/investments",
|
499
|
+
"sort_order": "announced_on DESC"
|
500
|
+
},
|
501
|
+
"items": []
|
502
|
+
},
|
503
|
+
"acquisitions":
|
504
|
+
{
|
505
|
+
"cardinality": "OneToMany",
|
506
|
+
"paging":
|
507
|
+
{
|
508
|
+
"total_items": 0,
|
509
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/acquisitions",
|
510
|
+
"sort_order": "announced_on DESC"
|
511
|
+
},
|
512
|
+
"items": []
|
513
|
+
},
|
514
|
+
"acquired_by":
|
515
|
+
{
|
516
|
+
"cardinality": "OneToOne",
|
517
|
+
"paging":
|
518
|
+
{
|
519
|
+
"total_items": 0,
|
520
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/acquired_by",
|
521
|
+
"sort_order": "not_ordered"
|
522
|
+
}
|
523
|
+
},
|
524
|
+
"ipo":
|
525
|
+
{
|
526
|
+
"cardinality": "OneToOne",
|
527
|
+
"paging":
|
528
|
+
{
|
529
|
+
"total_items": 0,
|
530
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/ipo",
|
531
|
+
"sort_order": "not_ordered"
|
532
|
+
}
|
533
|
+
},
|
534
|
+
"funds":
|
535
|
+
{
|
536
|
+
"cardinality": "OneToMany",
|
537
|
+
"paging":
|
538
|
+
{
|
539
|
+
"total_items": 0,
|
540
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/funds",
|
541
|
+
"sort_order": "announced_on DESC"
|
542
|
+
},
|
543
|
+
"items": []
|
544
|
+
},
|
545
|
+
"websites":
|
546
|
+
{
|
547
|
+
"cardinality": "OneToMany",
|
548
|
+
"paging":
|
549
|
+
{
|
550
|
+
"total_items": 4,
|
551
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/websites",
|
552
|
+
"sort_order": "not_ordered"
|
553
|
+
},
|
554
|
+
"items": [
|
555
|
+
{
|
556
|
+
"type": "Website",
|
557
|
+
"uuid": "9fe491b2b6a15c870f4d226dd0cc97a9",
|
558
|
+
"properties":
|
559
|
+
{
|
560
|
+
"website_type": "homepage",
|
561
|
+
"website_name": "homepage",
|
562
|
+
"url": "http://ekohe.com",
|
563
|
+
"created_at": 1368541718,
|
564
|
+
"updated_at": 1505740904
|
565
|
+
}
|
566
|
+
},
|
567
|
+
{
|
568
|
+
"type": "Website",
|
569
|
+
"uuid": "9fe491b2b6a15c870f4d226dd0cc97a9",
|
570
|
+
"properties":
|
571
|
+
{
|
572
|
+
"website_type": "facebook",
|
573
|
+
"website_name": "facebook",
|
574
|
+
"url": "http://www.facebook.com/ekohe.co",
|
575
|
+
"created_at": 1368541718,
|
576
|
+
"updated_at": 1505740904
|
577
|
+
}
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"type": "Website",
|
581
|
+
"uuid": "9fe491b2b6a15c870f4d226dd0cc97a9",
|
582
|
+
"properties":
|
583
|
+
{
|
584
|
+
"website_type": "twitter",
|
585
|
+
"website_name": "twitter",
|
586
|
+
"url": "http://twitter.com/ekohe",
|
587
|
+
"created_at": 1368541718,
|
588
|
+
"updated_at": 1505740904
|
589
|
+
}
|
590
|
+
},
|
591
|
+
{
|
592
|
+
"type": "Website",
|
593
|
+
"uuid": "9fe491b2b6a15c870f4d226dd0cc97a9",
|
594
|
+
"properties":
|
595
|
+
{
|
596
|
+
"website_type": "linkedin",
|
597
|
+
"website_name": "linkedin",
|
598
|
+
"url": "http://www.linkedin.com/company/ekohe",
|
599
|
+
"created_at": 1368541718,
|
600
|
+
"updated_at": 1505740904
|
601
|
+
}
|
602
|
+
}]
|
603
|
+
},
|
604
|
+
"images":
|
605
|
+
{
|
606
|
+
"cardinality": "OneToMany",
|
607
|
+
"paging":
|
608
|
+
{
|
609
|
+
"total_items": 1,
|
610
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/images",
|
611
|
+
"sort_order": "not_ordered"
|
612
|
+
},
|
613
|
+
"items": [
|
614
|
+
{
|
615
|
+
"type": "Image",
|
616
|
+
"uuid": "9fe491b2b6a15c870f4d226dd0cc97a9",
|
617
|
+
"properties":
|
618
|
+
{
|
619
|
+
"asset_path": "http://public.crunchbase.com/t_api_images/v1500646625/zhionn8nlgbkz4lj7ilz.png",
|
620
|
+
"asset_url": "http://public.crunchbase.com/t_api_images/v1500646625/zhionn8nlgbkz4lj7ilz.png",
|
621
|
+
"content_type": "png",
|
622
|
+
"height": null,
|
623
|
+
"width": null,
|
624
|
+
"filesize": null,
|
625
|
+
"created_at": 1368541718,
|
626
|
+
"updated_at": 1505740904
|
627
|
+
}
|
628
|
+
}]
|
629
|
+
},
|
630
|
+
"videos":
|
631
|
+
{
|
632
|
+
"cardinality": "OneToMany",
|
633
|
+
"paging":
|
634
|
+
{
|
635
|
+
"total_items": 0,
|
636
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/videos",
|
637
|
+
"sort_order": "not_ordered"
|
638
|
+
},
|
639
|
+
"items": []
|
640
|
+
},
|
641
|
+
"news":
|
642
|
+
{
|
643
|
+
"cardinality": "OneToMany",
|
644
|
+
"paging":
|
645
|
+
{
|
646
|
+
"total_items": 0,
|
647
|
+
"first_page_url": "https://api.crunchbase.com/v3.1/organizations/ekohe/news",
|
648
|
+
"sort_order": "posted_on DESC"
|
649
|
+
},
|
650
|
+
"items": []
|
651
|
+
}
|
652
|
+
}
|
653
|
+
}
|
654
|
+
}
|