angellist_api 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. data/CHANGELOG.md +15 -0
  2. data/README.md +11 -6
  3. data/Rakefile +9 -0
  4. data/lib/angellist_api.rb +1 -3
  5. data/lib/angellist_api/api.rb +2 -4
  6. data/lib/angellist_api/authentication.rb +0 -1
  7. data/lib/angellist_api/client.rb +9 -1
  8. data/lib/angellist_api/client/activity_feeds.rb +29 -8
  9. data/lib/angellist_api/client/follows.rb +105 -63
  10. data/lib/angellist_api/client/jobs.rb +72 -0
  11. data/lib/angellist_api/client/reviews.rb +17 -6
  12. data/lib/angellist_api/client/search.rb +31 -0
  13. data/lib/angellist_api/client/startup_roles.rb +23 -8
  14. data/lib/angellist_api/client/startups.rb +49 -13
  15. data/lib/angellist_api/client/status_updates.rb +45 -24
  16. data/lib/angellist_api/client/tags.rb +52 -30
  17. data/lib/angellist_api/client/users.rb +39 -17
  18. data/lib/angellist_api/configuration.rb +24 -29
  19. data/lib/angellist_api/connection.rb +27 -29
  20. data/lib/angellist_api/core_ext/hash.rb +19 -0
  21. data/lib/angellist_api/error.rb +9 -32
  22. data/lib/angellist_api/error/bad_gateway.rb +7 -0
  23. data/lib/angellist_api/error/bad_request.rb +7 -0
  24. data/lib/angellist_api/error/enhance_your_calm.rb +13 -0
  25. data/lib/angellist_api/error/forbidden.rb +7 -0
  26. data/lib/angellist_api/error/internal_server_error.rb +7 -0
  27. data/lib/angellist_api/error/not_acceptable.rb +7 -0
  28. data/lib/angellist_api/error/not_found.rb +7 -0
  29. data/lib/angellist_api/error/service_unavailable.rb +7 -0
  30. data/lib/angellist_api/error/unauthorized.rb +7 -0
  31. data/lib/angellist_api/request.rb +11 -18
  32. data/lib/angellist_api/request/angellist_api_oauth.rb +16 -0
  33. data/lib/angellist_api/request/gateway.rb +18 -0
  34. data/lib/angellist_api/request/multipart_with_file.rb +36 -0
  35. data/lib/angellist_api/response/raise_client_error.rb +51 -0
  36. data/lib/angellist_api/response/raise_server_error.rb +27 -0
  37. data/lib/angellist_api/version.rb +1 -1
  38. data/spec/fixtures/cassettes/activity_feeds.yml +273 -0
  39. data/spec/fixtures/cassettes/follows.yml +1722 -0
  40. data/spec/fixtures/cassettes/jobs.yml +2052 -0
  41. data/spec/fixtures/cassettes/reviews.yml +93 -0
  42. data/spec/fixtures/cassettes/search.yml +169 -0
  43. data/spec/fixtures/cassettes/startup_roles.yml +1481 -0
  44. data/spec/fixtures/cassettes/startups.yml +532 -0
  45. data/spec/fixtures/cassettes/status_updates.yml +125 -0
  46. data/spec/fixtures/cassettes/tags.yml +762 -0
  47. data/spec/fixtures/cassettes/users.yml +275 -0
  48. data/spec/integration/activity_feeds_spec.rb +29 -0
  49. data/spec/integration/follows_spec.rb +60 -0
  50. data/spec/integration/jobs_spec.rb +36 -0
  51. data/spec/integration/reviews_spec.rb +15 -0
  52. data/spec/integration/search_spec.rb +27 -0
  53. data/spec/integration/startup_roles_spec.rb +25 -0
  54. data/spec/integration/startups_spec.rb +36 -0
  55. data/spec/integration/status_updates_spec.rb +18 -0
  56. data/spec/integration/tags_spec.rb +29 -0
  57. data/spec/integration/users_spec.rb +23 -0
  58. data/spec/spec_helper.rb +5 -2
  59. data/spec/support/vcr.rb +12 -0
  60. data/spec/{lib → unit/lib}/angellist_api/api_spec.rb +13 -15
  61. data/spec/unit/lib/angellist_api/authentication_spec.rb +49 -0
  62. data/spec/unit/lib/angellist_api/client/activity_feeds_spec.rb +22 -0
  63. data/spec/unit/lib/angellist_api/client/follows_spec.rb +82 -0
  64. data/spec/unit/lib/angellist_api/client/jobs_spec.rb +39 -0
  65. data/spec/unit/lib/angellist_api/client/reviews_spec.rb +14 -0
  66. data/spec/unit/lib/angellist_api/client/search_spec.rb +15 -0
  67. data/spec/unit/lib/angellist_api/client/startup_roles_spec.rb +14 -0
  68. data/spec/unit/lib/angellist_api/client/startups_spec.rb +40 -0
  69. data/spec/unit/lib/angellist_api/client/status_updates_spec.rb +30 -0
  70. data/spec/unit/lib/angellist_api/client/tags_spec.rb +39 -0
  71. data/spec/unit/lib/angellist_api/client/users_spec.rb +39 -0
  72. data/spec/{lib → unit/lib}/angellist_api/configuration_spec.rb +12 -11
  73. data/spec/unit/lib/angellist_api/error_spec.rb +124 -0
  74. data/spec/unit/lib/angellist_api/request_spec.rb +32 -0
  75. data/spec/unit/lib/angellist_api_spec.rb +42 -0
  76. metadata +128 -71
  77. data/lib/faraday/request/angellist_api_oauth.rb +0 -14
  78. data/lib/faraday/request/gateway.rb +0 -18
  79. data/lib/faraday/request/multipart_with_file.rb +0 -36
  80. data/lib/faraday/request/phoenix.rb +0 -18
  81. data/lib/faraday/response/raise_http_4xx.rb +0 -45
  82. data/lib/faraday/response/raise_http_5xx.rb +0 -24
  83. data/spec/lib/angellist_api/authentication_spec.rb +0 -53
  84. data/spec/lib/angellist_api/client/activity_feeds_spec.rb +0 -16
  85. data/spec/lib/angellist_api/client/follows_spec.rb +0 -74
  86. data/spec/lib/angellist_api/client/reviews_spec.rb +0 -16
  87. data/spec/lib/angellist_api/client/startup_roles_spec.rb +0 -16
  88. data/spec/lib/angellist_api/client/startups_spec.rb +0 -23
  89. data/spec/lib/angellist_api/client/status_updates_spec.rb +0 -32
  90. data/spec/lib/angellist_api/client/tags_spec.rb +0 -40
  91. data/spec/lib/angellist_api/client/users_spec.rb +0 -30
  92. data/spec/lib/angellist_api/error_spec.rb +0 -126
  93. data/spec/lib/angellist_api/request_spec.rb +0 -51
  94. data/spec/lib/angellist_api_spec.rb +0 -38
@@ -0,0 +1,93 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.angel.co/1/reviews?user_id=2850
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - AngellistApi Ruby Gem 1.0.1
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: !!null
18
+ headers:
19
+ server:
20
+ - nginx/1.0.6
21
+ date:
22
+ - Sun, 22 Apr 2012 00:35:03 GMT
23
+ content-type:
24
+ - application/json; charset=utf-8
25
+ transfer-encoding:
26
+ - chunked
27
+ connection:
28
+ - close
29
+ vary:
30
+ - Accept-Encoding, Accept-Encoding
31
+ status:
32
+ - '200'
33
+ x-powered-by:
34
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
35
+ x-ratelimit-limit:
36
+ - '1000'
37
+ x-ratelimit-remaining:
38
+ - '980'
39
+ x-thanks:
40
+ - For using AngelList. Rock on.
41
+ x-runtime:
42
+ - '27'
43
+ etag:
44
+ - ! '"53c6326f9c809fef0b1f41a9db32a5c2"'
45
+ cache-control:
46
+ - private, max-age=0, must-revalidate
47
+ body:
48
+ encoding: ASCII-8BIT
49
+ string: ! '{"reviews":[{"id":123,"rating":1,"created_at":"2011-06-26T22:04:46Z","note":"There''s
50
+ simply no organization or angel in the world that is this supportive and active
51
+ for startups. I''m so thrilled to be part of their network.","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":322,"rating":1,"created_at":"2011-07-19T19:16:34Z","note":"","relationship_to_reviewer":"unknown"},{"id":432,"rating":1,"created_at":"2011-07-25T22:26:21Z","note":"","relationship_to_reviewer":"unknown"},{"id":528,"rating":1,"created_at":"2011-07-25T22:49:12Z","note":"","relationship_to_reviewer":"unknown"},{"id":639,"rating":1,"created_at":"2011-07-26T01:11:12Z","note":"Dave
52
+ really cares about startups as illustrated by the many 10pm Friday night calls
53
+ I''ve had with him. He''s got an unparalleled network and is an invaluable
54
+ addition to any team.","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":711,"rating":1,"created_at":"2011-07-26T02:38:01Z","note":"","relationship_to_reviewer":"unknown"},{"id":847,"rating":1,"created_at":"2011-07-27T01:34:12Z","note":"We
55
+ enjoy every second with this family, and benefit greatly from been part of
56
+ it. ","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":956,"rating":1,"created_at":"2011-08-02T02:26:05Z","note":"Exceptional
57
+ understanding of the \"science\" and repeatable processes that produce great
58
+ products and great companies. ","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":1180,"rating":1,"created_at":"2011-08-20T16:45:02Z","note":"They
59
+ took a chance on my company when potentially nobody else would. This program
60
+ literally changed my life and I struggle finding words to describe my gratitude. Trying
61
+ to imagine where I''d be without the 500Startups accelerator program is like
62
+ finding your soul-mate and trying to recall what life was like before. The
63
+ team and mentor network are quite arguably superhuman. I will forever be
64
+ #500Strong and know I''m truly part of a family. Thank you so much.","relationship_to_reviewer":"unknown"},{"id":1234,"rating":1,"created_at":"2011-08-27T18:26:17Z","note":"The
65
+ best thing we could have done for our startup. Being tech and product-focused
66
+ people, it was good to have someone on our shoulder telling us to worry about
67
+ design, data, and distribution. Also, the network is massive and _incredibly_
68
+ helpful.","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":1257,"rating":1,"created_at":"2011-08-29T16:23:48Z","note":"I
69
+ love what 500Startups is doing - smart help + booster rockets for entrepreneurs. In
70
+ addition, they tell you yes or no quickly and don''t waste your time. Awesome.","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":1333,"rating":1,"created_at":"2011-09-06T00:34:47Z","note":"Smart,
71
+ quick to make decisions, and amazing value add especially via access to the
72
+ 500 network of founders and mentors. You''d be an idiot not to take their
73
+ money.","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":1381,"rating":1,"created_at":"2011-09-16T04:31:34Z","note":"The
74
+ 500 Family regularly exceeds our expectations. It''s impossible to do more
75
+ for entrepreneurs than what Dave, the 500 Team, and the incredibly active
76
+ mentor + founder network do regularly.","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":1382,"rating":1,"created_at":"2011-09-16T04:51:21Z","note":"These
77
+ guys are great. There''s a lot of talk out there about value add investors,
78
+ or people who are entrepreneur friendly. At the end of the day, these guys
79
+ are one of the few who are legit on both fronts. If they offer, say yes. ","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":1415,"rating":1,"created_at":"2011-09-24T17:35:30Z","note":"Despite
80
+ the fact that 500 startups has a proven track record of launching successful
81
+ companies, joining 500 startups is probably the most fun and the most rewarding
82
+ experience I have ever had.","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":1481,"rating":1,"created_at":"2011-10-01T21:41:15Z","note":"Great
83
+ exposure","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":1989,"rating":1,"created_at":"2011-11-16T09:41:10Z","note":"Great
84
+ network.","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":2655,"rating":1,"created_at":"2012-01-24T19:13:06Z","note":"I''m
85
+ a coinvestor with them on a variety of deals and always try to bring them
86
+ in when I can. Love their team, philosophy, and network","relationship_to_reviewer":{"as":"investor","relationship":"investor"}},{"id":2770,"rating":1,"created_at":"2012-01-30T21:22:53Z","note":"Focus
87
+ on what''s important: community, teamwork and strength through collaboration.
88
+ ","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":2960,"rating":1,"created_at":"2012-02-16T04:37:36Z","note":"Helpful,
89
+ smart, great to have on your team.","relationship_to_reviewer":{"as":"founder","relationship":"investor"}},{"id":3354,"rating":1,"created_at":"2012-03-27T17:51:36Z","note":"Dave
90
+ McClure is an incredibly gifted marketer, and so good at what he does. ","relationship_to_reviewer":{"as":"founder","relationship":"investor"}}],"total_positive":21,"total":21,"per_page":50,"page":1,"last_page":1}'
91
+ http_version: !!null
92
+ recorded_at: Sun, 22 Apr 2012 00:35:03 GMT
93
+ recorded_with: VCR 2.1.0
@@ -0,0 +1,169 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.angel.co/1/search?query=machine%2Blearning
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - AngellistApi Ruby Gem 1.0.1
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: !!null
18
+ headers:
19
+ server:
20
+ - nginx/1.0.6
21
+ date:
22
+ - Mon, 23 Apr 2012 09:26:28 GMT
23
+ content-type:
24
+ - application/json; charset=utf-8
25
+ transfer-encoding:
26
+ - chunked
27
+ connection:
28
+ - close
29
+ vary:
30
+ - Accept-Encoding, Accept-Encoding
31
+ status:
32
+ - '200'
33
+ x-powered-by:
34
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
35
+ x-ratelimit-limit:
36
+ - '1000'
37
+ x-ratelimit-remaining:
38
+ - '996'
39
+ x-thanks:
40
+ - For using AngelList. Rock on.
41
+ x-runtime:
42
+ - '308'
43
+ etag:
44
+ - ! '"4f62b2c8498567d7b80ef7f86055882f"'
45
+ cache-control:
46
+ - private, max-age=0, must-revalidate
47
+ body:
48
+ encoding: ASCII-8BIT
49
+ string: ! '[{"id":92,"pic":"/images/icons/market.png","url":"http://angel.co/machine-learning","name":"Machine
50
+ Learning","type":"MarketTag"},{"id":420,"pic":"https://s3.amazonaws.com/photos.angel.co/users/420-medium?1308183745","url":"http://angel.co/hammer","name":"Jeff
51
+ Hammerbacher","type":"User"},{"id":97,"pic":"https://s3.amazonaws.com/photos.angel.co/users/97-medium?1294803512","url":"http://angel.co/rbpasker","name":"Bob
52
+ Pasker","type":"User"},{"id":9861,"pic":"https://s3.amazonaws.com/photos.angel.co/users/9861-medium?1307870800","url":"http://angel.co/jason-a-hoffman","name":"Jason
53
+ A. Hoffman","type":"User"},{"id":309,"pic":"https://s3.amazonaws.com/photos.angel.co/users/309-medium?1294803622","url":"http://angel.co/eghosao","name":"Eghosa
54
+ Omoigui","type":"User"},{"id":110263,"pic":"https://s3.amazonaws.com/photos.angel.co/users/110263-medium?1332809483","url":"http://angel.co/tomer-london","name":"Tomer
55
+ London","type":"User"},{"id":556,"pic":"https://s3.amazonaws.com/photos.angel.co/users/556-medium?1297748606","url":"http://angel.co/tonsing","name":"Raymond
56
+ Tonsing","type":"User"},{"id":93,"pic":"https://s3.amazonaws.com/photos.angel.co/users/93-medium?1294886960","url":"http://angel.co/simeons","name":"Simeon
57
+ Simeonov","type":"User"}]'
58
+ http_version: !!null
59
+ recorded_at: Mon, 23 Apr 2012 09:26:29 GMT
60
+ - request:
61
+ method: get
62
+ uri: https://api.angel.co/1/search?type=User&query=Joshua%2BSlayton
63
+ body:
64
+ encoding: US-ASCII
65
+ string: ''
66
+ headers:
67
+ Accept:
68
+ - application/json
69
+ User-Agent:
70
+ - AngellistApi Ruby Gem 1.0.1
71
+ response:
72
+ status:
73
+ code: 200
74
+ message: !!null
75
+ headers:
76
+ server:
77
+ - nginx/1.0.6
78
+ date:
79
+ - Mon, 23 Apr 2012 09:26:30 GMT
80
+ content-type:
81
+ - application/json; charset=utf-8
82
+ transfer-encoding:
83
+ - chunked
84
+ connection:
85
+ - close
86
+ vary:
87
+ - Accept-Encoding, Accept-Encoding
88
+ status:
89
+ - '200'
90
+ x-powered-by:
91
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
92
+ x-ratelimit-limit:
93
+ - '1000'
94
+ x-ratelimit-remaining:
95
+ - '995'
96
+ x-thanks:
97
+ - For using AngelList. Rock on.
98
+ x-runtime:
99
+ - '88'
100
+ etag:
101
+ - ! '"94d6f098b041bdc36443c74abd71264b"'
102
+ cache-control:
103
+ - private, max-age=0, must-revalidate
104
+ body:
105
+ encoding: ASCII-8BIT
106
+ string: ! '[{"id":671,"pic":"https://s3.amazonaws.com/photos.angel.co/users/671-medium?1321649923","url":"http://angel.co/joshuaxls","name":"Joshua
107
+ Slayton","type":"User"}]'
108
+ http_version: !!null
109
+ recorded_at: Mon, 23 Apr 2012 09:26:30 GMT
110
+ - request:
111
+ method: get
112
+ uri: https://api.angel.co/1/search?type=User&query=joshua
113
+ body:
114
+ encoding: US-ASCII
115
+ string: ''
116
+ headers:
117
+ Accept:
118
+ - application/json
119
+ User-Agent:
120
+ - AngellistApi Ruby Gem 1.0.1
121
+ response:
122
+ status:
123
+ code: 200
124
+ message: !!null
125
+ headers:
126
+ server:
127
+ - nginx/1.0.6
128
+ date:
129
+ - Mon, 23 Apr 2012 09:28:26 GMT
130
+ content-type:
131
+ - application/json; charset=utf-8
132
+ transfer-encoding:
133
+ - chunked
134
+ connection:
135
+ - close
136
+ vary:
137
+ - Accept-Encoding, Accept-Encoding
138
+ status:
139
+ - '200'
140
+ x-powered-by:
141
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
142
+ x-ratelimit-limit:
143
+ - '1000'
144
+ x-ratelimit-remaining:
145
+ - '994'
146
+ x-thanks:
147
+ - For using AngelList. Rock on.
148
+ x-runtime:
149
+ - '184'
150
+ etag:
151
+ - ! '"3f68a42fc1f2f9c1201c229a34b5fcc6"'
152
+ cache-control:
153
+ - private, max-age=0, must-revalidate
154
+ body:
155
+ encoding: ASCII-8BIT
156
+ string: ! '[{"id":108,"pic":"https://s3.amazonaws.com/photos.angel.co/users/108-medium?1294803521","url":"http://angel.co/joshu","name":"Joshua
157
+ Schachter","type":"User"},{"id":671,"pic":"https://s3.amazonaws.com/photos.angel.co/users/671-medium?1321649923","url":"http://angel.co/joshuaxls","name":"Joshua
158
+ Slayton","type":"User"},{"id":84,"pic":"https://s3.amazonaws.com/photos.angel.co/users/84-medium?1315252032","url":"http://angel.co/joshuabaer","name":"Joshua
159
+ Baer","type":"User"},{"id":3124,"pic":"https://s3.amazonaws.com/photos.angel.co/users/3124-medium?1329252532","url":"http://angel.co/joshuareeves","name":"Joshua
160
+ Reeves","type":"User"},{"id":1317,"pic":"https://s3.amazonaws.com/photos.angel.co/users/1317-medium?1294803889","url":"http://angel.co/joshuakushner","name":"Joshua
161
+ Kushner","type":"User"},{"id":106020,"pic":"https://s3.amazonaws.com/photos.angel.co/users/106020-medium?1331682049","url":"http://angel.co/joshua-walker","name":"Joshua
162
+ Walker","type":"User"},{"id":4259,"pic":"https://s3.amazonaws.com/photos.angel.co/users/4259-medium?1294804634","url":"http://angel.co/jmckenty","name":"Joshua
163
+ McKenty","type":"User"},{"id":11695,"pic":"https://s3.amazonaws.com/photos.angel.co/users/11695-medium?1298938257","url":"http://angel.co/joshua-march","name":"Joshua
164
+ March","type":"User"},{"id":44830,"pic":null,"url":"http://angel.co/joshua-o-connor","name":"Joshua
165
+ O''Connor","type":"User"},{"id":19545,"pic":"https://s3.amazonaws.com/photos.angel.co/users/19545-medium?1305563829","url":"http://angel.co/jkonowe","name":"Joshua
166
+ Konowe","type":"User"}]'
167
+ http_version: !!null
168
+ recorded_at: Mon, 23 Apr 2012 09:28:26 GMT
169
+ recorded_with: VCR 2.1.0
@@ -0,0 +1,1481 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.angel.co/1/startup_roles?startup_id=1124
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - AngellistApi Ruby Gem 1.0.1
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: !!null
18
+ headers:
19
+ server:
20
+ - nginx/1.0.6
21
+ date:
22
+ - Sun, 22 Apr 2012 00:35:06 GMT
23
+ content-type:
24
+ - application/json; charset=utf-8
25
+ transfer-encoding:
26
+ - chunked
27
+ connection:
28
+ - close
29
+ vary:
30
+ - Accept-Encoding, Accept-Encoding
31
+ status:
32
+ - '200'
33
+ x-powered-by:
34
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
35
+ x-ratelimit-limit:
36
+ - '1000'
37
+ x-ratelimit-remaining:
38
+ - '979'
39
+ x-thanks:
40
+ - For using AngelList. Rock on.
41
+ x-runtime:
42
+ - '1212'
43
+ etag:
44
+ - ! '"1818d9e18e8fee39c4aba6f0d9f0e81a"'
45
+ cache-control:
46
+ - private, max-age=0, must-revalidate
47
+ body:
48
+ encoding: ASCII-8BIT
49
+ string: ! '{"startup_roles":[{"id":211810,"role":"advisor","created_at":"2012-04-19T13:22:08Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Aaron
50
+ Batalion","id":69186,"bio":"CTO & Co-founder, LivingSocial. Husband, Father,
51
+ Geek, Entrepreneur, Advisor.","follower_count":399,"angellist_url":"http://angel.co/aaronbatalion","image":"https://s3.amazonaws.com/photos.angel.co/users/69186-medium?1320063559"}},{"id":211676,"role":"advisor","created_at":"2012-04-19T05:47:10Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Jessica
52
+ Alter","id":61981,"bio":"Entrepreneur & Advisor","follower_count":68,"angellist_url":"http://angel.co/jalter","image":"https://s3.amazonaws.com/photos.angel.co/users/61981-medium?1334814757"}},{"id":206648,"role":"past_investor","created_at":"2012-04-12T05:11:06Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Steve
53
+ Bennet","id":946,"bio":"Start-up CFO, Angel Investor and Professor","follower_count":1175,"angellist_url":"http://angel.co/sbennet","image":"https://s3.amazonaws.com/photos.angel.co/users/946-medium?1294803810"}},{"id":206497,"role":"past_investor","created_at":"2012-04-12T00:26:04Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Bethann
54
+ Kassman","id":22590,"bio":"CEO of Go Beyond Network; strong international
55
+ business background, entrepreneur and investor","follower_count":5,"angellist_url":"http://angel.co/bethann-kassman","image":"http://angel.co/images/nopic.png"}},{"id":205866,"role":"past_investor","created_at":"2012-04-11T05:08:20Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Stephen
56
+ Pollitt","id":87766,"bio":"Sand Hill Angels Board Member\nProteoSource, LLC\nCalifornia
57
+ Biotechnology, Scios, JNJ","follower_count":12,"angellist_url":"http://angel.co/n-stephen-pollitt","image":"https://s3.amazonaws.com/photos.angel.co/users/87766-medium?1326855958"}},{"id":204700,"role":"past_investor","created_at":"2012-04-10T02:02:38Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Arjun
58
+ Dev Arora","id":3376,"bio":"Founder and CEO Retargeter. Bus Dev & Strategy
59
+ at Yahoo. Investment Banker at Jefferies","follower_count":733,"angellist_url":"http://angel.co/arjun","image":"https://s3.amazonaws.com/photos.angel.co/users/3376-medium?1303330549"}},{"id":204455,"role":"past_investor","created_at":"2012-04-09T21:02:59Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Brad
60
+ Holden","id":5140,"bio":"Principal & Investment Counsel @ TomorrowVentures","follower_count":613,"angellist_url":"http://angel.co/brad-holden","image":"https://s3.amazonaws.com/photos.angel.co/users/5140-medium?1326407656"}},{"id":204256,"role":"advisor","created_at":"2012-04-09T18:43:47Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Brenden
61
+ Mulligan","id":12431,"bio":"Entrepreneur, Designer, Developer. Creator of
62
+ Onesheet, TipList, MorningPics, PhotoPile, ArtistData (acquired), 500Startups
63
+ mentor.","follower_count":549,"angellist_url":"http://angel.co/mulligan","image":"https://s3.amazonaws.com/photos.angel.co/users/12431-medium?1325658149"}},{"id":203028,"role":"advisor","created_at":"2012-04-07T02:28:16Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"TJ
64
+ Sassani","id":33188,"bio":"CEO Zozi","follower_count":6,"angellist_url":"http://angel.co/tj-sassani","image":"http://angel.co/images/nopic.png"}},{"id":202918,"role":"past_investor","created_at":"2012-04-06T22:35:45Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Leo
65
+ Chen","id":33191,"bio":"Two-time entrepreneur. Incubating at 500 Startups.
66
+ Former PM @ Amazon.com and DianDian.com (China).","follower_count":72,"angellist_url":"http://angel.co/leochen","image":"https://s3.amazonaws.com/photos.angel.co/users/33191-medium?1323282571"}},{"id":202682,"role":"advisor","created_at":"2012-04-06T17:49:39Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Micah
67
+ Baldwin","id":588,"bio":"Founder Graphicly. Multiple Entrepreneur. Mentor
68
+ at Techstars & 500startups. Startup Doer and Advisor.","follower_count":1310,"angellist_url":"http://angel.co/micah","image":"https://s3.amazonaws.com/photos.angel.co/users/588-medium?1313516610"}},{"id":202420,"role":"past_investor","created_at":"2012-04-06T06:19:54Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Kazuya
69
+ Minami","id":51186,"bio":"Incubating early stage venture businesses globally
70
+ as Digital Garage. Invested in Technorati, Twitter, Path. Strong interest
71
+ in Social Media to bring to Japan.","follower_count":294,"angellist_url":"http://angel.co/digitalbear","image":"https://s3.amazonaws.com/photos.angel.co/users/51186-medium?1316301190"}},{"id":202318,"role":"advisor","created_at":"2012-04-06T02:21:50Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Brendan
72
+ Mulligan","id":76188,"bio":"Biomedical Engineering, ASU; Research Assistant,
73
+ Barrow Neurological Institute; Entrepreneurial minded, looking to make a big
74
+ impact with a great team.","follower_count":6,"angellist_url":"http://angel.co/brendan-mulligan","image":"https://s3.amazonaws.com/photos.angel.co/users/76188-medium?1322263508"}},{"id":201845,"role":"advisor","created_at":"2012-04-05T17:28:47Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Jeremy
75
+ Toeman","id":114202,"bio":"Founder of Dijit (10+ years in TV tech - Slingbox,
76
+ Boxee, Clicker, VUDU, Mediabolic, etc). Multiple exits. Strong product/marketing
77
+ background. CMU alum.","follower_count":42,"angellist_url":"http://angel.co/jtoeman","image":"https://s3.amazonaws.com/photos.angel.co/users/114202-medium?1333652431"}},{"id":200825,"role":"past_investor","created_at":"2012-04-04T14:07:35Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Dave
78
+ Schappell","id":3170,"bio":"Director of Product, AmazonLocal. Former founder
79
+ and CEO, TeachStreet","follower_count":560,"angellist_url":"http://angel.co/daveschappell","image":"https://s3.amazonaws.com/photos.angel.co/users/3170-medium?1294804269"}},{"id":200535,"role":"incubator","created_at":"2012-04-04T03:31:46Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"500
80
+ Startups","id":2850,"bio":"Internet seed fund & startup accelerator in Silicon
81
+ Valley. Partners worked at PayPal, Google, AOL, Rackspace, YouTube, Mint,
82
+ Facebook fbFund, Founders Fund.","follower_count":5561,"angellist_url":"http://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium?1294804197"}},{"id":195059,"role":"advisor","created_at":"2012-03-28T17:29:47Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Hong
83
+ Quan","id":5005,"bio":"I started a car company & sold it. I help Founders
84
+ build their startups. Mentor at 500 Startups and 20Under20. I find talent
85
+ for startups & I invest in people.","follower_count":472,"angellist_url":"http://angel.co/hong","image":"https://s3.amazonaws.com/photos.angel.co/users/5005-medium?1295769419"}},{"id":192956,"role":"past_investor","created_at":"2012-03-26T13:47:30Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Robert
86
+ Stone","id":88869,"bio":"Head Of Corporate Strategy at Wavecom Solutions","follower_count":16,"angellist_url":"http://angel.co/robert-stone-2","image":"https://s3.amazonaws.com/photos.angel.co/users/88869-medium?1332769519"}},{"id":192282,"role":"past_investor","created_at":"2012-03-25T14:48:45Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Eric
87
+ Ries","id":17334,"bio":"Author of The Lean Startup","follower_count":6759,"angellist_url":"http://angel.co/ericries","image":"https://s3.amazonaws.com/photos.angel.co/users/17334-medium?1323882120"}},{"id":192235,"role":"employee","created_at":"2012-03-25T06:02:58Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Peter
88
+ Ashley","id":27640,"bio":"Worked at PayPal for 5+ years. Raised >$25MM for
89
+ startups and funds including Opinmind, BuildeRadius, Chirpme and 500Startups.","follower_count":55,"angellist_url":"http://angel.co/peter-ashley1","image":"https://s3.amazonaws.com/photos.angel.co/users/27640-medium?1317840584"}},{"id":181859,"role":"past_investor","created_at":"2012-03-08T20:46:49Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Amer
90
+ Rehman","id":4175,"bio":"CFO. Active Angel Investor","follower_count":442,"angellist_url":"http://angel.co/amer-rehman","image":"https://s3.amazonaws.com/photos.angel.co/users/4175-medium?1294804607"}},{"id":180538,"role":"employee","created_at":"2012-03-06T23:31:00Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"George
91
+ Kellerman","id":53100,"bio":"Venture Partner at 500 Startups. Profitably ran
92
+ a $500M P&L at Dell; secured $200M+ in BD deals; $12B+ in financings and M&A;
93
+ former firefighter--a real one!","follower_count":212,"angellist_url":"http://angel.co/george-kellerman","image":"https://s3.amazonaws.com/photos.angel.co/users/53100-medium?1314121159"}},{"id":176849,"role":"past_investor","created_at":"2012-03-05T03:35:38Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Amit
94
+ Kumar","id":101754,"bio":"Founder & CEO, Lexity.com - Advertising on Autopilot
95
+ for eCommerce. Previously at Dapper (bought by Yahoo), and founder, Yahoo
96
+ SearchMonkey (killed by Yahoo).","follower_count":55,"angellist_url":"http://angel.co/akumar","image":"https://s3.amazonaws.com/photos.angel.co/users/101754-medium?1330630952"}},{"id":176432,"role":"advisor","created_at":"2012-03-04T00:22:44Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Sachin
97
+ Rekhi","id":102658,"bio":"2x Entrepreneur: Connected (sold to LinkedIn) and
98
+ Anywhere.FM (sold to imeem)","follower_count":21,"angellist_url":"http://angel.co/sachinrekhi","image":"https://s3.amazonaws.com/photos.angel.co/users/102658-medium?1330820366"}},{"id":175998,"role":"advisor","created_at":"2012-03-02T20:39:17Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Andrew
99
+ Chen","id":3234,"bio":"Startup guy and advisor on metrics/marketing. Occassional
100
+ blogger. Previously EIR at Mohr Davidow Ventures, ran product at AudienceScience.","follower_count":2752,"angellist_url":"http://angel.co/andrewchen","image":"https://s3.amazonaws.com/photos.angel.co/users/3234-medium?1294804283"}},{"id":174600,"role":"past_investor","created_at":"2012-03-01T15:37:21Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Pankaj
101
+ Jain","id":35540,"bio":"Technology & operations management and strategy.","follower_count":503,"angellist_url":"http://angel.co/pjain","image":"https://s3.amazonaws.com/photos.angel.co/users/35540-medium?1311880896"}},{"id":173196,"role":"past_investor","created_at":"2012-02-28T20:10:07Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Reed
102
+ Morse","id":3914,"bio":"Hacker (iPhone, Android, Web); ex-CEO; Googler","follower_count":97,"angellist_url":"http://angel.co/reed","image":"https://s3.amazonaws.com/photos.angel.co/users/3914-medium?1294804483"}},{"id":172349,"role":"past_investor","created_at":"2012-02-27T19:50:52Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Peter
103
+ Ashley","id":27640,"bio":"Worked at PayPal for 5+ years. Raised >$25MM for
104
+ startups and funds including Opinmind, BuildeRadius, Chirpme and 500Startups.","follower_count":55,"angellist_url":"http://angel.co/peter-ashley1","image":"https://s3.amazonaws.com/photos.angel.co/users/27640-medium?1317840584"}},{"id":169852,"role":"past_investor","created_at":"2012-02-26T23:39:38Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Xander
105
+ Pollock","id":4015,"bio":"UX Designer at Google. Co-Founder Punchd, acquired
106
+ by Google. ","follower_count":134,"angellist_url":"http://angel.co/xander-pollock","image":"https://s3.amazonaws.com/photos.angel.co/users/4015-medium?1294804529"}},{"id":167941,"role":"past_investor","created_at":"2012-02-22T20:18:03Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Bryan
107
+ Sivak","id":72295,"bio":"Entrepreneur (Founder of InQuira, acquired by Oracle),
108
+ Investor, Public Servant (CTO of Washington, DC; CIO Maryland) and Geek (CS
109
+ - University of Chicago)","follower_count":26,"angellist_url":"http://angel.co/bryan-sivak","image":"https://s3.amazonaws.com/photos.angel.co/users/72295-medium?1333486995"}},{"id":164210,"role":"founder","created_at":"2012-02-15T16:37:57Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Christen
110
+ O''Brien","id":63611,"bio":"Partner & GM, Business Development ","follower_count":388,"angellist_url":"http://angel.co/christen-obrien","image":"https://s3.amazonaws.com/photos.angel.co/users/63611-medium?1317942291"}},{"id":162490,"role":"past_investor","created_at":"2012-02-13T00:27:04Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Barry
111
+ Silbert","id":64029,"bio":"Founder & CEO at SecondMarket","follower_count":724,"angellist_url":"http://angel.co/barry-silbert","image":"https://s3.amazonaws.com/photos.angel.co/users/64029-medium?1323450032"}},{"id":161885,"role":"past_investor","created_at":"2012-02-11T06:33:18Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"todd
112
+ sawicki","id":91800,"bio":"online startup geek currently helping run the cheezburger
113
+ network","follower_count":74,"angellist_url":"http://angel.co/sawickipedia","image":"https://s3.amazonaws.com/photos.angel.co/users/91800-medium?1327973545"}},{"id":160582,"role":"past_investor","created_at":"2012-02-09T05:23:10Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Kevin
114
+ Henrikson","id":45086,"bio":"Early Zimbra engineering team member. Now lead
115
+ Zimbra R&D at VMware. Interest in SaaS, Internet Publishing, Ad Networks,
116
+ Communications/Email, and Enterprise.","follower_count":413,"angellist_url":"http://angel.co/kevinhenrikson","image":"https://s3.amazonaws.com/photos.angel.co/users/45086-medium?1311631886"}},{"id":157102,"role":"employee","created_at":"2012-02-03T15:40:43Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Melissa
117
+ Grody","id":85359,"bio":"...; writer, reader, sort-of-adventurer","follower_count":63,"angellist_url":"http://angel.co/dmelissag","image":"https://s3.amazonaws.com/photos.angel.co/users/85359-medium?1325989261"}},{"id":157100,"role":"employee","created_at":"2012-02-03T15:40:05Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Dave
118
+ McClure","id":144,"bio":"Founding Partner @ 500 Startups. Ex-PayPal, Facebook
119
+ fbFund, Founders Fund, Mint.com. Geek, developer, entrepreneur, marketer.
120
+ Investor in 250+ co''s.","follower_count":15998,"angellist_url":"http://angel.co/davemcclure","image":"https://s3.amazonaws.com/photos.angel.co/users/144-medium?1294803547"}},{"id":157099,"role":"advisor","created_at":"2012-02-03T15:39:32Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Enrique
121
+ Allen","id":62554,"bio":"Founding member of the Designer Fund & 500 Startups.
122
+ Previously Facebook Fund & Venrock. Teach at Stanford design school & former
123
+ Stanford Persuasive Tech Lab.","follower_count":642,"angellist_url":"http://angel.co/enrique-allen","image":"https://s3.amazonaws.com/photos.angel.co/users/62554-medium?1317614459"}},{"id":157097,"role":"employee","created_at":"2012-02-03T15:38:23Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Christen
124
+ O''Brien","id":63611,"bio":"Partner & GM, Business Development ","follower_count":388,"angellist_url":"http://angel.co/christen-obrien","image":"https://s3.amazonaws.com/photos.angel.co/users/63611-medium?1317942291"}},{"id":157096,"role":"advisor","created_at":"2012-02-03T15:37:09Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Christine
125
+ Herron","id":79,"bio":"Early-stage-leaning investor at Intel Capital. Venture
126
+ Advisor at 500 Startups, Board Advisor to StartX. Tribal kitchen goddess and
127
+ @calista''s mom.","follower_count":1973,"angellist_url":"http://angel.co/christine","image":"https://s3.amazonaws.com/photos.angel.co/users/79-medium?1294803498"}},{"id":153310,"role":"employee","created_at":"2012-01-28T15:23:27Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Paul
128
+ Singh","id":1274,"bio":"Partner at 500 Startups","follower_count":3239,"angellist_url":"http://angel.co/paulsingh","image":"https://s3.amazonaws.com/photos.angel.co/users/1274-medium?1294803879"}},{"id":152385,"role":"past_investor","created_at":"2012-01-27T02:45:20Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Anurag
129
+ (Anu) Nigam","id":8736,"bio":"Founder of Hi5, Cerent, Siara, 411Sync, BuzzBox.
130
+ Advisor to Trooval.","follower_count":793,"angellist_url":"http://angel.co/anigam","image":"https://s3.amazonaws.com/photos.angel.co/users/8736-medium?1298684262"}},{"id":151179,"role":"past_investor","created_at":"2012-01-25T05:17:42Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Ryan
131
+ Swagar","id":9304,"bio":"Co-founding Partner @Venture51","follower_count":1351,"angellist_url":"http://angel.co/ryanswagar","image":"https://s3.amazonaws.com/photos.angel.co/users/9304-medium?1317274751"}},{"id":147884,"role":"advisor","created_at":"2012-01-18T21:49:15Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Jason
132
+ Hreha","id":84158,"bio":"Applied Psychologist meets UX Designer.\n\nBackground
133
+ in the behavioral sciences and web design. Advisor at 500 Startups. Product
134
+ Management and Design background","follower_count":48,"angellist_url":"http://angel.co/hreha","image":"https://s3.amazonaws.com/photos.angel.co/users/84158-medium?1325626718"}},{"id":147519,"role":"past_investor","created_at":"2012-01-17T21:08:56Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Sarosh
135
+ Kumana","id":66719,"bio":"Managing Member at Junglee LLC\nBoard Director,
136
+ Sand Hill Angels\nMember, Health Tech Capital\nFounded numerous investment
137
+ companies and syndicates","follower_count":160,"angellist_url":"http://angel.co/sarosh-kumana","image":"https://s3.amazonaws.com/photos.angel.co/users/66719-medium?1324583508"}},{"id":130708,"role":"employee","created_at":"2011-09-30T21:03:13Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Bedy
138
+ Yang","id":45128,"bio":"Venture Partner 500Startups (focused Latam + international);
139
+ Founder Brazil Innovators - epicenter of startups in Brazil. Connector,
140
+ community builder","follower_count":710,"angellist_url":"http://angel.co/bedy","image":"https://s3.amazonaws.com/photos.angel.co/users/45128-medium?1312245613"}},{"id":104983,"role":"employee","created_at":"2011-05-26T22:35:17Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Christine
141
+ Tsai","id":2719,"bio":"Partner at 500 Startups. Ex-Googler & ex-YouTuber.
142
+ Left-handed.","follower_count":5965,"angellist_url":"http://angel.co/christinetsai","image":"https://s3.amazonaws.com/photos.angel.co/users/2719-medium?1333648741"}},{"id":103767,"role":"past_investor","created_at":"2011-05-21T14:29:19Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Sean
143
+ O''Sullivan","id":33924,"bio":"founder of Avego, JumpStart Int''l, MapInfo;
144
+ co-inventor of street mapping on PCs. co-coined term \"cloud computing\" in
145
+ 1996. seed & venture capital investor.","follower_count":407,"angellist_url":"http://angel.co/sosventures","image":"https://s3.amazonaws.com/photos.angel.co/users/33924-medium?1305992664"}},{"id":98607,"role":"past_investor","created_at":"2011-03-31T10:24:17Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Tom
146
+ Newbold","id":1745,"bio":"Investor in Rapportive, 8tracks, XA.net, SetJam,
147
+ Blip.tv, Mashery, Founders Coop, Refinery29, 500 Startups.","follower_count":259,"angellist_url":"http://angel.co/tnewbold","image":"https://s3.amazonaws.com/photos.angel.co/users/1745-medium?1294803978"}},{"id":97926,"role":"past_investor","created_at":"2011-03-25T18:51:59Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Ryan
148
+ Floyd","id":2247,"bio":"Investor in DeviceVM, Appcelerator, 3Crowd Technologies,
149
+ SandForce, HubPages, Crowdfactory.","follower_count":170,"angellist_url":"http://angel.co/ryanfloyd","image":"https://s3.amazonaws.com/photos.angel.co/users/2247-medium?1301074591"}},{"id":91745,"role":"past_investor","created_at":"2012-01-16T06:05:15Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Dan
150
+ Shapiro","id":1917,"bio":"Founder Sparkbuy (sold to Google); Founder Ontela
151
+ (acquired Photobucket).","follower_count":703,"angellist_url":"http://angel.co/danshapiro","image":"https://s3.amazonaws.com/photos.angel.co/users/1917-medium?1302249002"}},{"id":91474,"role":"past_investor","created_at":"2012-01-14T12:51:17Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Niket
152
+ Desai","id":25211,"bio":"Co-Founder Punchd (acq. GOOG ''11). 500Startups LP.
153
+ Google. Cal Engineering. Love Chipotle. Product/Stats/UX. Known to be naughty.","follower_count":77,"angellist_url":"http://angel.co/niket","image":"https://s3.amazonaws.com/photos.angel.co/users/25211-medium?1326641191"}},{"id":91293,"role":"advisor","created_at":"2012-01-13T19:24:25Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Karl
154
+ Dotter","id":86878,"bio":"Founding Designer of Dopamine, Founding Member of
155
+ Designer Fund, Designer In Residence at 500 Startups.","follower_count":65,"angellist_url":"http://angel.co/karl-dotter","image":"https://s3.amazonaws.com/photos.angel.co/users/86878-medium?1326480904"}},{"id":91212,"role":"past_investor","created_at":"2012-01-13T16:10:58Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Aamer
156
+ Abdullah","id":4563,"bio":"MI Ventures LLC","follower_count":1298,"angellist_url":"http://angel.co/aamerbdullah10","image":"https://s3.amazonaws.com/photos.angel.co/users/4563-medium?1295933235"}},{"id":89426,"role":"past_investor","created_at":"2012-01-07T18:08:34Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Garrick
157
+ Louie","id":33709,"bio":"Member, Sand Hill Angels. Partner at Tricor America,
158
+ Inc., a leading provider of corporate transportation services, supply chain
159
+ distribution, and logistics.","follower_count":50,"angellist_url":"http://angel.co/garrick-louie","image":"https://s3.amazonaws.com/photos.angel.co/users/33709-medium?1318063225"}},{"id":89275,"role":"past_investor","created_at":"2012-01-06T23:07:13Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Brandon
160
+ Zeuner","id":9578,"bio":"Co-founding Partner @venture51. Republic Project
161
+ & Flypaper. Started at Interact (makers of ACT! & SalesLogix). ","follower_count":1990,"angellist_url":"http://angel.co/brandonzeuner","image":"https://s3.amazonaws.com/photos.angel.co/users/9578-medium?1319494152"}},{"id":89131,"role":"past_investor","created_at":"2012-01-06T14:50:55Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Alvar
162
+ Soosaar","id":84957,"bio":"Co-founder & Partner, OxonCapital LP","follower_count":21,"angellist_url":"http://angel.co/alvar-soosaar","image":"https://s3.amazonaws.com/photos.angel.co/users/84957-medium?1325861999"}},{"id":89107,"role":"past_investor","created_at":"2012-01-06T13:45:16Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Warren
163
+ Pinkerton","id":84948,"bio":"Co-Founder & Partner, OxonCapital \u25aa\u25ab","follower_count":110,"angellist_url":"http://angel.co/warren-pinkerton","image":"https://s3.amazonaws.com/photos.angel.co/users/84948-medium?1325857157"}},{"id":86774,"role":"past_investor","created_at":"2011-12-28T04:00:03Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Cindy
164
+ Bi","id":82946,"bio":"angel investor with focus on enterprise software.","follower_count":70,"angellist_url":"http://angel.co/zillionize","image":"https://s3.amazonaws.com/photos.angel.co/users/82946-medium?1331006627"}},{"id":86621,"role":"past_investor","created_at":"2011-12-27T17:00:44Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Marco
165
+ Giberti","id":53720,"bio":"Entrepreneur. Angel Investor","follower_count":120,"angellist_url":"http://angel.co/marco-giberti","image":"https://s3.amazonaws.com/photos.angel.co/users/53720-medium?1314302168"}},{"id":86178,"role":"past_investor","created_at":"2011-12-24T02:46:21Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Sherman
166
+ Ting","id":82166,"bio":"President and Board Director, Sand Hill Angels.\nAngel
167
+ Investor, Entrepreneur, High Tech Executive.","follower_count":94,"angellist_url":"http://angel.co/sherman-ting","image":"https://s3.amazonaws.com/photos.angel.co/users/82166-medium?1324694565"}},{"id":86126,"role":"past_investor","created_at":"2011-12-23T20:38:27Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Don
168
+ Klaiss","id":5759,"bio":"SVP at Oracle, CEO at Compiere, Founder Covalent
169
+ Systems, active angel investor, advisor, board member.","follower_count":206,"angellist_url":"http://angel.co/dklaiss","image":"https://s3.amazonaws.com/photos.angel.co/users/5759-medium?1297141125"}},{"id":83979,"role":"past_investor","created_at":"2011-12-15T19:32:51Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Faisal
170
+ Aftab","id":67990,"bio":"Media Executive & VC Investor \nCo-Founder & CEO,
171
+ Pearl Media Group \nPartner, OxonCapital \u25aa\u25ab","follower_count":92,"angellist_url":"http://angel.co/faisal-aftab","image":"https://s3.amazonaws.com/photos.angel.co/users/67990-medium?1329499997"}},{"id":69365,"role":"past_investor","created_at":"2011-10-26T22:32:27Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Jay
172
+ Weintraub","id":2726,"bio":"CEO and Founder, NextCustomer, Inc., organizers
173
+ of LeadsCon & Daily Deal Summit conference series.","follower_count":1354,"angellist_url":"http://angel.co/jayweintraub","image":"https://s3.amazonaws.com/photos.angel.co/users/2726-medium?1294804173"}},{"id":63219,"role":"advisor","created_at":"2011-10-06T18:17:09Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Peter
174
+ Rosberg","id":5198,"bio":"Current: Dir NA Product New Ventures, PayPal. Mentor
175
+ 500 startups Prior: CTO Reel.com (sold to Hollywood Video), Consuling CTO/Advisor
176
+ esurance, big words...","follower_count":334,"angellist_url":"http://angel.co/peter-rosberg","image":"https://s3.amazonaws.com/photos.angel.co/users/5198-medium?1308025998"}},{"id":63218,"role":"past_investor","created_at":"2011-10-06T18:16:56Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Peter
177
+ Rosberg","id":5198,"bio":"Current: Dir NA Product New Ventures, PayPal. Mentor
178
+ 500 startups Prior: CTO Reel.com (sold to Hollywood Video), Consuling CTO/Advisor
179
+ esurance, big words...","follower_count":334,"angellist_url":"http://angel.co/peter-rosberg","image":"https://s3.amazonaws.com/photos.angel.co/users/5198-medium?1308025998"}},{"id":61861,"role":"past_investor","created_at":"2011-10-02T15:39:43Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Akinori
180
+ Shibuya","id":62474,"bio":"Invest on behalf of Recruit to Translink Capital,
181
+ DCM, and 500 Startups.","follower_count":131,"angellist_url":"http://angel.co/akinori-shibuya","image":"https://s3.amazonaws.com/photos.angel.co/users/62474-medium?1323515303"}},{"id":61794,"role":"past_investor","created_at":"2011-10-02T01:21:20Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Shinya
182
+ Okumura","id":62411,"bio":"Investor in 500 Startups (Fund), Zazzle.","follower_count":153,"angellist_url":"http://angel.co/shinya-okumura","image":"https://s3.amazonaws.com/photos.angel.co/users/62411-medium?1317518364"}},{"id":59542,"role":"past_investor","created_at":"2011-09-24T05:16:24Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Simon
183
+ Ru","id":60389,"bio":"Entrepreneur, Co-Founder Spare Change","follower_count":153,"angellist_url":"http://angel.co/simon-ru","image":"https://s3.amazonaws.com/photos.angel.co/users/60389-medium?1316841363"}},{"id":55099,"role":"past_investor","created_at":"2011-09-08T18:55:05Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Lars
184
+ Mapstead","id":40621,"bio":"Founder Friendfinder Networks (FFN) Sold 2007
185
+ Founder Fupa Games Inc.","follower_count":786,"angellist_url":"http://angel.co/lars-mapstead","image":"https://s3.amazonaws.com/photos.angel.co/users/40621-medium?1309489647"}},{"id":53632,"role":"past_investor","created_at":"2011-09-01T22:15:26Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Avery
186
+ Kadison","id":32103,"bio":"Director, New Ventures Risk@PayPal; (Past) Director,
187
+ Product Management & Consumer Research@eHealth; Once packaged a bond offering
188
+ for metal legends Iron Maiden","follower_count":116,"angellist_url":"http://angel.co/avery-kadison","image":"http://angel.co/images/nopic.png"}},{"id":52655,"role":"past_investor","created_at":"2011-08-29T19:52:35Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Karl
189
+ Mehta","id":8132,"bio":"Serial Entrepreneur, Angel Investor,\nFounder & CEO,
190
+ PlaySpan (Acq. VISA)\nMobileAria (Acq. Wireless Matrix)\nE&Y Entrepreneur
191
+ of Year 2010- Northern California\n","follower_count":410,"angellist_url":"http://angel.co/karl-mehta","image":"https://s3.amazonaws.com/photos.angel.co/users/8132-medium?1298831983"}},{"id":52438,"role":"past_investor","created_at":"2011-08-29T03:40:48Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Vikas
192
+ Taneja","id":8847,"bio":"Angel investor (500 Startups, Parakweet, Rapportive,
193
+ 8tracks, PubNub, Mashery, Founders Coop, Refinery29, Food52,...) Partner at
194
+ BCG. Chicago MBA. Stanford CS.","follower_count":645,"angellist_url":"http://angel.co/vikas-taneja","image":"https://s3.amazonaws.com/photos.angel.co/users/8847-medium?1298406773"}},{"id":52267,"role":"past_investor","created_at":"2011-08-27T23:38:33Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Jason
195
+ Putorti","id":3589,"bio":"Co-founder of Votizen \u2022 Founder Advisor at
196
+ SV Angel \u2022 First Designer-in-Residence at Bessemer \u2022 Former Lead
197
+ Designer at Mint.com","follower_count":1897,"angellist_url":"http://angel.co/putorti","image":"https://s3.amazonaws.com/photos.angel.co/users/3589-medium?1296926997"}},{"id":51075,"role":"past_investor","created_at":"2011-08-23T15:55:46Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Pedro
198
+ Torres Pic\u00f3n","id":18967,"bio":"Entrepreneur and angel investor from
199
+ Latin America, living in New York. Founder and Managing Director at Quotidian
200
+ Ventures.","follower_count":1007,"angellist_url":"http://angel.co/pedrotp","image":"https://s3.amazonaws.com/photos.angel.co/users/18967-medium?1306955415"}},{"id":50703,"role":"past_investor","created_at":"2011-08-22T10:24:22Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Mark
201
+ Yoshitake ","id":51304,"bio":"Google Product Management - Semantic Knowledge;
202
+ Head of Platform Solutions at YouTube; Microsoft eng alum, JP Morgan M&A alum,
203
+ 1st startup at UPenn CS program","follower_count":329,"angellist_url":"http://angel.co/mark-yoshitake","image":"https://s3.amazonaws.com/photos.angel.co/users/51304-medium?1314309611"}},{"id":50681,"role":"past_investor","created_at":"2011-08-22T05:34:22Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Amit
204
+ Sangani","id":52696,"bio":"Cofounder @ MightyText. Ex-Google(Mobile, Analytics,
205
+ Ads), Cisco(Engg), Startups(Product/Partner Management). Android & Cloud expertise.
206
+ BS in CS.","follower_count":192,"angellist_url":"http://angel.co/amit-sangani","image":"https://s3.amazonaws.com/photos.angel.co/users/52696-medium?1313999391"}},{"id":48536,"role":"past_investor","created_at":"2011-08-13T12:45:24Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Demian
207
+ Bellumio","id":22714,"bio":"COO of Senzari, Founder of HackDay Foundation,
208
+ President Aunken Ventures, Founding Shareholder BroadSpan Capital.","follower_count":444,"angellist_url":"http://angel.co/dbellumio","image":"https://s3.amazonaws.com/photos.angel.co/users/22714-medium?1301338871"}},{"id":47187,"role":"advisor","created_at":"2011-08-09T21:16:37Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Tyler
209
+ Willis","id":6484,"bio":"BD at Unified. Advisor to BranchOut. Was employee
210
+ #6 at Involver, grew customer base to more than 100K as the Head of Marketing
211
+ (now at over 1m).","follower_count":565,"angellist_url":"http://angel.co/tylerwillis","image":"https://s3.amazonaws.com/photos.angel.co/users/6484-medium?1325758622"}},{"id":46719,"role":"advisor","created_at":"2011-08-08T16:03:45Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Blake
212
+ Commagere","id":39359,"bio":"Single-handedly pioneered Social Gaming industry
213
+ (Vampires/Zombies). Created 1st version of Causes. Founder BuildForge (Sold
214
+ to IBM), Founder Ohai. ","follower_count":585,"angellist_url":"http://angel.co/blake-commagere","image":"https://s3.amazonaws.com/photos.angel.co/users/39359-medium?1312434863"}},{"id":46378,"role":"past_investor","created_at":"2011-08-06T07:40:23Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Anil
215
+ Hansjee","id":48404,"bio":"Angel and Advisor","follower_count":684,"angellist_url":"http://angel.co/anil-hansjee","image":"https://s3.amazonaws.com/photos.angel.co/users/48404-medium?1312616475"}},{"id":45263,"role":"past_investor","created_at":"2011-08-01T18:22:07Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Mike
216
+ Tsao","id":3187,"bio":"Former ex-Googler. All-around swell guy. Hobbies include
217
+ code reviews, exception handling, and logs analysis.","follower_count":238,"angellist_url":"http://angel.co/sowbug","image":"https://s3.amazonaws.com/photos.angel.co/users/3187-medium?1294804276"}},{"id":42372,"role":"past_investor","created_at":"2011-07-20T12:51:53Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Cyril
218
+ Ebersweiler","id":502,"bio":"Visionary Punk, founder of Chinaccelerator and
219
+ HAXLR8R, partner at SOSventures. Sometimes cowork with coconuts.","follower_count":780,"angellist_url":"http://angel.co/cyril","image":"https://s3.amazonaws.com/photos.angel.co/users/502-medium?1294803692"}},{"id":41879,"role":"past_investor","created_at":"2011-07-18T12:36:06Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"John
220
+ Musser","id":9881,"bio":"Founder and CEO, ProgrammableWeb","follower_count":334,"angellist_url":"http://angel.co/john-musser","image":"https://s3.amazonaws.com/photos.angel.co/users/9881-medium?1298705275"}},{"id":40382,"role":"advisor","created_at":"2011-07-09T23:32:48Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Stew
221
+ Langille","id":25074,"bio":"CEO and Co-Founder of Visual.ly\nVP Marketing
222
+ Mint.com\nCMO and Co-Founder of iKobo.com (Sold to Synovus), \n500 Startups
223
+ Mentor\nAdviser to DailyBurn (Sold)","follower_count":159,"angellist_url":"http://angel.co/stew-langille","image":"https://s3.amazonaws.com/photos.angel.co/users/25074-medium?1302507016"}},{"id":40379,"role":"advisor","created_at":"2011-07-09T23:31:08Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Benjamin
224
+ Joffe","id":3510,"bio":"''Mister Asia'' since 2000 (JP/KR/CN, SEA)\nMentor
225
+ @500startups @founder-institute @yetizen @jfdiasia, @gamma-rebels, @chinaccelerator \n100+
226
+ talks, 20 countries","follower_count":668,"angellist_url":"http://angel.co/benjaminjoffe","image":"https://s3.amazonaws.com/photos.angel.co/users/3510-medium?1294804361"}},{"id":38045,"role":"past_investor","created_at":"2011-06-24T22:35:30Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Greg
227
+ Cohn","id":39544,"bio":"Experienced entrepreneur, leader, & product- and tech-oriented
228
+ executive in startups and public companies. Ex-Yahoo, Waterfront Media, Away.com.","follower_count":499,"angellist_url":"http://angel.co/gregcohn","image":"https://s3.amazonaws.com/photos.angel.co/users/39544-medium?1309369294"}},{"id":34492,"role":"past_investor","created_at":"2011-06-07T22:58:16Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Jonathan
229
+ Ebinger","id":36559,"bio":"I''ve been investing in mobile since before it
230
+ was cool. I''ve invested and sold companies (profitably!) in US, Asia, and
231
+ Europe. I started and sold my own biz.","follower_count":244,"angellist_url":"http://angel.co/jebinger","image":"https://s3.amazonaws.com/photos.angel.co/users/36559-medium?1326950738"}},{"id":34480,"role":"past_investor","created_at":"2011-06-07T22:26:32Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Daryn
232
+ Nakhuda","id":27405,"bio":"15 years of tech roles at startups, currently at
233
+ AmazonLocal. Co-founder of Eyejot. Investor in TeachStreet, WillCall, Belle
234
+ Clementine, 500 Startups (fund)","follower_count":391,"angellist_url":"http://angel.co/daryn","image":"https://s3.amazonaws.com/photos.angel.co/users/27405-medium?1303023798"}},{"id":34167,"role":"past_investor","created_at":"2011-06-06T18:47:24Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Andrew
235
+ Ogawa","id":29547,"bio":"VC, Managing Partner, Quest Venture Partners, Haafu
236
+ (Japan/US), Thunderbird, UCSB, ASIJ","follower_count":528,"angellist_url":"http://angel.co/andrewogawa","image":"https://s3.amazonaws.com/photos.angel.co/users/29547-medium?1307384498"}},{"id":32875,"role":"advisor","created_at":"2011-05-29T23:50:39Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Leonard
237
+ Speiser","id":36002,"bio":"Co-founder Clover (Sutter Hill, Andreessen Horowitz),
238
+ Co-founder Bix (sold to Yahoo), eBay, Intuit, MIT.","follower_count":422,"angellist_url":"http://angel.co/leonard-speiser","image":"https://s3.amazonaws.com/photos.angel.co/users/36002-medium?1307153159"}},{"id":32873,"role":"advisor","created_at":"2011-05-29T23:48:44Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Brady
239
+ Forrest","id":35096,"bio":"Web 2.0 Expo, Where 2.0 Conference Chair; Founder
240
+ of Ignite events; O''Reilly Evangelist","follower_count":59,"angellist_url":"http://angel.co/brady-forrest","image":"https://s3.amazonaws.com/photos.angel.co/users/35096-medium?1306720857"}},{"id":32872,"role":"advisor","created_at":"2011-05-29T23:47:55Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Jason
241
+ Putorti","id":3589,"bio":"Co-founder of Votizen \u2022 Founder Advisor at
242
+ SV Angel \u2022 First Designer-in-Residence at Bessemer \u2022 Former Lead
243
+ Designer at Mint.com","follower_count":1897,"angellist_url":"http://angel.co/putorti","image":"https://s3.amazonaws.com/photos.angel.co/users/3589-medium?1296926997"}},{"id":32871,"role":"advisor","created_at":"2011-05-29T23:44:29Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Dave
244
+ Schappell","id":3170,"bio":"Director of Product, AmazonLocal. Former founder
245
+ and CEO, TeachStreet","follower_count":560,"angellist_url":"http://angel.co/daveschappell","image":"https://s3.amazonaws.com/photos.angel.co/users/3170-medium?1294804269"}},{"id":32870,"role":"advisor","created_at":"2011-05-29T23:43:25Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Victoria
246
+ Ransom","id":35196,"bio":"Founder of Wildfire Interactive. Advisor to 500
247
+ Startups (Fund).","follower_count":53,"angellist_url":"http://angel.co/victoria-ransom","image":"https://s3.amazonaws.com/photos.angel.co/users/35196-medium?1306802254"}},{"id":32869,"role":"advisor","created_at":"2011-05-29T23:42:39Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Rashmi
248
+ Sinha","id":35216,"bio":"Advisor to 500 Startups (Fund).","follower_count":30,"angellist_url":"http://angel.co/rashmi-sinha","image":"http://angel.co/images/nopic.png"}},{"id":32868,"role":"advisor","created_at":"2011-05-29T23:42:00Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Charles
249
+ Hudson","id":1914,"bio":"Venture Partner at SoftTech VC (with @jeff), CEO
250
+ and Co-Founder of Bionic Panda Games. BD roles at Serious Business (now part
251
+ of Zynga), Google, and Gaia Online","follower_count":1977,"angellist_url":"http://angel.co/chudson","image":"https://s3.amazonaws.com/photos.angel.co/users/1914-medium?1294804012"}},{"id":32867,"role":"advisor","created_at":"2011-05-29T23:40:47Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Eric
252
+ Ries","id":17334,"bio":"Author of The Lean Startup","follower_count":6759,"angellist_url":"http://angel.co/ericries","image":"https://s3.amazonaws.com/photos.angel.co/users/17334-medium?1323882120"}},{"id":32866,"role":"advisor","created_at":"2011-05-29T23:39:28Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Jeff
253
+ Lawson","id":26786,"bio":"Entrepreneur, CEO and cofounder of Twilio.","follower_count":854,"angellist_url":"http://angel.co/jeff-lawson1","image":"https://s3.amazonaws.com/photos.angel.co/users/26786-medium?1306973402"}},{"id":32865,"role":"advisor","created_at":"2011-05-29T23:38:41Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Hiten
254
+ Shah","id":1572,"bio":"CEO / Co-Founder of @KISSmetrics. Previously started
255
+ @crazyegg and @acs. My hobby is helping entrepreneurs create something out
256
+ of nothing.","follower_count":2248,"angellist_url":"http://angel.co/hnshah","image":"https://s3.amazonaws.com/photos.angel.co/users/1572-medium?1294803942"}},{"id":31760,"role":"founder","created_at":"2011-05-22T23:11:15Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Paul
257
+ Singh","id":1274,"bio":"Partner at 500 Startups","follower_count":3239,"angellist_url":"http://angel.co/paulsingh","image":"https://s3.amazonaws.com/photos.angel.co/users/1274-medium?1294803879"}},{"id":31314,"role":"past_investor","created_at":"2011-05-19T00:35:14Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Steve
258
+ Markowitz","id":3795,"bio":"- Private investor since 2001\n- Founding chairman/CEO,
259
+ MyPoints.com; led $46MM IPO & $211MM secondary offering\n- Grew consumer membership
260
+ from zero to 16MM","follower_count":1130,"angellist_url":"http://angel.co/smarkowitz","image":"https://s3.amazonaws.com/photos.angel.co/users/3795-medium?1314405824"}},{"id":20719,"role":"past_investor","created_at":"2011-04-06T07:47:23Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Marcus
261
+ Ogawa","id":1329,"bio":"Managing Partner of early stage VC firm Quest Venture
262
+ Partners. Board member and major investor at Qik (sold to Skype), investor
263
+ in Tapulous (sold to Disney). ","follower_count":929,"angellist_url":"http://angel.co/marcusogawa","image":"https://s3.amazonaws.com/photos.angel.co/users/1329-medium?1294803892"}},{"id":7814,"role":"past_investor","created_at":"2011-03-02T12:08:48Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Maneesh
264
+ Arora","id":306,"bio":"CEO/Cofounder @ MightyText. Product Management: Google
265
+ (Consumer,Ads), Zynga. Google Founders Award:AdSense. b4:Enterprise software.
266
+ CS degree UCLA. 500S Mentor","follower_count":1135,"angellist_url":"http://angel.co/maneesh","image":"https://s3.amazonaws.com/photos.angel.co/users/306-medium?1294803620"}},{"id":5555,"role":"past_investor","created_at":"2011-02-14T20:17:21Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Ramesh
267
+ Haridas","id":94,"bio":"Serial entrepreneur with a couple of exits. Early
268
+ investor in AVG, Mashery, 8tracks, Refinery29, Rapportive, 500Startups. UIUC
269
+ Computer Science.","follower_count":1006,"angellist_url":"http://angel.co/rameshharidas","image":"https://s3.amazonaws.com/photos.angel.co/users/94-medium?1297142922"}},{"id":3879,"role":"past_investor","created_at":"2011-01-22T01:07:56Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Matt
270
+ Mullenweg","id":131,"bio":"WordPress, Automattic, Akismet, Polldaddy, VaultPress,
271
+ Gravatar...\r\nhttp://ma.tt/","follower_count":3840,"angellist_url":"http://angel.co/photomatt","image":"https://s3.amazonaws.com/photos.angel.co/users/131-medium?1294803538"}},{"id":3622,"role":"past_investor","created_at":"2011-01-18T21:51:09Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Bill
272
+ Boebel","id":832,"bio":"Entrepreneur/engineer. CTO/co-founder Webmail.us (acq
273
+ RAX). I also help a few amazing companies, including via Capital Factory,
274
+ 500 Startups, TechStars & 21212","follower_count":1338,"angellist_url":"http://angel.co/billboebel","image":"https://s3.amazonaws.com/photos.angel.co/users/832-medium?1294803785"}},{"id":1780,"role":"past_investor","created_at":"2010-12-08T03:48:28Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Stephen
275
+ DeBerry","id":66,"bio":"Partner at Kapor Capital and founder at Bronze Investments.","follower_count":783,"angellist_url":"http://angel.co/stephendeberry","image":"https://s3.amazonaws.com/photos.angel.co/users/66-medium?1294803489"}},{"id":1777,"role":"past_investor","created_at":"2010-12-08T03:48:28Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Dharmesh
276
+ Shah","id":153,"bio":"Founder and CTO of HubSpot and blogger at OnStartups.com","follower_count":5986,"angellist_url":"http://angel.co/dharmesh","image":"https://s3.amazonaws.com/photos.angel.co/users/153-medium?1314297689"}},{"id":1760,"role":"past_investor","created_at":"2010-12-08T03:48:28Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Karl
277
+ Jacob","id":385,"bio":"Keen (Ingenio), DimensionX, Wallop, Coveroo and Cloudmark. $500+
278
+ million in exits to msft, at&t etc. Early advisor to facebook. ","follower_count":2054,"angellist_url":"http://angel.co/karl","image":"https://s3.amazonaws.com/photos.angel.co/users/385-medium?1310661140"}},{"id":1753,"role":"past_investor","created_at":"2010-12-08T03:48:27Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Fred
279
+ Wilson","id":743,"bio":"Managing partner at Union Square Ventures and also
280
+ founded Flatiron Partners.","follower_count":7619,"angellist_url":"http://angel.co/fredwilson","image":"https://s3.amazonaws.com/photos.angel.co/users/743-medium?1294803766"}},{"id":1750,"role":"past_investor","created_at":"2010-12-08T03:48:27Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Brad
281
+ Feld","id":120,"bio":"Managing Director at Foundry Group","follower_count":7356,"angellist_url":"http://angel.co/bfeld","image":"https://s3.amazonaws.com/photos.angel.co/users/120-medium?1311694970"}},{"id":1748,"role":"past_investor","created_at":"2010-12-08T03:48:27Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Mitch
282
+ Kapor","id":77,"bio":"Lotus founder, built from 0 to $200MM in 3 yrs. Co-founder
283
+ EFF. Founding Chair Mozilla. Investor: Twilio, Uber, Inkling, bit.ly. ","follower_count":8945,"angellist_url":"http://angel.co/mkapor","image":"https://s3.amazonaws.com/photos.angel.co/users/77-medium?1294803497"}},{"id":1746,"role":"past_investor","created_at":"2010-12-08T03:48:27Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Dave
284
+ McClure","id":144,"bio":"Founding Partner @ 500 Startups. Ex-PayPal, Facebook
285
+ fbFund, Founders Fund, Mint.com. Geek, developer, entrepreneur, marketer.
286
+ Investor in 250+ co''s.","follower_count":15998,"angellist_url":"http://angel.co/davemcclure","image":"https://s3.amazonaws.com/photos.angel.co/users/144-medium?1294803547"}},{"id":1302,"role":"founder","created_at":"2010-11-18T07:43:22Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Christine
287
+ Tsai","id":2719,"bio":"Partner at 500 Startups. Ex-Googler & ex-YouTuber.
288
+ Left-handed.","follower_count":5965,"angellist_url":"http://angel.co/christinetsai","image":"https://s3.amazonaws.com/photos.angel.co/users/2719-medium?1333648741"}},{"id":1253,"role":"founder","created_at":"2010-11-16T01:50:25Z","started_at":null,"ended_at":null,"confirmed":true,"user":{"name":"Dave
289
+ McClure","id":144,"bio":"Founding Partner @ 500 Startups. Ex-PayPal, Facebook
290
+ fbFund, Founders Fund, Mint.com. Geek, developer, entrepreneur, marketer.
291
+ Investor in 250+ co''s.","follower_count":15998,"angellist_url":"http://angel.co/davemcclure","image":"https://s3.amazonaws.com/photos.angel.co/users/144-medium?1294803547"}}]}'
292
+ http_version: !!null
293
+ recorded_at: Sun, 22 Apr 2012 00:35:06 GMT
294
+ - request:
295
+ method: get
296
+ uri: https://api.angel.co/1/startup_roles?user_id=2850
297
+ body:
298
+ encoding: US-ASCII
299
+ string: ''
300
+ headers:
301
+ Accept:
302
+ - application/json
303
+ User-Agent:
304
+ - AngellistApi Ruby Gem 1.0.1
305
+ response:
306
+ status:
307
+ code: 200
308
+ message: !!null
309
+ headers:
310
+ server:
311
+ - nginx/1.0.6
312
+ date:
313
+ - Sun, 22 Apr 2012 00:35:10 GMT
314
+ content-type:
315
+ - application/json; charset=utf-8
316
+ transfer-encoding:
317
+ - chunked
318
+ connection:
319
+ - close
320
+ vary:
321
+ - Accept-Encoding, Accept-Encoding
322
+ status:
323
+ - '200'
324
+ x-powered-by:
325
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
326
+ x-ratelimit-limit:
327
+ - '1000'
328
+ x-ratelimit-remaining:
329
+ - '978'
330
+ x-thanks:
331
+ - For using AngelList. Rock on.
332
+ x-runtime:
333
+ - '1929'
334
+ etag:
335
+ - ! '"56ec889550399eeec82b8d91ef5aec48"'
336
+ cache-control:
337
+ - private, max-age=0, must-revalidate
338
+ body:
339
+ encoding: ASCII-8BIT
340
+ string: ! '{"startup_roles":[{"id":209842,"role":"incubator","created_at":"2012-04-16T20:07:35Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":80314,"hidden":false,"community_profile":false,"name":"Bombfell","angellist_url":"http://angel.co/bombfell","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80314-6e8a59e9050370ccae85207c6fb3f3d5-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80314-6e8a59e9050370ccae85207c6fb3f3d5-thumb.png","product_desc":"Featured
341
+ on Techcrunch, Match.com, Glamour, Financial Times and SheKnows.\n\nClothes
342
+ shopping today is tuned to female buying habits - for browsing instead of
343
+ seek-and-destroy efficient buying.\n\nBombfell is a monthly subscription for
344
+ men''s clothing built to enable guys who lack time or don''t know what to
345
+ buy to dress well. Members tell us their wardrobe needs and we send them a
346
+ personalized selection every month.\n\nLaunched late 2011 and already ramen
347
+ profitable.","high_concept":"Shoedazzle for men''s clothing","follower_count":74,"company_url":"http://www.bombfell.com/"}},{"id":205790,"role":"incubator","created_at":"2012-04-11T03:00:21Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19563,"hidden":false,"community_profile":false,"name":"9GAG","angellist_url":"http://angel.co/9gag","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19563-3bb24ef47482a01ad8e319328f00ca82-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19563-3bb24ef47482a01ad8e319328f00ca82-thumb.png","product_desc":"9GAG
348
+ is the simplest way for everyone to publish, collect and share fun. It has
349
+ 1 billion monthly pageviews (updated Dec 2011).","high_concept":"60M Uniques
350
+ & 1.7B Pageviews - Fun Sharing Community","follower_count":189,"company_url":"http://9gag.com"}},{"id":205421,"role":"incubator","created_at":"2012-04-10T19:48:54Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":4776,"hidden":false,"community_profile":false,"name":"Groupiter","angellist_url":"http://angel.co/groupiter","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4776-3f5660f47e9d2ed003227bda099500c0-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4776-3f5660f47e9d2ed003227bda099500c0-thumb.png","product_desc":"A
351
+ new approach to file sharing that''s effortless, easy, human. Coming soon...\n","high_concept":"Chat
352
+ for Dropbox''s 60 million Users [500 Startups S2012]","follower_count":132,"company_url":"https://groupiter.com"}},{"id":203305,"role":"incubator","created_at":"2012-04-07T22:01:17Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":9434,"hidden":false,"community_profile":false,"name":"Teamly","angellist_url":"http://angel.co/teamly","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/9434-327673b4b503fbd1bff38b62052163f9-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/9434-327673b4b503fbd1bff38b62052163f9-thumb.png","product_desc":"Covered
353
+ by WSJ, The Guardian, GigaOm, Lifehacker, BusinessInsider and The Next Web.\n\nManaging
354
+ your productivity is hard; managing other people at work is even harder.\n\nTeamly
355
+ aims to help people be awesome at work, help them get the right work done,
356
+ keep them motivated, record their achievements and collaborate better with
357
+ colleagues.\n\nWe make money from company subscriptions, which provides managers
358
+ with enhanced reporting and a better way to manage employee performance.","high_concept":"Gamifying
359
+ work to make employees and companies more awesome","follower_count":418,"company_url":"http://teamly.com"}},{"id":203024,"role":"incubator","created_at":"2012-04-07T02:16:24Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19119,"hidden":false,"community_profile":false,"name":"ActivityHero","angellist_url":"http://angel.co/activityhero","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19119-b2db7235a9f34834cf4006e8856a82fb-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19119-b2db7235a9f34834cf4006e8856a82fb-thumb.png","product_desc":"Yelp
360
+ for kids activities and summer camps.\n\nWe make life easier for busy moms.
361
+ It''s a pain to find that basketball camp or ballet class that fits your schedule
362
+ & budget without calling up each vendor.\n\nEnter http://ActivityHero.com
363
+ & http://SignUpForCamp.com\n\nSimply search by age, interest, zipcode, schedule;
364
+ plan your summer using the calendar; share with friends to carpool; and, even
365
+ register for classes.\n\nOver 100,000 moms from the SF Bay Area & Philly used
366
+ our website to find camps last year","high_concept":"Yelp for after-school
367
+ activities and summer camps.","follower_count":33,"company_url":"http://www.activityhero.com"}},{"id":202899,"role":"incubator","created_at":"2012-04-06T21:55:23Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":81433,"hidden":false,"community_profile":false,"name":"Monogram","angellist_url":"http://angel.co/monogram","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/81433-4d55dd98692d7097e031cdbf7ec48f9b-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/81433-4d55dd98692d7097e031cdbf7ec48f9b-thumb.png","product_desc":"Do
368
+ you wish you had time to browse all your favorite fashion sites regularly?\n\nAre
369
+ you tired of manually filtering through layers of categories, brands, colors
370
+ and sizes over and over and over again?\n\nDo you wish there''s an easier
371
+ way to keep track of new releases and deals?\n\nMonogram is your personal
372
+ shopper on the iPad. It''s like a personal boutique store where everything
373
+ caters to your unique styles.","high_concept":"Flipboard for fashion -- like
374
+ having your own personal shopper at Barney''s","follower_count":30,"company_url":"http://www.getmonogram.com"}},{"id":202654,"role":"past_investor","created_at":"2012-04-06T17:19:25Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":39284,"hidden":false,"community_profile":true,"name":"Aslan
375
+ Computing","angellist_url":"http://angel.co/aslan-computing","logo_url":"http://angel.co/images/icons/startup-nopic.png","thumb_url":"http://angel.co/images/icons/startup-nopic.png","product_desc":null,"high_concept":null,"follower_count":4,"company_url":null}},{"id":201514,"role":"incubator","created_at":"2012-04-05T03:38:01Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":65640,"hidden":false,"community_profile":false,"name":"Fontacto","angellist_url":"http://angel.co/fontacto","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/65640-9470fcc8599592146011009754e6de96-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/65640-9470fcc8599592146011009754e6de96-thumb.png","product_desc":"Fontacto
376
+ is a cloud platform that allows entrepreneurs and small businesses to sound
377
+ more professional and get calls on any phone or skype user. No hardware, no
378
+ long term contracts. Manage it online.\n\nEntrepreneurs get local or international
379
+ presence by choosing numbers from multiple cities.\n\nFontacto operates in
380
+ Latin America, mainly in Mexico, where it is the first service specially designed
381
+ for entrepreneurs & small businesses.","high_concept":"Entrepreneur''s virtual
382
+ phone system","follower_count":84,"company_url":"http://fontacto.com"}},{"id":201449,"role":"incubator","created_at":"2012-04-05T02:08:16Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":80977,"hidden":false,"community_profile":false,"name":"Ingresse","angellist_url":"http://angel.co/ingresse","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80977-e1e03a7f8ac2ba4bd28c9fb265c827d6-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80977-e1e03a7f8ac2ba4bd28c9fb265c827d6-thumb.png","product_desc":"Ingresse
383
+ allows users to discover events they love and purchase tickets in a social
384
+ way. We work to extend the social experience of a real event to the web.","high_concept":"Ingresse
385
+ is an online social ticketing platform for Brazil","follower_count":19,"company_url":"http://www.ingres.se"}},{"id":200668,"role":"incubator","created_at":"2012-04-04T09:20:19Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":3204,"hidden":false,"community_profile":false,"name":"Toshl","angellist_url":"http://angel.co/toshl","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3204-c06d02817ccd857972fae766645089eb-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3204-c06d02817ccd857972fae766645089eb-thumb.png","product_desc":"Toshl
386
+ is personal finance manager that makes finance fun. It offers a light-hearted
387
+ quantified-self approach with serious data. It''s based on mobile apps which
388
+ sync to the web cloud at toshl.com. Toshl makes it easy to track, analyze
389
+ and save your money.\nToshl is available for iPhone, Android, Nokia Symbian^3,
390
+ MeeGo, WP7 and BlackBerry platforms.\nWe''re building a system to automatically
391
+ import online bank data and build an open financial API on top of that, accessible
392
+ to 3rd party developers.","high_concept":"Fun personal finance manager & financial
393
+ API","follower_count":111,"company_url":"http://www.toshl.com/"}},{"id":200535,"role":"incubator","created_at":"2012-04-04T03:31:46Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
394
+ Startups (Fund)","angellist_url":"http://angel.co/500-startups-fund","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb.png","product_desc":"500
395
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
396
+ We invest in internet startups on search, social, & mobile platforms. We run
397
+ an incubation and accelerator program emphasizing design & user experience,
398
+ distribution & customer acquisition, and lean startup practices & metrics.
399
+ Our investment team and mentor network has operational experience at companies
400
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
401
+ & Facebook.","high_concept":"Silicon Valley micro-VC fund & accelerator founded
402
+ by ex-PayPal, Google, YouTube alums.","follower_count":3257,"company_url":"http://500.co"}},{"id":199359,"role":"incubator","created_at":"2012-04-03T00:17:21Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":29428,"hidden":false,"community_profile":false,"name":"Tie
403
+ Society","angellist_url":"http://angel.co/tie-society","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/29428-79202762c1611eeac9485ac4b4b57814-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/29428-79202762c1611eeac9485ac4b4b57814-thumb.png","product_desc":"Featured:
404
+ The Washington Post, NPR, Voice of America.\n\nA large demographic of professionals
405
+ are priced out of the market for high-end neckwear, yet one''s appearance
406
+ in the office plays a vital role in one''s professional advancement and self-esteem.\n\nSolution:
407
+ An affordable rental subscription service for professionals. We make it easy
408
+ and fun to dress well.\n\nOver 400 packages shipped in 4 months, m/m paid
409
+ member growth of 164%... absent traditional advertising. We''re just getting
410
+ started.","high_concept":"Netflix for ties. We help guys find great ties for
411
+ their wardrobe.","follower_count":32,"company_url":"http://www.tiesociety.com"}},{"id":199292,"role":"incubator","created_at":"2012-04-02T23:36:36Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":21031,"hidden":false,"community_profile":false,"name":"Chalkable","angellist_url":"http://angel.co/chalkable","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21031-c420b108c709c110caafa41974444202-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21031-c420b108c709c110caafa41974444202-thumb.png","product_desc":"Chalkable
412
+ is a learning platform designed to organize, connect and report \u2013 we
413
+ built it to make learning better.\n\nBaked into simple user interfaces are
414
+ Chalkable\u2019s core functions. Things like calendar, reporting, grading
415
+ and messaging have all been retooled to work together seamlessly in the school
416
+ setting. The tight integration of Chalkable\u2019s core elements provides
417
+ a great platform to allow existing web apps, as well as those that have yet
418
+ to be built, a gateway into school.","high_concept":"App store for school
419
+ + the platform to allow those apps to work.","follower_count":35,"company_url":"http://www.chalkable.com"}},{"id":199272,"role":"incubator","created_at":"2012-04-02T23:09:42Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":817,"hidden":false,"community_profile":false,"name":"TeliportMe","angellist_url":"http://angel.co/teliportme","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/817-56d463b7c815caffef1a4e15c5e82d2c-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/817-56d463b7c815caffef1a4e15c5e82d2c-thumb.jpg","product_desc":"TeliportMe
420
+ is a travel website created using crowd sourced geotagged images and panoramas. ","high_concept":"TeliportMe
421
+ is the Googlestreetview for everyplace","follower_count":36,"company_url":"http://www.teliportme.com"}},{"id":198998,"role":"incubator","created_at":"2012-04-02T19:15:06Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":58611,"hidden":false,"community_profile":false,"name":"Yogome","angellist_url":"http://angel.co/yogome","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/58611-b6a69372c3fb3fce56d817bb3abd3216-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/58611-b6a69372c3fb3fce56d817bb3abd3216-thumb.png","product_desc":"Our
422
+ games help kids learn, and take action!\n\nYogome is building games for iPads
423
+ so kids can practice Math, learn languages, know about Recycling and the Environment,
424
+ Nutrition, discover Science, Geography and History in a fun way that they
425
+ wouldn''t even notice they are learning.\n\nOur goal is to connect kids all
426
+ around the world playing and learning at the same time, creating knowledge
427
+ and developing skills for their future life.","high_concept":"Fun & educational
428
+ games for kids ages 6 - 12 on iPhone & iPad","follower_count":50,"company_url":"http://yogome.com"}},{"id":198997,"role":"incubator","created_at":"2012-04-02T19:12:13Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":79828,"hidden":false,"community_profile":false,"name":"TenderTree","angellist_url":"http://angel.co/tendertree","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/79828-fa54bd7d53e110d9aab745cd0ecb0908-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/79828-fa54bd7d53e110d9aab745cd0ecb0908-thumb.jpg","product_desc":"Hiring
429
+ a home caregiver is ridiculously expensive! It shouldn\u2019t cost $30/hr
430
+ to hire a caregiver who\u2019s only getting paid $10/hr. \n\nYou can see photos
431
+ and reviews of restaurants and hotels, but not of the person taking care of
432
+ your loved one. Isn\u2019t that crazy?\n \nTenderTree is changing all that.\n\nSearch
433
+ our trusted network of pre-screened caregivers with photos and reviews and
434
+ hire the best one.\n","high_concept":"Marketplace for senior care. [500Startups
435
+ S12]","follower_count":131,"company_url":"https://www.tendertree.com"}},{"id":198942,"role":"incubator","created_at":"2012-04-02T18:20:38Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":80321,"hidden":false,"community_profile":false,"name":"Uscoop","angellist_url":"http://angel.co/uscoop","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80321-05ada89c3980ace8eb6713ed7e0e931d-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80321-05ada89c3980ace8eb6713ed7e0e931d-thumb.jpg","product_desc":"Seen
436
+ in The Washington Post, AOL Small Business, Washington Business Journal, &
437
+ Tech Cocktail. \n\nUscoop is a social commerce platform for preps. We aggregate
438
+ small and large all-American brands and sell them on one platform. We are
439
+ disrupting the retail world, by allowing the customer to be the stylist and
440
+ model. We product place our items on fashionable consumers and use these images
441
+ to curate sales.\n\nWhy? We are more influenced by our stylish friends and
442
+ their lifestyles than generic models.","high_concept":"Social Commerce for
443
+ Preps","follower_count":34,"company_url":"http://www.uscoop.com"}},{"id":198873,"role":"incubator","created_at":"2012-04-02T17:36:52Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":80305,"hidden":false,"community_profile":false,"name":"UmbaBox","angellist_url":"http://angel.co/umbabox","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80305-e9c43c29e397dae19d6bb5889cc3505e-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80305-e9c43c29e397dae19d6bb5889cc3505e-thumb.jpg","product_desc":"Umba
444
+ Box allows people to effortlessly discover handmade products by delivering
445
+ monthly curated packages of women''s goods to subscribers. \n\nWe''ve appeared
446
+ in The Washington Post, Forbes online, and TIME.com., Mashable, and TechCrunch.
447
+ ","high_concept":"Birchbox for Etsy","follower_count":21,"company_url":"http://www.umbabox.com"}},{"id":198693,"role":"incubator","created_at":"2012-04-02T14:38:05Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":30459,"hidden":false,"community_profile":false,"name":"Twitmusic","angellist_url":"http://angel.co/twitmusic","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30459-6cef9b507535b7d33a02bd624fd3f328-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30459-6cef9b507535b7d33a02bd624fd3f328-thumb.jpg","product_desc":"4,200+
448
+ musicians have registered & reach 23,000,000+ Twitter followers. Artists include:
449
+ Jason Mraz, Bow Wow, Mike Posner, MC Hammer, Bryan Adams, Jon Secada,, Goo
450
+ Goo Dolls.\n\nTech Crunch: \"Manila-Based Social Music Service Twitmusic Makes
451
+ It Into 500 Startups\" http://tcrn.ch/HZqDc6\n\nThe Next Web: \"Twitmusic
452
+ is socializing the Web music industry using Twitter and top artists\" http://tnw.co/HOVXKb\n\nHuffington
453
+ Post: \"Twitmusic - Welcome to the Music Industry''s New Order\" http://huff.to/zk6TbI
454
+ \n","high_concept":"Twitmusic lets musicians effectively share & promote their
455
+ music on Twitter.","follower_count":107,"company_url":"http://www.twitmusic.com"}},{"id":198371,"role":"incubator","created_at":"2012-04-02T05:54:44Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":80126,"hidden":false,"community_profile":false,"name":"PublikDemand","angellist_url":"http://angel.co/publikdemand","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80126-f2a51b35e05748089972883aa2360ec9-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80126-f2a51b35e05748089972883aa2360ec9-thumb.png","product_desc":"Featured
456
+ on New York TImes, CNN, Fox and ABC and TechCrunch.\n\nHave an issue with
457
+ a big company that you haven''t been able to resolve on your own?\n\nUse PublikDemand
458
+ to share your story. Find others who have had the same problem and start a
459
+ viral complaint that gets your issue noticed!\n\nIf the company won''t resolve
460
+ your issue, opt-in to exclusive offers to switch from their competitors.\n\nOver
461
+ 400,000 people reached by PublikDemand in the first 30 days after launch.\n","high_concept":"Better
462
+ Business Bureau Meets Social [500Startups S12]","follower_count":108,"company_url":"http://www.publikdemand.com"}},{"id":198016,"role":"incubator","created_at":"2012-04-01T17:48:29Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19184,"hidden":false,"community_profile":false,"name":"CardFlick","angellist_url":"http://angel.co/cardflick","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19184-b2652a86d71a675ecff437dfaabdd288-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19184-b2652a86d71a675ecff437dfaabdd288-thumb.png","product_desc":"Featured
463
+ on Washington Post, Mashable, PCWorld...\n\nBusiness cards are a pain to create
464
+ and manage.\n\nCardFlick - Create a beautiful business card on your phone.
465
+ Share it with a tap or a \"flick\". Keep track of when and where you met.
466
+ \nOther user doesn''t have the app? You can always email your card to in 1
467
+ tap.\n\n90,000+ downloads. A new user every 7 minutes. 15% weekly engagement.
468
+ Top ranked in over 60 countries. Average user sends 2.66 cards.\n\nFirst impressions
469
+ never looked better.","high_concept":"Create and Share Business Cards - 500
470
+ Startups S12","follower_count":147,"company_url":"http://cardflick.co"}},{"id":197828,"role":"incubator","created_at":"2012-03-31T22:51:48Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":12882,"hidden":false,"community_profile":false,"name":"Sqoot","angellist_url":"http://angel.co/sqoot","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12882-50004250482c969e2c1c63b7228c708f-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12882-50004250482c969e2c1c63b7228c708f-thumb.png","product_desc":"We
471
+ power local deals in the things you use (web, mobile, desktop, etc).\n\nOur
472
+ local deal API helps:\n- Publishers & developers add revenue, engagement,
473
+ & local relevance \n- Advertisers gain targeted distribution\n\nWe serve 3,000,000+
474
+ deals/mo & are ramen profitable. And we''re just getting started. In Q2 we''ll
475
+ start selling data about our 250,000+ merchants.","high_concept":"Twilio for
476
+ Deals.","follower_count":146,"company_url":"http://www.sqoot.com"}},{"id":197615,"role":"incubator","created_at":"2012-03-31T13:54:52Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":25976,"hidden":false,"community_profile":false,"name":"Storypanda","angellist_url":"http://angel.co/storypanda","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25976-f8354cbb35987f31b1d68c7672da71e0-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25976-f8354cbb35987f31b1d68c7672da71e0-thumb.png","product_desc":"Making
477
+ kids stories collaborative. \n\nWe''ve updated the family reading experience
478
+ for the iPad generation by allowing kids and parents to read, create and share
479
+ their own stories. By using our story templates and core animations, families
480
+ use their creativity to create together. \n\nWe''ve partnered with major TV
481
+ networks, publishers and indie authors to keep new stories and story templates
482
+ stocked on our Storypanda bookshelf.\n\nOne app, unlimited stories and unlimited
483
+ creative potential!","high_concept":"Making kids stories collaborative - 500
484
+ Startups S12","follower_count":56,"company_url":"http://www.storypanda.com"}},{"id":197565,"role":"incubator","created_at":"2012-03-31T08:20:07Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":31917,"hidden":false,"community_profile":false,"name":"Timbuktu
485
+ Labs","angellist_url":"http://angel.co/timbuktu-labs","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31917-739dc29ba27e0dfc9673a9e72007562d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31917-739dc29ba27e0dfc9673a9e72007562d-thumb.png","product_desc":"Timbuktu
486
+ is the iPad magazine for you and your children. We curate and deliver the
487
+ best contents and activities for young families and inspire them to improve
488
+ the quality of the time they spend together. We call this invisible education.\n\nWe
489
+ partner with Nintendo, Reggio Children and McSweeney''s. We won the 2012 Italian
490
+ Innovation Day in Berkeley and were nominated Best Italian Startup. We were
491
+ featured by Apple as a New and Noteworthy App in Education (US Top 5).","high_concept":"We
492
+ are Flipboard for families","follower_count":102,"company_url":"http://www.timbuktu.me"}},{"id":197200,"role":"past_investor","created_at":"2012-03-30T20:05:06Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":64339,"hidden":false,"community_profile":false,"name":"Cashie
493
+ Commerce","angellist_url":"http://angel.co/cashie-commerce","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/64339-61ae3b3bf19c17704324fc9b5b68e6cc-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/64339-61ae3b3bf19c17704324fc9b5b68e6cc-thumb.png","product_desc":"We''re
494
+ the fastest way for SMBs to start selling on any website or blog. Our dead
495
+ simple shopping cart service replaces existing solutions that are too hard
496
+ and too expensive for the 15MM smaller businesses and sole proprietors who
497
+ want to sell online.\n\nOur platform is live with over 10K trials and hundreds
498
+ of stores transacting worldwide. We''re in the EvoNexus tech incubator and
499
+ raising our seed round led by Tech Coast Angels with participation from Dave
500
+ McClure (500 Startups) and others.","high_concept":"Enabling 15M SMBs to get
501
+ into the $260B e-commerce game.","follower_count":49,"company_url":"http://cashiecommerce.com"}},{"id":190028,"role":"past_investor","created_at":"2012-03-21T04:56:51Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":25065,"hidden":false,"community_profile":false,"name":"Retailigence","angellist_url":"http://angel.co/retailigence","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25065-329f07afa2565f913ecc3b52a0ebb468-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25065-329f07afa2565f913ecc3b52a0ebb468-thumb.png","product_desc":"Retailigence
502
+ increases foot-traffic and revenue for local stores by ensuring that shoppers
503
+ looking online (usually via mobile) for a specific product or brand (and with
504
+ an intent to buy), see availability in local nearby stores. Retailigence
505
+ also works with product brands to infuse local path-to-purchase information
506
+ into various types of brand advertising.","high_concept":"Local Shopping infrastructure
507
+ for local product search & online-to-offline commerce","follower_count":103,"company_url":"http://www.Retailigence.com"}},{"id":180254,"role":"past_investor","created_at":"2012-03-06T17:36:26Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":25025,"hidden":false,"community_profile":false,"name":"Talkdesk","angellist_url":"http://angel.co/talkdesk","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25025-642a145332ba4586493ed808900d79d8-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25025-642a145332ba4586493ed808900d79d8-thumb.png","product_desc":"79%
508
+ of customers prefer phone as the support channel but only big companies have
509
+ the means to do it properly.\n\nTalkdesk lets your company create a call center
510
+ in less than 5 minutes - all in the browser. It provides information about
511
+ the caller in real-time by integrating with services such as Salesforce and
512
+ Zendesk.\n\n+600 companies on waiting list.\n\nCloudBeat Finalists: http://bit.ly/rEcf5e\nTwilio
513
+ First 5 Live Winners: http://bit.ly/mQ81H1\nTwilio Fund Winners: http://bit.ly/npmHDN","high_concept":"Create
514
+ a call center for your company in 5 minutes - all in the browser.","follower_count":161,"company_url":"http://talkdeskapp.com"}},{"id":172300,"role":"past_investor","created_at":"2012-02-27T19:20:02Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":20336,"hidden":false,"community_profile":false,"name":"Mile
515
+ High Organics","angellist_url":"http://angel.co/mile-high-organics","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20336-c908d7741cf14df573d229e28293872f-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20336-c908d7741cf14df573d229e28293872f-thumb.png","product_desc":"Mile
516
+ High Organics is Colorado''s natural online grocer. Members order online
517
+ and receive convenient, scheduled home or office delivery of local, organic,
518
+ non-GMO (non-genetically modified) produce, dairy, meat and other groceries.","high_concept":"High
519
+ growth, organic e-grocer","follower_count":271,"company_url":"http://www.milehighorganics.com"}},{"id":171035,"role":"past_investor","created_at":"2012-02-27T17:37:14Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":3147,"hidden":false,"community_profile":false,"name":"Trusted
520
+ Insight","angellist_url":"http://angel.co/trusted-insight","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3147-c297becf01dedf0d36ef4a0fb0f21cc6-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3147-c297becf01dedf0d36ef4a0fb0f21cc6-thumb.jpg","product_desc":"Through
521
+ the effective use of crowd-sourcing and social online networking, TI brings
522
+ efficiency and transparency to the practice of institutional investing in
523
+ alternative investments. \n\nTrusted Insight (TI) is a social marketplace
524
+ for institutional investors in alternative investments. The TI product is
525
+ an invite-only web-based trust network, allowing its users to share deals,
526
+ make connections, and manage their portfolios in a private secure environment. Investors
527
+ and funds post deals publicly or privately and make investments using the
528
+ TI platform.","high_concept":"A Social Marketplace for Institutional Investors","follower_count":85,"company_url":"http://thetrustedinsight.com"}},{"id":167403,"role":"past_investor","created_at":"2012-02-22T00:27:06Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":28118,"hidden":false,"community_profile":false,"name":"Pixowl","angellist_url":"http://angel.co/pixowl","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/28118-002a47c9972b12d34a09530f51dee795-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/28118-002a47c9972b12d34a09530f51dee795-thumb.jpg","product_desc":"Pixowl
529
+ makes Mobile Family Games.\n\nOur first game Doodle Grub has been downloaded
530
+ 4 millions times in 6 months. \n\nOur future release The Sandbox is like \"Minecraft
531
+ for Mobile\" where you can build your own worlds using all types of elements
532
+ with your finger! - see exclusive preview: http://bit.ly/TSB-preview\n\nPixowl
533
+ team is the combination between experienced (CEO), passionate (COO), famous
534
+ artist (cartoonist) and talented (CTO) people.\n\nWe focus to make character-centric
535
+ games","high_concept":"Mobile Family Games","follower_count":197,"company_url":"http://www.pixowl.com"}},{"id":157506,"role":"past_investor","created_at":"2012-02-04T06:07:49Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":7601,"hidden":false,"community_profile":false,"name":"Torbit","angellist_url":"http://angel.co/torbit","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/7601-5694ee84c32f8e2e75da6b214e2e21f0-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/7601-5694ee84c32f8e2e75da6b214e2e21f0-thumb.png","product_desc":"Torbit
536
+ lets any website double their speed in 5 minutes. \n\nWe founded Torbit because
537
+ we believe performance matters. We spent years learning how to make websites
538
+ load fast. In the past, we wasted a lot of time at our previous companies
539
+ doing performance optimizations by hand. We built Torbit because we thought
540
+ there had to be a better way. Torbit makes advanced performance optimization
541
+ that were once reserved for internet giants available to online businesses
542
+ of all sizes.","high_concept":"Making websites faster","follower_count":142,"company_url":"http://torbit.com"}},{"id":155612,"role":"incubator","created_at":"2012-02-01T04:28:37Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":66690,"hidden":false,"community_profile":false,"name":"Motives","angellist_url":"http://angel.co/motives","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/66690-f83afe834260044fcf7a3dae71717645-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/66690-f83afe834260044fcf7a3dae71717645-thumb.jpg","product_desc":"We
543
+ are building a community of phenomenal fine artists. Artists can post their
544
+ work to the site, and easily promote it via FB. Our edge over the competition
545
+ is speed, design, and access to some of the best young artists in the country
546
+ (the screen shot above is a photo realistic drawing one of our power users
547
+ drew and submitted). Currently we are only available to students at the Rhode
548
+ Island School of Design. That being said most of the work that students post
549
+ is public, so anyone can view.","high_concept":"Dribbble for fine art and
550
+ all design disciplines.","follower_count":10,"company_url":"http://Motiv.es"}},{"id":149555,"role":"incubator","created_at":"2012-01-22T17:45:47Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":28625,"hidden":false,"community_profile":false,"name":"Centrally","angellist_url":"http://angel.co/centrally","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/28625-f09899216e8ef25e4918a6bf8986af43-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/28625-f09899216e8ef25e4918a6bf8986af43-thumb.png","product_desc":"Retailers
551
+ are generating sales of $20,000 a year to $2,000,0000 a year by selling their
552
+ products directly on their Facebook Fan Page through the Facebook comments.
553
+ There is no solution available to solve their payment and inventory management
554
+ problems. We are building that solution.\n","high_concept":"Sell Products
555
+ through the Facebook Comments (500S W12)","follower_count":117,"company_url":"http://central.ly"}},{"id":120188,"role":"past_investor","created_at":"2011-08-10T19:57:53Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":32170,"hidden":false,"community_profile":false,"name":"FanBridge","angellist_url":"http://angel.co/fanbridge","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32170-ed1d85b3f0f21c9c80b5b8ab4d8156d3-medium.jpeg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32170-ed1d85b3f0f21c9c80b5b8ab4d8156d3-thumb.jpeg","product_desc":"FanBridge
556
+ is the leading fan management and marketing platform for email and social
557
+ media. ","high_concept":"Helps grow, engage, and monetize your fan relationships","follower_count":15,"company_url":"http://www.FanBridge.com"}},{"id":120185,"role":"past_investor","created_at":"2011-08-10T19:57:33Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":32477,"hidden":false,"community_profile":true,"name":"TaskRabbit","angellist_url":"http://angel.co/taskrabbit","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32477-255b4c178cbfd00546d1768f380a475b-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32477-255b4c178cbfd00546d1768f380a475b-thumb.","product_desc":null,"high_concept":null,"follower_count":28,"company_url":"http://www.taskrabbit.com"}},{"id":120183,"role":"past_investor","created_at":"2011-08-10T19:56:20Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":34257,"hidden":false,"community_profile":true,"name":"Peertransfer.com","angellist_url":"http://angel.co/peertransfer-com","logo_url":"http://angel.co/images/icons/startup-nopic.png","thumb_url":"http://angel.co/images/icons/startup-nopic.png","product_desc":null,"high_concept":null,"follower_count":10,"company_url":null}},{"id":118893,"role":"past_investor","created_at":"2011-08-06T01:01:01Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":32695,"hidden":false,"community_profile":true,"name":"Flowtown","angellist_url":"http://angel.co/flowtown","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32695-8c0ba7011daa620c83aced14a506e34d-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32695-8c0ba7011daa620c83aced14a506e34d-thumb.txt","product_desc":null,"high_concept":null,"follower_count":19,"company_url":"http://www.flowtown.com"}},{"id":118892,"role":"past_investor","created_at":"2011-08-06T01:00:34Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":34804,"hidden":false,"community_profile":true,"name":"inDinero","angellist_url":"http://angel.co/indinero","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/34804-49eec58e68462bd6cc905310cdf4460c-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/34804-49eec58e68462bd6cc905310cdf4460c-thumb.","product_desc":null,"high_concept":null,"follower_count":23,"company_url":"https://indinero.com/"}},{"id":118891,"role":"past_investor","created_at":"2011-08-06T00:59:48Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":43664,"hidden":false,"community_profile":true,"name":"Affinity
558
+ China","angellist_url":"http://angel.co/affinity-china","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/43664-bdfb8d91690499de786d4b0d3cd1ff45-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/43664-bdfb8d91690499de786d4b0d3cd1ff45-thumb.txt","product_desc":null,"high_concept":null,"follower_count":5,"company_url":"http://www.affinitychina.com"}},{"id":118890,"role":"past_investor","created_at":"2011-08-06T00:59:16Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":33145,"hidden":false,"community_profile":true,"name":"PixelFish","angellist_url":"http://angel.co/pixelfish","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/33145-ed5b83ce08752f9e7bf00de32f97bf3a-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/33145-ed5b83ce08752f9e7bf00de32f97bf3a-thumb.txt","product_desc":null,"high_concept":null,"follower_count":10,"company_url":"http://www.pixelfish.com/Images/logo.gif"}},{"id":118889,"role":"past_investor","created_at":"2011-08-06T00:57:32Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":41324,"hidden":false,"community_profile":true,"name":"eLacarte","angellist_url":"http://angel.co/elacarte","logo_url":"http://angel.co/images/icons/startup-nopic.png","thumb_url":"http://angel.co/images/icons/startup-nopic.png","product_desc":null,"high_concept":null,"follower_count":9,"company_url":null}},{"id":111865,"role":"employee","created_at":"2011-07-10T00:50:00Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":39283,"hidden":false,"community_profile":true,"name":"O''Reilly
559
+ Media","angellist_url":"http://angel.co/o-reilly-media","logo_url":"http://angel.co/images/icons/startup-nopic.png","thumb_url":"http://angel.co/images/icons/startup-nopic.png","product_desc":null,"high_concept":null,"follower_count":10,"company_url":"http://www.oreilly.com"}},{"id":111859,"role":"past_investor","created_at":"2011-07-10T00:48:03Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":32409,"hidden":false,"community_profile":true,"name":"SendGrid","angellist_url":"http://angel.co/sendgrid","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32409-72ff10dd04159655501a12cb42a6246d-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32409-72ff10dd04159655501a12cb42a6246d-thumb.","product_desc":null,"high_concept":null,"follower_count":16,"company_url":"http://www.sendgrid.com"}},{"id":111858,"role":"past_investor","created_at":"2011-07-10T00:47:17Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":32694,"hidden":false,"community_profile":true,"name":"Wildfire
560
+ Interactive","angellist_url":"http://angel.co/wildfire-interactive","logo_url":"http://angel.co/images/icons/startup-nopic.png","thumb_url":"http://angel.co/images/icons/startup-nopic.png","product_desc":null,"high_concept":null,"follower_count":14,"company_url":"http://www.wildfireapp.com"}},{"id":111857,"role":"past_investor","created_at":"2011-07-10T00:47:09Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":32683,"hidden":false,"community_profile":true,"name":"Zencoder","angellist_url":"http://angel.co/zencoder","logo_url":"http://angel.co/images/icons/startup-nopic.png","thumb_url":"http://angel.co/images/icons/startup-nopic.png","product_desc":null,"high_concept":null,"follower_count":10,"company_url":"http://zencoder.com"}},{"id":111856,"role":"past_investor","created_at":"2011-07-10T00:46:52Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":33687,"hidden":false,"community_profile":false,"name":"Payvment","angellist_url":"http://angel.co/payvment","logo_url":"http://angel.co/images/icons/startup-nopic.png","thumb_url":"http://angel.co/images/icons/startup-nopic.png","product_desc":null,"high_concept":null,"follower_count":9,"company_url":"http://www.payvment.com"}},{"id":111855,"role":"past_investor","created_at":"2011-07-10T00:46:33Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":35897,"hidden":false,"community_profile":true,"name":"Makerbot","angellist_url":"http://angel.co/makerbot","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/35897-7b62d3f08c3514af915857602ff2fd38-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/35897-7b62d3f08c3514af915857602ff2fd38-thumb.","product_desc":null,"high_concept":null,"follower_count":12,"company_url":"http://makerbot.com"}},{"id":111854,"role":"past_investor","created_at":"2011-07-10T00:46:27Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":33397,"hidden":false,"community_profile":true,"name":"Zozi","angellist_url":"http://angel.co/zozi","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/33397-483a61372798af7229e40de33ed6eac4-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/33397-483a61372798af7229e40de33ed6eac4-thumb.txt","product_desc":null,"high_concept":null,"follower_count":26,"company_url":"http://www.zozi.com"}},{"id":111853,"role":"past_investor","created_at":"2011-07-10T00:46:21Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":38073,"hidden":false,"community_profile":true,"name":"Apsalar","angellist_url":"http://angel.co/apsalar","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/38073-84322ed8c0d0289222dde5dd15255863-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/38073-84322ed8c0d0289222dde5dd15255863-thumb.txt","product_desc":null,"high_concept":null,"follower_count":12,"company_url":"http://apsalar.com"}},{"id":111852,"role":"past_investor","created_at":"2011-07-10T00:45:31Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":32509,"hidden":false,"community_profile":false,"name":"Twilio","angellist_url":"http://angel.co/twilio","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32509-cfb45c2a611a38850d8ea263d89ab595-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32509-cfb45c2a611a38850d8ea263d89ab595-thumb.","product_desc":"Twilio
561
+ is a web-service API that lets you use your existing web languages and skills
562
+ to build voice and SMS applications. We focus on building a simple, powerful,
563
+ pay-as-you-go communications platform so that you can focus on what you do
564
+ best.","high_concept":"Build apps that communicate","follower_count":70,"company_url":"http://www.twilio.com"}},{"id":92011,"role":"incubator","created_at":"2012-01-17T02:07:10Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":31846,"hidden":false,"community_profile":false,"name":"BrightNest","angellist_url":"http://angel.co/brightnest","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31846-615d7dc41814003dd6c8e37b0835ea7b-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31846-615d7dc41814003dd6c8e37b0835ea7b-thumb.png","product_desc":"BrightNest
565
+ is like Mint for home maintenance. We help homeowners take care of their most
566
+ valuable asset by providing the what, when and how of home maintenance in
567
+ one easy-to-navigate space. We deliver weekly reminders, customized tips and
568
+ step-by-step instructions in an online dashboard and email digest, too. Nowhere
569
+ on the web is home maintenance this easy and engaging. \n\n","high_concept":"Mint
570
+ for Home Maintenance","follower_count":96,"company_url":"http://brightnest.com"}},{"id":90320,"role":"past_investor","created_at":"2012-01-10T21:51:01Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2146,"hidden":false,"community_profile":false,"name":"Nettle","angellist_url":"http://angel.co/nettle","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2146-dbc5284b3e617f474315524ada2b3649-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2146-dbc5284b3e617f474315524ada2b3649-thumb.png","product_desc":"..................................................","high_concept":"......","follower_count":59,"company_url":"http://nettle.com"}},{"id":89247,"role":"incubator","created_at":"2012-01-06T21:57:01Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":25989,"hidden":false,"community_profile":false,"name":"BrandBoards","angellist_url":"http://angel.co/brandboards","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25989-8c1749efb05af945b02278c8055668a7-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25989-8c1749efb05af945b02278c8055668a7-thumb.jpg","product_desc":"We
571
+ connect Brands with Fans on digital displays at live sporting events and concerts
572
+ globally. ","high_concept":"Bringing google adwords style simplicity and
573
+ reach to in-stadium digital advertising","follower_count":127,"company_url":"http://www.brandboards.com"}},{"id":85341,"role":"past_investor","created_at":"2011-12-20T23:55:14Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19755,"hidden":false,"community_profile":false,"name":"The
574
+ RealReal","angellist_url":"http://angel.co/the-realreal","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19755-fa75838f1c1959aaa6df14a74f4a397d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19755-fa75838f1c1959aaa6df14a74f4a397d-thumb.png","product_desc":"The
575
+ RealReal is a luxury designer consignment consumer platform. We receive top
576
+ designer consignment items, we inspect, authenticate and merchandise these
577
+ items for sale as a flash sale. We then pick, pack and ship the items directly
578
+ to the consumer. The RealReal is the only consignment store focused on luxury
579
+ items and offering ''closet-to-closet'' experience.\n\nThe RealReal Press:\nhttp://www.therealreal.com/press.aspx\n","high_concept":"Gilt
580
+ Meets Luxury Designer Resale","follower_count":147,"company_url":"http://www.therealreal.com"}},{"id":83116,"role":"incubator","created_at":"2011-12-12T17:08:09Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":9580,"hidden":false,"community_profile":false,"name":"NetPlenish","angellist_url":"http://angel.co/netplenish","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/9580-369208e3cd79e5b734eca9ef7ea4521a-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/9580-369208e3cd79e5b734eca9ef7ea4521a-thumb.jpg","product_desc":"NetPlenish
581
+ is price comparison meets automatic replenishment for the things you buy over
582
+ and over again.\n\nThe basic necessities of life delivered to you from which
583
+ ever merchant has the best deal each time. Kmart one time, WalMart the next.\n\nStore
584
+ your shopping list in the cloud and select only the items you need each time.
585
+ No order forms to fill out over and over, just one button to push to approve
586
+ each order. \n\nA 45 minute weekly trip to the store is now a 45 second task
587
+ on your phone!\n\n","high_concept":"Price comparison meets automatic replenishment
588
+ on the items you buy over and over again.","follower_count":555,"company_url":"http://www.netplenish.com"}},{"id":81500,"role":"past_investor","created_at":"2011-12-05T22:33:27Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":9580,"hidden":false,"community_profile":false,"name":"NetPlenish","angellist_url":"http://angel.co/netplenish","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/9580-369208e3cd79e5b734eca9ef7ea4521a-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/9580-369208e3cd79e5b734eca9ef7ea4521a-thumb.jpg","product_desc":"NetPlenish
589
+ is price comparison meets automatic replenishment for the things you buy over
590
+ and over again.\n\nThe basic necessities of life delivered to you from which
591
+ ever merchant has the best deal each time. Kmart one time, WalMart the next.\n\nStore
592
+ your shopping list in the cloud and select only the items you need each time.
593
+ No order forms to fill out over and over, just one button to push to approve
594
+ each order. \n\nA 45 minute weekly trip to the store is now a 45 second task
595
+ on your phone!\n\n","high_concept":"Price comparison meets automatic replenishment
596
+ on the items you buy over and over again.","follower_count":555,"company_url":"http://www.netplenish.com"}},{"id":76900,"role":"past_investor","created_at":"2011-11-17T08:27:14Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1074,"hidden":false,"community_profile":false,"name":"AllTrails","angellist_url":"http://angel.co/alltrails","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1074-3284db500a13a1a583014dd73c53174a-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1074-3284db500a13a1a583014dd73c53174a-thumb.txt","product_desc":"AllTrails
597
+ is building the largest digital network focused exclusively on outdoor enthusiasts.\n\nWe
598
+ have built a social and mobile platform focused on delighting users in the
599
+ outdoor enthusiast segment which currently reaches 1M people each month.\n\nOur
600
+ first foray into mobile, AllTrails for iPhone, launched in December 2010 which
601
+ quickly became the #1 Outdoor App on iPhone (Top 50 in Travel) and has been
602
+ downloaded over 300,000 times. Android App launched in September 2011.","high_concept":"AllTrails
603
+ is Yelp for the outdoors.","follower_count":157,"company_url":"http://alltrails.com"}},{"id":72369,"role":"incubator","created_at":"2011-11-03T23:50:13Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2489,"hidden":false,"community_profile":false,"name":"Rapportive","angellist_url":"http://angel.co/rapportive","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2489-1a4e851d33bf478ab5e32751caeecb60-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2489-1a4e851d33bf478ab5e32751caeecb60-thumb.png","product_desc":"Rapportive
604
+ shows you everything about your contacts right inside your inbox. \n\nYou
605
+ can immediately see what people look like, where they''re based, and what
606
+ they do. You can establish rapport by mentioning shared interests. You can
607
+ grow your network by connecting on LinkedIn, Twitter, Facebook and more. And
608
+ you can record thoughts for later by leaving notes. \n\nImagine relationship
609
+ management built into your email. For free.","high_concept":"Be brilliant
610
+ with people","follower_count":374,"company_url":"http://www.rapportive.com"}},{"id":70849,"role":"incubator","created_at":"2011-10-31T18:41:14Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":27216,"hidden":false,"community_profile":false,"name":"Hapyrus","angellist_url":"http://angel.co/hapyrus","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/27216-b18bad9ad23fd743b01f4e305c21c277-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/27216-b18bad9ad23fd743b01f4e305c21c277-thumb.png","product_desc":"Hapyrus
611
+ is a web service that makes collaborative Hadoop analysis easy for engineers
612
+ and data analysts. An engineer can prepare data so that analysts can create
613
+ queries and change parameters on their own. With Hapyrus, engineers'' time
614
+ is freed up from repetitive query modifications, and analysts have more access
615
+ to business data.","high_concept":"Cloud Hadoop analysis made easy for team
616
+ collaboration ","follower_count":90,"company_url":"http://www.hapyrus.com"}},{"id":69032,"role":"past_investor","created_at":"2011-10-26T03:29:28Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":26190,"hidden":false,"community_profile":false,"name":"MixRank","angellist_url":"http://angel.co/mixrank","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26190-04587e2414625bf725ef9da8a23d4dbe-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26190-04587e2414625bf725ef9da8a23d4dbe-thumb.jpg","product_desc":"Over
617
+ 3,300 businesses have joined MixRank since our July launch.\nWe just came
618
+ out of beta and have been growing revenues by 44% a week.\n\nWe save performance
619
+ advertisers huge amounts of time and money by showing them exactly how to
620
+ target their display advertising campaigns.\n\nBy tracking millions of ads
621
+ daily, we can automatically recommend ad copy and targeting opportunities
622
+ that are likely to perform well for our customers.\n\nThe product is live
623
+ at http://mixrank.com","high_concept":"Spy on Competitors'' Display Ads (YC
624
+ S11)","follower_count":441,"company_url":"http://mixrank.com"}},{"id":67219,"role":"incubator","created_at":"2011-10-19T23:12:07Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":24469,"hidden":false,"community_profile":false,"name":"Tiny
625
+ Review","angellist_url":"http://angel.co/tiny-review","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24469-dc410edde6de7fc4298e2b16818563fe-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24469-dc410edde6de7fc4298e2b16818563fe-thumb.png","product_desc":"Tiny
626
+ Review is Instagram for local reviews. Take a photo, write three lines, share
627
+ with others. Reviews made simple, fun, and addictive. Download the iOS app:
628
+ http://tinyreviewapp.com/","high_concept":"Tiny Review is like Instagram for
629
+ local reviews","follower_count":243,"company_url":"http://tinyreviewapp.com"}},{"id":67143,"role":"incubator","created_at":"2011-10-19T20:07:29Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":21821,"hidden":false,"community_profile":false,"name":"MeMeTales","angellist_url":"http://angel.co/memetales","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21821-603d1bb6854b0f41e69d5261d440ed71-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21821-603d1bb6854b0f41e69d5261d440ed71-thumb.jpg","product_desc":"MeMeTales
630
+ is Pandora for kids learning. We create immersive learning worlds around the
631
+ stories and characters kids love the most. \n\nThe Memetales platform delivers
632
+ children''s stories in fun and engaging ways. Kids read stories, earn stickers,
633
+ unlock games and learning activities. We give busy parents a guilt free, safe
634
+ and immersive destination to engage their preschoolers.\n\niPhone/iPad App:
635
+ http://bit.ly/memeapp\nPitchdeck: http://slidesha.re/memetales","high_concept":"Pandora
636
+ for kids learning","follower_count":167,"company_url":"http://memetales.com"}},{"id":66847,"role":"incubator","created_at":"2011-10-18T22:22:08Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":26090,"hidden":false,"community_profile":false,"name":"ContaAzul","angellist_url":"http://angel.co/contaazul","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26090-56818c333ed4ad890ee3f64378234337-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26090-56818c333ed4ad890ee3f64378234337-thumb.png","product_desc":"ContaAzul
637
+ is a web based SaaS accounting system for SMBs in Brazil.\n\nOver 2.000 businesses
638
+ have joined ContaAzul since our launch in January.\n\nWe\u2019re adding new
639
+ trial customers every day, have about 70 businesses as active customers and
640
+ more then 600 new signups per month.\n\nConversions growing 30% a month so
641
+ far.\n","high_concept":"Quickbooks for Brazil","follower_count":106,"company_url":"http://www.contaazul.com.br"}},{"id":66820,"role":"incubator","created_at":"2011-10-18T21:16:16Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":26118,"hidden":false,"community_profile":false,"name":"Love
642
+ With Food","angellist_url":"http://angel.co/love-with-food","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26118-0b01be410a2633e359a449c5b726d98f-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26118-0b01be410a2633e359a449c5b726d98f-thumb.jpg","product_desc":"Love
643
+ With Food is a monthly subscription service (launched in Dec 2011) that delivers
644
+ a box of unique and hard-to-find gourmet samples to your door. Our members
645
+ taste different products monthly, provide feedback, earn points and also able
646
+ to purchase full-size products at a discount on a limited time offer. \n\nThis
647
+ monthly tasty discovery experience costs $14/month. For every box sent, a
648
+ meal is donated to No Kid Hungry.","high_concept":"A monthly subscription
649
+ that delivers gourmet samples to your door!","follower_count":327,"company_url":"http://lovewithfood.com"}},{"id":66602,"role":"incubator","created_at":"2011-10-18T09:02:51Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":25717,"hidden":false,"community_profile":false,"name":"MoPix","angellist_url":"http://angel.co/mopix","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25717-37d1a066f22ea3bbe946de06e60d8ba5-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25717-37d1a066f22ea3bbe946de06e60d8ba5-thumb.jpg","product_desc":"We
650
+ are creating the \u201cpost DVD experience\" by empowering anyone who owns
651
+ video content (from studios with a library of films to everyday content creators)
652
+ with a framework to quickly and easily distribute, brand and sell their content
653
+ in a socially-enriched marketplace via our HTML5, iOS, and Android apps.\n","high_concept":"The
654
+ App Store for Film and Video","follower_count":194,"company_url":"http://www.getmopix.com"}},{"id":65375,"role":"incubator","created_at":"2011-10-13T21:23:51Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1796,"hidden":false,"community_profile":false,"name":"eSpark
655
+ Learning","angellist_url":"http://angel.co/espark-learning","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1796-5e012e750945dcecb0bc80c1578a903b-medium.jpeg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1796-5e012e750945dcecb0bc80c1578a903b-thumb.jpeg","product_desc":"eSpark
656
+ is pandora for education\nInnovative schools & motivated parents are buying
657
+ iPads for kids. They struggle sorting through the 27,000 educational apps
658
+ to find the right apps for their students.\neSpark develops a custom learning
659
+ plan for students. Students login to the eSpark iPad app and dive into the
660
+ best educational games, instructional videos, and eBooks that have been selected
661
+ for them based on their learning needs. Students grow 1.4 grade levels in
662
+ their goal domain in just 8 weeks!","high_concept":"Pandora for education","follower_count":144,"company_url":"http://eSparkLearning.com"}},{"id":65062,"role":"incubator","created_at":"2011-10-13T06:58:27Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":22799,"hidden":false,"community_profile":false,"name":"PayByGroup","angellist_url":"http://angel.co/paybygroup","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22799-2d4212563aea135088a8b1ae9d4f3405-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22799-2d4212563aea135088a8b1ae9d4f3405-thumb.png","product_desc":"Anxious
663
+ about fronting money for that ski house rental without knowing who''s really
664
+ committed?\n\nWith PayByGroup, no single person is on the hook for vacation
665
+ rentals, concert tickets, season tickets, and other group purchases. \n\nWe
666
+ integrate directly with merchants as a checkout button and employ a Kickstarter
667
+ model where a minimum number of people must buy in before payments go through.
668
+ \n\nWe use machine learning to not just facilitate payments but proactively
669
+ *encourage* them.","high_concept":"The artificially intelligent, social way
670
+ to pay.","follower_count":289,"company_url":"http://www.PayByGroup.com"}},{"id":64971,"role":"incubator","created_at":"2011-10-13T00:57:31Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":26108,"hidden":false,"community_profile":false,"name":"Rota
671
+ dos Concursos","angellist_url":"http://angel.co/rota-dos-concursos","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26108-c74b9eff5bb1a2098cabfa5c293b12cd-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26108-c74b9eff5bb1a2098cabfa5c293b12cd-thumb.jpg","product_desc":"The
672
+ best test prep for Brazilian civil service. Like Grockit for Brazil, but with
673
+ more consumers and without smart competition.\n\nThere are 12 million people,
674
+ $ 25 billion per year and only 8 percent of Brazil has in-person courses for
675
+ these people.\n\nRota dos Concursos help people to decrease their time to
676
+ study with a focus on their real learning needs and help poor people to access
677
+ a really good material to study.","high_concept":"Kaplan for Brazil","follower_count":99,"company_url":"http://www.rotadosconcursos.com.br"}},{"id":64938,"role":"incubator","created_at":"2011-10-12T22:42:21Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":26102,"hidden":false,"community_profile":false,"name":"LOOKK","angellist_url":"http://angel.co/lookk","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26102-88ca9348bcca20542a467ec34ad25b33-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26102-88ca9348bcca20542a467ec34ad25b33-thumb.jpg","product_desc":"LOOKK
678
+ connects fashion designers directly with consumers, providing tools for designers
679
+ to share, distribute and retail their products worldwide, so they can gain
680
+ exposure and build their brand. In doing so, we create a transparent and truly
681
+ engaging process for an audience of discerning shoppers, fashion-lovers and
682
+ industry experts, and the means to influence the success of upcoming fashion
683
+ designers.","high_concept":"See and buy tomorrows fashion first.","follower_count":121,"company_url":"http://www.LOOKK.com"}},{"id":64776,"role":"incubator","created_at":"2011-10-12T13:53:12Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":22458,"hidden":false,"community_profile":false,"name":"HighScore
684
+ House","angellist_url":"http://angel.co/highscore-house","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22458-7e2f67fedcdb8c6bb18fdb23996cff7b-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22458-7e2f67fedcdb8c6bb18fdb23996cff7b-thumb.png","product_desc":"HighScore
685
+ House is reinventing the way kids earn and buy the things they want, while
686
+ bringing families closer together and making their lives more positive than
687
+ ever before.\n\nWe use game design to motivate kids to take on new challenges
688
+ and help develop important habits like delayed gratification.\n\nLaunched
689
+ January 2012: 22K+ users, 450K+ tasks completed and 10K+ rewards bought.","high_concept":"Gamifying
690
+ the daily routine for kids","follower_count":227,"company_url":"http://highscorehouse.com"}},{"id":64765,"role":"incubator","created_at":"2011-10-12T12:16:37Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":25025,"hidden":false,"community_profile":false,"name":"Talkdesk","angellist_url":"http://angel.co/talkdesk","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25025-642a145332ba4586493ed808900d79d8-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25025-642a145332ba4586493ed808900d79d8-thumb.png","product_desc":"79%
691
+ of customers prefer phone as the support channel but only big companies have
692
+ the means to do it properly.\n\nTalkdesk lets your company create a call center
693
+ in less than 5 minutes - all in the browser. It provides information about
694
+ the caller in real-time by integrating with services such as Salesforce and
695
+ Zendesk.\n\n+600 companies on waiting list.\n\nCloudBeat Finalists: http://bit.ly/rEcf5e\nTwilio
696
+ First 5 Live Winners: http://bit.ly/mQ81H1\nTwilio Fund Winners: http://bit.ly/npmHDN","high_concept":"Create
697
+ a call center for your company in 5 minutes - all in the browser.","follower_count":161,"company_url":"http://talkdeskapp.com"}},{"id":64316,"role":"incubator","created_at":"2011-10-11T02:24:04Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":17609,"hidden":false,"community_profile":false,"name":"Intercom","angellist_url":"http://angel.co/intercom-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/17609-b67c4d35281bcbff2e91c453a96694b6-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/17609-b67c4d35281bcbff2e91c453a96694b6-thumb.png","product_desc":"Intercom
698
+ is a next-gen CRM and communication product for web businesses\u2014they find
699
+ it hard to connect with their customers, resulting in abandoned trials, low
700
+ upgrades, churn.\n\nIntercom lets them:\n\n1. identify users they need to
701
+ reach out to,\n2. research those users (social plus account info),\n3. contact
702
+ them (in-app or e-mail, automatically or manually),\n4. track the relationship
703
+ over time.\n\nInvite-only beta, 550 active users who love it: \"Intercom has
704
+ changed the way we talk to our users.\"","high_concept":"CRM + messaging reinvented
705
+ for web businesses [500 Startups F11]","follower_count":185,"company_url":"http://intercom.io"}},{"id":64188,"role":"incubator","created_at":"2011-10-10T19:37:11Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":14845,"hidden":false,"community_profile":false,"name":"300
706
+ Milligrams","angellist_url":"http://angel.co/300-milligrams","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/14845-6a14c367a8c5fec393d5cc105e9fdbf4-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/14845-6a14c367a8c5fec393d5cc105e9fdbf4-thumb.png","product_desc":"Notifications
707
+ From People You Work With\n\nTeam building profitable startups since 2000,
708
+ first cash exit at age of 22\n\nProductivity services send us lot''s of emails.
709
+ If you are subscribed to multiple services it can mean 100s or even 1000s
710
+ emails a day. People can\u2019t handle this, so they unsubscribe from most
711
+ of these and don\u2019t know what \u2018s happening. 300.mg aggregates notifications
712
+ from multiple services into news feed and email digests, in a format and with
713
+ frequency that people can handle.\n\n","high_concept":"Inbox For Notifications","follower_count":194,"company_url":"http://300.mg"}},{"id":64174,"role":"past_investor","created_at":"2011-10-10T19:12:22Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":23064,"hidden":false,"community_profile":false,"name":"Picplum","angellist_url":"http://angel.co/picplum","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/23064-38bf7ba7611c4d844247a3f51946d261-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/23064-38bf7ba7611c4d844247a3f51946d261-thumb.png","product_desc":"Picplum
714
+ is the easiest way to send photo prints. Simply email or upload your best
715
+ photos to our website. Your friends and family will receive a premium Picplum
716
+ package of your photos in the mail just days later.","high_concept":"The Easiest
717
+ Way to Send Prints.","follower_count":137,"company_url":"https://www.picplum.com"}},{"id":64106,"role":"incubator","created_at":"2011-10-10T15:25:48Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":695,"hidden":false,"community_profile":false,"name":"72Lux","angellist_url":"http://angel.co/72lux","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/695-83b617f2a06a49abf02d4c55b4a73485-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/695-83b617f2a06a49abf02d4c55b4a73485-thumb.jpg","product_desc":"The
718
+ first and only company to host a universal checkout , 72Lux boasts partners
719
+ such as Ralph Lauren, Saks, Macy''s and Bloomingdale''s and lets users shop
720
+ luxury retailers from one location, with an experience customized to each
721
+ user. 72Lux''s normalized product database of over 300,000 SKUs and universal
722
+ checkout is also leveraged for turnkey e-commerce solutions for large digital
723
+ publishers and enterprise clients. Key enterprise partnerships are not yet
724
+ publicly announced.","high_concept":"Integrated, white-label e-commerce platform
725
+ and products for enterprise websites","follower_count":207,"company_url":"http://72Lux.com"}},{"id":63832,"role":"incubator","created_at":"2011-10-08T18:36:15Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":4374,"hidden":false,"community_profile":false,"name":"Zerply","angellist_url":"http://angel.co/zerply","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4374-df5b10e633190f7d980ca47f58b93d2b-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4374-df5b10e633190f7d980ca47f58b93d2b-thumb.jpg","product_desc":"For
726
+ a long time we''ve only been able to judge professionals by their labels and
727
+ associations; job titles, employers, board positions, resumes, bios and LinkedIn
728
+ profiles. \n\nZerply is building an evidence-based identity for professionals,
729
+ that becomes more powerful over time as it incorporates what they''ve done,
730
+ and who they''ve worked with.","high_concept":"Killing the r\u00e9sum\u00e9","follower_count":541,"company_url":"http://zerply.com"}},{"id":62932,"role":"incubator","created_at":"2011-10-05T21:50:12Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":23479,"hidden":false,"community_profile":false,"name":"GoVoluntr","angellist_url":"http://angel.co/govoluntr","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/23479-f2cbfff25511c7884dfe52a4676f63ab-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/23479-f2cbfff25511c7884dfe52a4676f63ab-thumb.png","product_desc":"GoVoluntr
731
+ is a comprehensive community involvement platform that boosts the bottom line
732
+ through social good. We offer affordable social responsibility reporting,
733
+ cause-related marketing campaigns, and employee volunteer solutions for businesses.
734
+ ","high_concept":"Growing businesses through community involvement","follower_count":112,"company_url":"http://www.govoluntr.com"}},{"id":62876,"role":"incubator","created_at":"2011-10-05T18:48:53Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":25497,"hidden":false,"community_profile":false,"name":"Switchcam","angellist_url":"http://angel.co/switchcam","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25497-44d423cfa03ac3aa7ec499803145505c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25497-44d423cfa03ac3aa7ec499803145505c-thumb.png","product_desc":"Switchcam
735
+ is a new type of site for watching video recorded at social events like concerts,
736
+ conferences or protests. We use custom algorithms to reconstruct events from
737
+ multiple camera sources and stitch them together so that users can watch events
738
+ from start to end and from multiple camera angles.\n\nUsers can add events
739
+ to Switchcam and curate them by adding and removing videos, and the community
740
+ ensures the best videos are shown to the watcher.","high_concept":"A better
741
+ YouTube for video of real-world events.","follower_count":254,"company_url":"http://switchcam.com"}},{"id":62710,"role":"past_investor","created_at":"2011-10-05T07:27:29Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":312,"hidden":false,"community_profile":false,"name":"StyleSeat","angellist_url":"http://angel.co/styleseat","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/312-1387954138544b98c1c629996e2cc60a-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/312-1387954138544b98c1c629996e2cc60a-thumb.txt","product_desc":"StyleSeat
742
+ empowers beauty and wellness professionals to manage and market their businesses.
743
+ We give them custom metrics and recommendations via a dashboard, web presence
744
+ and online booking. Our secret sauce is our focus on a vertical market and
745
+ delivering a complete solution for that market. By powering the core of their
746
+ business we can guide their marketing spend and connect their business to
747
+ the rest of the web","high_concept":"OpenTable for beauty and wellness","follower_count":204,"company_url":"http://www.styleseat.com"}},{"id":62274,"role":"past_investor","created_at":"2011-10-03T23:23:12Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":21048,"hidden":false,"community_profile":false,"name":"Curebit","angellist_url":"http://angel.co/curebit","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21048-f3df693f4ce7cb13768f69acfe385b9b-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21048-f3df693f4ce7cb13768f69acfe385b9b-thumb.png","product_desc":"Curebit
748
+ increases profits of online companies by optimizing customer acquisition through
749
+ referrals.\n\nSocial referral marketing is a disruptive method of customer
750
+ acquisition. Most companies today do not use referral systems at all or to
751
+ their full potential. Curebit provides a SaaS referral platform that enables
752
+ companies to execute, track, and optimize different types of incentivized
753
+ referral campaigns.\n\nWe optimize our referral systems using aggregate data.\n\nDemo:
754
+ http://curebit.com/investors","high_concept":"Customer Referral Platform (YC
755
+ W11)","follower_count":245,"company_url":"http://www.curebit.com"}},{"id":61873,"role":"incubator","created_at":"2011-10-02T18:50:07Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":25513,"hidden":false,"community_profile":false,"name":"Contactually","angellist_url":"http://angel.co/contactually","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25513-0dcf823df06dad08d3ae275083ab4516-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25513-0dcf823df06dad08d3ae275083ab4516-thumb.png","product_desc":"Contactually
756
+ helps business professionals build and maintain better relationships. \n\nWe
757
+ help professionals stay top of mind and never lose touch with their most important
758
+ contacts, leads, etc, right in their inbox.\n\nWe make it easy to automatically
759
+ convert your email contacts to one central spot, and add tasks, follow-ups,
760
+ and priority associated with those contacts. And works with CRMs.\n\nWorks
761
+ with \n* GMail\n* Google Apps\n* Microsoft Exchange\n* IMAP\n\nAnd is compatible
762
+ with every device.\n","high_concept":"Professional Relationship Management","follower_count":276,"company_url":"http://contactually.com"}},{"id":61358,"role":"incubator","created_at":"2011-09-30T02:15:13Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":22940,"hidden":false,"community_profile":false,"name":"Chorus","angellist_url":"http://angel.co/chorus","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22940-935764a4f696f6afd213b7d2e15c3e0b-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22940-935764a4f696f6afd213b7d2e15c3e0b-thumb.png","product_desc":"Obtaining
763
+ timely, accurate customer feedback is hard. Surveys and focus groups are hard
764
+ to orchestrate, costly, often biased and take precious time that businesses
765
+ don''t have.\n\nChorus changes all that. It provides real-time customer feedback
766
+ without the hassle. Our software automatically and accurately identifies pain
767
+ points and tracks satisfaction across a range of information sources such
768
+ as email, twitter, helpdesk software etc. and presents it in a beautifully
769
+ designed HTML5 dashboard.\n\n","high_concept":"Real-time customer feedback
770
+ without the hassle","follower_count":122,"company_url":"http://www.getchorus.com"}},{"id":61340,"role":"incubator","created_at":"2011-09-30T00:30:26Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":25189,"hidden":false,"community_profile":false,"name":"SafeShepherd","angellist_url":"http://angel.co/safeshepherd","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25189-46b0e7fb10763e53691ff9963d5e489d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/25189-46b0e7fb10763e53691ff9963d5e489d-thumb.png","product_desc":"Your
771
+ personal information is being aggregated and sold through people-search and
772
+ background-check websites. Finding and removing this information is a ridiculous
773
+ burden, even for a motivated consumer.\n\nSafeShepherd monitors, removes,
774
+ and prevents your personal information from being used against you. We engage
775
+ customers who are concerned about their personal privacy, identity theft,
776
+ and household security.\n\nWe are defining Safety as a Service.","high_concept":"Safety
777
+ as a Service","follower_count":104,"company_url":"http://SafeShepherd.com"}},{"id":61328,"role":"incubator","created_at":"2011-09-29T23:56:00Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":20249,"hidden":false,"community_profile":false,"name":"LookAcross","angellist_url":"http://angel.co/lookacross","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20249-c1c63219e6876295ca99a4c8f4925d2c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20249-c1c63219e6876295ca99a4c8f4925d2c-thumb.png","product_desc":"LookAcross
778
+ tells you the best time to connect with anyone. Sales teams LOVE us: we save
779
+ them time AND make them money.\n\nBeta customers include sales reps from Yahoo,
780
+ Laerdal and Sunlife Financial.\n\nLookAcross addresses one of the biggest
781
+ challenges in sales, connecting with prospects live. Today it takes 20 sales
782
+ activities to have 1 conversation. We help sales to reach more people more
783
+ effectively.","high_concept":"Farecast for Sales Teams: find the best time
784
+ to connect with anyone","follower_count":87,"company_url":"http://www.lookacross.com"}},{"id":61323,"role":"incubator","created_at":"2011-09-29T23:39:46Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":5980,"hidden":false,"community_profile":false,"name":"PostRocket","angellist_url":"http://angel.co/postrocket","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/5980-efeb5352aa8f446e7721cb65292c8ea1-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/5980-efeb5352aa8f446e7721cb65292c8ea1-thumb.png","product_desc":"PostRocket
785
+ gives awesome recommendations to have your Facebook Page perform like a champion.\n\nFiguring
786
+ out Facebook Page marketing is a daunting task for brands, small businesses
787
+ and even celebs.\n\nPostRocket tells you what''s working best, what you should
788
+ try, how frequently you should post, and it intelligently figures out when
789
+ it should be sent out to your fans. We''re like an automated social media
790
+ consultant software.\n\nReach out if you''re interested in finding out more!","high_concept":"Personal
791
+ and Automated Consulting for Facebook Pages (500S F''11)","follower_count":330,"company_url":"http://www.getpostrocket.com"}},{"id":61223,"role":"incubator","created_at":"2011-09-29T19:43:46Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":23877,"hidden":false,"community_profile":false,"name":"Spinnakr","angellist_url":"http://angel.co/spinnakr","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/23877-036b1e16427a68843934df5e21caeb10-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/23877-036b1e16427a68843934df5e21caeb10-thumb.png","product_desc":"Spinnakr
792
+ provides easy-to-use and affordable tools for web sites to display different
793
+ types of content for different types of users. A help wanted ad might be prominently
794
+ displayed for a job seeker, while a special discount code is offered to a
795
+ bargain hunter.\n\nAdvanced user targeting is used by the top 1% of web sites,
796
+ but this technology has been too complicated or too expensive for the rest.
797
+ Spinnakr makes user targeting mainstream, allowing all businesses to drive
798
+ more sales or signups.","high_concept":"The Missing Link Between Web Analytics
799
+ & Content","follower_count":450,"company_url":"http://spinnakr.com"}},{"id":61183,"role":"incubator","created_at":"2011-09-29T18:41:44Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":21770,"hidden":false,"community_profile":false,"name":"Cadee","angellist_url":"http://angel.co/cadee","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21770-9270b3b1349a5ba58f66d43dc0609fd8-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21770-9270b3b1349a5ba58f66d43dc0609fd8-thumb.jpg","product_desc":"In
800
+ 2002 U.S. golfers spent $20,000,000,000 on green fees alone. \n\nThey are
801
+ fanatics - driven by personal development and a constant struggle to improve.
802
+ They are always trying to assess their ability and understand what they need
803
+ to work on to get better.\n\nCadee allows golfers to submit photos of their
804
+ scorecards using a mobile device. Cadee inputs the data and provides golfers
805
+ with a detailed analysis of their game, showing them what they need to work
806
+ on and how to lower their scores.","high_concept":"Cadee is helping golfers
807
+ understand and improve their game","follower_count":128,"company_url":"http://cadee.co/"}},{"id":61058,"role":"incubator","created_at":"2011-09-29T05:41:00Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19899,"hidden":false,"community_profile":false,"name":"WeddingLovely","angellist_url":"http://angel.co/weddinglovely","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19899-570a4e60ed447b37a9873ff3578c1528-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19899-570a4e60ed447b37a9873ff3578c1528-thumb.jpg","product_desc":"WeddingLovely
808
+ will walk couples through planning their wedding through their inbox, with
809
+ advice, information, and vendor recommendations tailored for every couple''s
810
+ budget, location, style, and wedding date. \n\nTimely emails will remind couple''s
811
+ of important dates (such as, at six months before your wedding date \u2014
812
+ time to find invitations!), provide articles and information about that task
813
+ to help them understand, and then recommend tailored services, products, and
814
+ wedding vendors.","high_concept":"Plan your wedding through email with personalized
815
+ advice and vendor recommendations.","follower_count":129,"company_url":"http://weddinglovely.com"}},{"id":60725,"role":"incubator","created_at":"2011-09-28T14:25:26Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":10310,"hidden":false,"community_profile":false,"name":"Gizmo","angellist_url":"http://angel.co/gizmo","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/10310-e12aeccfa4877f9716f3483fa84fc38a-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/10310-e12aeccfa4877f9716f3483fa84fc38a-thumb.png","product_desc":"Gizmo
816
+ gives brands, agencies, and independent creatives the ability to engage their
817
+ consumers on multiple platforms. Consumers expect your brand to be on as many
818
+ platforms as they are, however management at scale is nearly impossible. Gizmo
819
+ solves this by centralizing creation, publishing, and management of all these
820
+ platforms, from the cloud.\n\nGizmo is currently in beta with Fortune 100
821
+ companies, and large ad agencies. Our pre-beta product was monetized to $105k
822
+ in early revenue. ","high_concept":"App Marketing Infrastructure & Automation","follower_count":261,"company_url":"http://gizmo.com"}},{"id":60606,"role":"incubator","created_at":"2011-09-28T00:46:16Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":24412,"hidden":false,"community_profile":false,"name":"Tailored","angellist_url":"http://angel.co/tailored","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24412-f71a92ac7f2062813d7e5d876a3ce004-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24412-f71a92ac7f2062813d7e5d876a3ce004-thumb.png","product_desc":"Tailored
823
+ is the most advanced personalized discovery platform for weddings with over
824
+ 5 million listings and growing.\n\nUsing machine learning to find affinities
825
+ between 2.7 million brides each year, Tailored recommends products and services
826
+ which users can buy, book, or use as inspiration. \n\nThe Tailored platform
827
+ allows retailers, blogs, and magazines to finally marry content with e-commerce
828
+ through our API. \n\nTailored sits in the middle of each interaction or transaction,
829
+ taking a cut each time.","high_concept":"Personalized wedding shopping and
830
+ intelligent customer acquisition for retailers [500 F11]","follower_count":292,"company_url":"http://www.tailored.co"}},{"id":60556,"role":"incubator","created_at":"2011-09-27T22:13:30Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1249,"hidden":false,"community_profile":false,"name":"Forrst","angellist_url":"http://angel.co/forrst","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1249-912a3173a890cd456ab799ea3366eacf-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1249-912a3173a890cd456ab799ea3366eacf-thumb.png","product_desc":"Forrst
831
+ is an invitation-only community of developers and designers with a heavy emphasis
832
+ on critique and quality feedback. The community of 40k+ is heavily engaged
833
+ (~50% monthly actives - this is more than just logging in), and over 15k are
834
+ waiting to get in.","high_concept":"Forrst is where developers and designers
835
+ improve their craft & companies come to hire them","follower_count":402,"company_url":"https://forrst.com"}},{"id":60516,"role":"incubator","created_at":"2011-09-27T21:33:56Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":16828,"hidden":false,"community_profile":false,"name":"Farmeron","angellist_url":"http://angel.co/farmeron","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/16828-e05efbe009824a918d915f5747dc61d2-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/16828-e05efbe009824a918d915f5747dc61d2-thumb.jpg","product_desc":"Modern
836
+ farmer spends up to 90 minutes per day on time consuming, boring data management
837
+ and manual ag production analytics. We''re cutting short this 90 minutes to
838
+ around 30 right now - and aiming for 0 in near future!\n\nFarmeron helps farmers
839
+ across the world to manage their scattered production data online and to do
840
+ automatized farm performance analysis using exciting statistics. Created to
841
+ improve farming operations and farmer''s income.\n\n\n","high_concept":"Google
842
+ Analytics for Farms","follower_count":291,"company_url":"http://www.farmeron.com"}},{"id":60264,"role":"past_investor","created_at":"2011-09-27T04:22:29Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19150,"hidden":false,"community_profile":false,"name":"OtherInbox","angellist_url":"http://angel.co/otherinbox","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19150-5afcb1ae599c7fce50574a1947e6c72d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19150-5afcb1ae599c7fce50574a1947e6c72d-thumb.png","product_desc":"Regain
843
+ control of your Inbox by automatically organizing email clutter, maximizing
844
+ your real life relationships, as well as making your inbox more efficient
845
+ and effective.\n","high_concept":"Save your inbox for real people","follower_count":266,"company_url":"http://www.otherinbox.com"}},{"id":59920,"role":"past_investor","created_at":"2011-09-26T13:38:15Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":18937,"hidden":false,"community_profile":false,"name":"Fitocracy","angellist_url":"http://angel.co/fitocracy","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18937-25d96605a57406758a0f9cbe39b8ecda-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18937-25d96605a57406758a0f9cbe39b8ecda-thumb.png","product_desc":"Fitocracy
846
+ makes fitness more engaging and addictive through game mechanics and social
847
+ reinforcement. Users consistently progress in their fitness through exciting,
848
+ motivating game incentives, structured guidance, and workout insights. With
849
+ its rich, growing dataset and insights, Fitocracy is poised to lead the online
850
+ fitness space. \n\nDownload the app that''s getting rave reviews here: http://itunes.apple.com/us/app/fitocracy/id509253726?mt=8","high_concept":"Social
851
+ game for fitness","follower_count":378,"company_url":"http://www.fitocracy.com"}},{"id":59919,"role":"incubator","created_at":"2011-09-26T13:37:52Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":18937,"hidden":false,"community_profile":false,"name":"Fitocracy","angellist_url":"http://angel.co/fitocracy","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18937-25d96605a57406758a0f9cbe39b8ecda-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18937-25d96605a57406758a0f9cbe39b8ecda-thumb.png","product_desc":"Fitocracy
852
+ makes fitness more engaging and addictive through game mechanics and social
853
+ reinforcement. Users consistently progress in their fitness through exciting,
854
+ motivating game incentives, structured guidance, and workout insights. With
855
+ its rich, growing dataset and insights, Fitocracy is poised to lead the online
856
+ fitness space. \n\nDownload the app that''s getting rave reviews here: http://itunes.apple.com/us/app/fitocracy/id509253726?mt=8","high_concept":"Social
857
+ game for fitness","follower_count":378,"company_url":"http://www.fitocracy.com"}},{"id":59145,"role":"past_investor","created_at":"2011-09-22T19:24:36Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19168,"hidden":false,"community_profile":false,"name":"Udemy","angellist_url":"http://angel.co/udemy","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19168-46f7ef2c0f994d588d8e8e56360d926b-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19168-46f7ef2c0f994d588d8e8e56360d926b-thumb.jpg","product_desc":"We
858
+ believe that in 5 years, the best education in the world will be available
859
+ online.\n\nUdemy is a platform so that any expert in the world can teach an
860
+ online course - it''s fast, easy and free. Just as blogging opened up online
861
+ publishing to millions of writers, or YouTube opened up online video to millions
862
+ of artists, Udemy seeks to open online learning to millions of experts.\n\nOnce
863
+ experts post courses, they are available - for free or pay - to anyone on
864
+ the internet.","high_concept":"Enables anyone to teach and learn online.","follower_count":489,"company_url":"http://www.udemy.com/"}},{"id":56704,"role":"incubator","created_at":"2011-09-15T02:54:32Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":22038,"hidden":false,"community_profile":false,"name":"Rentlord","angellist_url":"http://angel.co/rentlord","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22038-7f02b45447acfbb57c6463dccfab426f-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22038-7f02b45447acfbb57c6463dccfab426f-thumb.png","product_desc":"Rentlord
865
+ is a social platform enabling millions of tenants and landlords around the
866
+ world to rent homes without estate agents.\n\nIt is an end-to-end platform
867
+ connecting people with spaces, allowing you to list nationwide, search your
868
+ personal networks, create a contract, and manage the home.","high_concept":"Rent
869
+ Without Estate Agents","follower_count":145,"company_url":"http://www.rentlord.com"}},{"id":56349,"role":"past_investor","created_at":"2011-09-14T00:18:38Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":22246,"hidden":false,"community_profile":false,"name":"Everpix","angellist_url":"http://angel.co/everpix","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22246-8ab7e41022e7ab163f993d1a4164ef94-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22246-8ab7e41022e7ab163f993d1a4164ef94-thumb.png","product_desc":"Everpix\u2122
870
+ lets you have all your photos in the cloud, automagically uploaded, organized
871
+ and curated. View, rediscover, and share your best photos all in one place,
872
+ effortlessly.\n\nRead TechCrunch''s coverage of Everpix\u2122 soft launch
873
+ at TC Disrupt at \nhttp://techcrunch.com/2011/09/12/everpix-all-your-photos-automatically-organized-and-accessible-from-anywhere/.\n\nEverpix\u2122
874
+ is currently in public beta and supports Mac & iOS, but we intend to get started
875
+ on the Windows & Android versions ASAP.","high_concept":"Automatically have
876
+ all your photos in the cloud, organized and curated.","follower_count":266,"company_url":"https://www.everpix.com"}},{"id":55549,"role":"incubator","created_at":"2011-09-10T04:11:45Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":859,"hidden":false,"community_profile":false,"name":"Relevvant","angellist_url":"http://angel.co/relevvant-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/859-01b3524e0943802bfe2738d9e7d566b6-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/859-01b3524e0943802bfe2738d9e7d566b6-thumb.png","product_desc":"Relevvant
877
+ is the mobile marketing company that lets brands to leverage deep social data
878
+ to engage better and increase sales across every mobile channel, including
879
+ SMS, mobile Web, social and apps.\n\nPsychographics, likes, locations, and
880
+ graphs are leveraged to engage customers in ways that resonate with them.","high_concept":"Next-Level
881
+ Mobile Engagement and Marketing","follower_count":56,"company_url":"http://www.relevvant.com"}},{"id":52047,"role":"past_investor","created_at":"2011-08-26T19:33:26Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19037,"hidden":false,"community_profile":false,"name":"Massive
882
+ Joe Studios","angellist_url":"http://angel.co/massive-joe-studios","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19037-08a21a73ec9fc67377fba8482a56a8d9-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19037-08a21a73ec9fc67377fba8482a56a8d9-thumb.png","product_desc":"We
883
+ are a \"lean studio\", building character driven casual games and apps. We
884
+ develop simple games with iconic characters that can be leveraged across other
885
+ games and media (publishing, licensed goods, animation etc). We launched our
886
+ first game, Age of Monsters - Rock Paper Scissors, to rave reviews. See massivejoe.com
887
+ for all the positive press. We''re currently working on our second title Escape
888
+ from Age of Monsters.","high_concept":"Mobile Gaming/Entertainment","follower_count":155,"company_url":"http://massivejoe.com"}},{"id":49575,"role":"past_investor","created_at":"2011-08-17T07:57:01Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":6468,"hidden":false,"community_profile":false,"name":"Welcu","angellist_url":"http://angel.co/welcu","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/6468-5ba80463218f3e7b305b5f227a311e1b-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/6468-5ba80463218f3e7b305b5f227a311e1b-thumb.png","product_desc":"Did
889
+ you know that, today, event planners need to work with more than seven different
890
+ tools when putting on an event? Welcu is an end-to-end self-service solution
891
+ that allows event planners to manage the entire process of their planning.\n\nIn
892
+ our private beta, more than 80 brands have been working with us, including
893
+ Coca-Cola, Sony Ericsson, Xerox, BHP Billiton, BBDO, etc., with a 50% rate
894
+ of conversion into paid customers (40) and more than US$30,000 in sales during
895
+ the last few months.","high_concept":"The best way to manage high-end, unique
896
+ events.","follower_count":223,"company_url":"http://www.welcu.com"}},{"id":49107,"role":"past_investor","created_at":"2011-08-16T06:06:53Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":22335,"hidden":false,"community_profile":false,"name":"Snapette","angellist_url":"http://angel.co/snapette","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22335-bccfdf2cd0989977bb3f528cc3287dfc-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22335-bccfdf2cd0989977bb3f528cc3287dfc-thumb.png","product_desc":"Snapette
897
+ is an iPhone app for women to share & discover photos of great in-store products,
898
+ around the corner or the world. \n\nTry us now: http://bit.ly/nxvcDh\n","high_concept":"Platform
899
+ for brands and retailers to engage with fashion lovers on the go","follower_count":219,"company_url":"http://www.snapette.com"}},{"id":48449,"role":"past_investor","created_at":"2011-08-12T22:23:29Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":22663,"hidden":false,"community_profile":false,"name":"GazeHawk","angellist_url":"http://angel.co/gazehawk","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22663-30af57fe0b38a2865edfad38b73669f4-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22663-30af57fe0b38a2865edfad38b73669f4-thumb.png","product_desc":"GazeHawk
900
+ allows advertisers to see whether or not users are looking at ads. By accessing,
901
+ via opt-in, a user''s webcam, GazeHawk can tell where on a page they are looking. This
902
+ data provides unique insight into the effectiveness of brand advertising.","high_concept":"Better
903
+ display ads via eye tracking","follower_count":215,"company_url":"http://www.gazehawk.com/"}},{"id":47565,"role":"past_investor","created_at":"2011-08-10T19:58:38Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":4374,"hidden":false,"community_profile":false,"name":"Zerply","angellist_url":"http://angel.co/zerply","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4374-df5b10e633190f7d980ca47f58b93d2b-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4374-df5b10e633190f7d980ca47f58b93d2b-thumb.jpg","product_desc":"For
904
+ a long time we''ve only been able to judge professionals by their labels and
905
+ associations; job titles, employers, board positions, resumes, bios and LinkedIn
906
+ profiles. \n\nZerply is building an evidence-based identity for professionals,
907
+ that becomes more powerful over time as it incorporates what they''ve done,
908
+ and who they''ve worked with.","high_concept":"Killing the r\u00e9sum\u00e9","follower_count":541,"company_url":"http://zerply.com"}},{"id":47564,"role":"past_investor","created_at":"2011-08-10T19:58:07Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":119,"hidden":false,"community_profile":false,"name":"Appstores","angellist_url":"http://angel.co/appstores","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/119-54491b775cf038d4ee41f779f0b459a0-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/119-54491b775cf038d4ee41f779f0b459a0-thumb.","product_desc":"Developers
909
+ need relevant app distribution and consumers need a way to find apps that
910
+ are relevant and timely.\n\nWe are solving these problems by providing website
911
+ owners the tools to showcase the most relevant apps to their readers.\n\nRecent
912
+ Press\n\nhttp://techcrunch.com/2012/01/19/appstores-com-launches-an-adsense-for-mobile-apps/\n\nhttp://gigaom.com/2012/01/19/appstores-com-lets-anyone-build-their-own-app-store/","high_concept":"App
913
+ Distribution Platform","follower_count":174,"company_url":"http://appstores.com"}},{"id":47299,"role":"incubator","created_at":"2011-08-10T05:33:15Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":22335,"hidden":false,"community_profile":false,"name":"Snapette","angellist_url":"http://angel.co/snapette","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22335-bccfdf2cd0989977bb3f528cc3287dfc-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22335-bccfdf2cd0989977bb3f528cc3287dfc-thumb.png","product_desc":"Snapette
914
+ is an iPhone app for women to share & discover photos of great in-store products,
915
+ around the corner or the world. \n\nTry us now: http://bit.ly/nxvcDh\n","high_concept":"Platform
916
+ for brands and retailers to engage with fashion lovers on the go","follower_count":219,"company_url":"http://www.snapette.com"}},{"id":47289,"role":"past_investor","created_at":"2011-08-10T04:55:56Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":20898,"hidden":false,"community_profile":false,"name":"Loku","angellist_url":"http://angel.co/loku","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20898-4e902abae828f5920622f3787dc55ab3-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20898-4e902abae828f5920622f3787dc55ab3-thumb.jpg","product_desc":"Loku
917
+ is a mobile app that makes local discovery fun. \n\nHow? People get recognized
918
+ for actions that benefit the community: staying informed, going to events,
919
+ supporting local businesses, visiting places, inviting friends, and contributing
920
+ tips. \n\nYou can see our public Beta HTML5 app (open in SF, NYC, LA, Chicago,
921
+ DC and Austin) via loku.com on a mobile web browser, or at loku.com/app on
922
+ a laptop.","high_concept":"Making local discovery fun. ","follower_count":165,"company_url":"http://www.loku.com"}},{"id":47123,"role":"incubator","created_at":"2011-08-09T18:48:31Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":6468,"hidden":false,"community_profile":false,"name":"Welcu","angellist_url":"http://angel.co/welcu","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/6468-5ba80463218f3e7b305b5f227a311e1b-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/6468-5ba80463218f3e7b305b5f227a311e1b-thumb.png","product_desc":"Did
923
+ you know that, today, event planners need to work with more than seven different
924
+ tools when putting on an event? Welcu is an end-to-end self-service solution
925
+ that allows event planners to manage the entire process of their planning.\n\nIn
926
+ our private beta, more than 80 brands have been working with us, including
927
+ Coca-Cola, Sony Ericsson, Xerox, BHP Billiton, BBDO, etc., with a 50% rate
928
+ of conversion into paid customers (40) and more than US$30,000 in sales during
929
+ the last few months.","high_concept":"The best way to manage high-end, unique
930
+ events.","follower_count":223,"company_url":"http://www.welcu.com"}},{"id":46928,"role":"incubator","created_at":"2011-08-09T04:53:50Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":21877,"hidden":false,"community_profile":false,"name":"From.Us","angellist_url":"http://angel.co/from-us","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21877-bab400ac17c7a0cec2e29d34f51e0051-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21877-bab400ac17c7a0cec2e29d34f51e0051-thumb.jpg","product_desc":"Other
931
+ gift recommendation engines focus on analyzing user data made available through
932
+ social networks. From.Us focuses on creating a genuine social experience that
933
+ allows a gift giver to tap into his friend circle and find the friend that
934
+ has special knowledge of what the recipient might like. ","high_concept":"A
935
+ better way of giving gifts.","follower_count":139,"company_url":"http://from.us"}},{"id":46924,"role":"past_investor","created_at":"2011-08-09T04:52:47Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":21877,"hidden":false,"community_profile":false,"name":"From.Us","angellist_url":"http://angel.co/from-us","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21877-bab400ac17c7a0cec2e29d34f51e0051-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21877-bab400ac17c7a0cec2e29d34f51e0051-thumb.jpg","product_desc":"Other
936
+ gift recommendation engines focus on analyzing user data made available through
937
+ social networks. From.Us focuses on creating a genuine social experience that
938
+ allows a gift giver to tap into his friend circle and find the friend that
939
+ has special knowledge of what the recipient might like. ","high_concept":"A
940
+ better way of giving gifts.","follower_count":139,"company_url":"http://from.us"}},{"id":46638,"role":"incubator","created_at":"2011-08-08T01:48:17Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2752,"hidden":false,"community_profile":false,"name":"Fileboard","angellist_url":"http://angel.co/fileboard","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2752-096b6a43678e0dc41937ef1cd1d6ee2b-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2752-096b6a43678e0dc41937ef1cd1d6ee2b-thumb.png","product_desc":"Have
941
+ you tried to attach or review/documents on the iPad? Your frustration is shared
942
+ by so many others.\n\nRight now, your files are spread across many different
943
+ sources: emails, the cloud, and hard drives. Fileboard is your first window
944
+ of your knowledge no matter where it resides, how it is accessed, or who it
945
+ is from. \n\nPeople in Sales, Healthcare and Management are using Fileboard
946
+ to save time and be more productive on the iPad.\n\n\n","high_concept":"File
947
+ collaboration on the iPad","follower_count":202,"company_url":"http://www.fileboard.com"}},{"id":46347,"role":"past_investor","created_at":"2011-08-06T01:00:52Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2489,"hidden":false,"community_profile":false,"name":"Rapportive","angellist_url":"http://angel.co/rapportive","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2489-1a4e851d33bf478ab5e32751caeecb60-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2489-1a4e851d33bf478ab5e32751caeecb60-thumb.png","product_desc":"Rapportive
948
+ shows you everything about your contacts right inside your inbox. \n\nYou
949
+ can immediately see what people look like, where they''re based, and what
950
+ they do. You can establish rapport by mentioning shared interests. You can
951
+ grow your network by connecting on LinkedIn, Twitter, Facebook and more. And
952
+ you can record thoughts for later by leaving notes. \n\nImagine relationship
953
+ management built into your email. For free.","high_concept":"Be brilliant
954
+ with people","follower_count":374,"company_url":"http://www.rapportive.com"}},{"id":46346,"role":"past_investor","created_at":"2011-08-06T01:00:23Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1639,"hidden":false,"community_profile":false,"name":"BizeeBee","angellist_url":"http://angel.co/bizeebee","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1639-6ce3f7cce1b59cf049e86d6c36dabe77-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1639-6ce3f7cce1b59cf049e86d6c36dabe77-thumb.","product_desc":"BizeeBee
955
+ simplifies memberships management, keeping memberships up-to-date, and making
956
+ renewing quick and easy.\n\nOffline membership based businesses around the
957
+ world can setup within minutes by adding services and customers. Recording
958
+ customer visits and purchases daily keeps memberships up-to-date. BizeeBee
959
+ sends members email reminders to renew memberships on the business''s BizeeBee
960
+ online store, which makes it easy for members to renew and faster for businesses
961
+ to get paid.\n\n\n","high_concept":"Memberships made easy.","follower_count":131,"company_url":"http://www.bizeebee.com"}},{"id":46345,"role":"past_investor","created_at":"2011-08-06T00:59:39Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2854,"hidden":false,"community_profile":false,"name":"Manpacks","angellist_url":"http://angel.co/manpacks","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2854-5836263df43fc4bbf0282f7b8487fe37-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2854-5836263df43fc4bbf0282f7b8487fe37-thumb.png","product_desc":"Manpacks
962
+ has built a shopping experience to help guys buy things they hate to shop
963
+ for in a simple, fast, and fun way. Like if Netflix and iTunes had a baby
964
+ that sold underwear and condoms.\n\nManpacks features a customer dashboard
965
+ to hold favorite products, queued up to ship on a quarterly schedule. Rush,
966
+ snooze, or modify a pack anytime, and add new items to your next pack with
967
+ a single click. \n\nOur customers love the Manpacks attitude, convenience,
968
+ and focused product selection. \n\n\n","high_concept":"Netflix for Underwear
969
+ (minus the returns)","follower_count":247,"company_url":"http://www.manpacks.com"}},{"id":46344,"role":"past_investor","created_at":"2011-08-06T00:58:17Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":21891,"hidden":false,"community_profile":false,"name":"AppGrooves","angellist_url":"http://angel.co/appgrooves","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21891-cd6a4fccf52dbcfc14d07b9ffcbd90b3-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21891-cd6a4fccf52dbcfc14d07b9ffcbd90b3-thumb.png","product_desc":"AppGrooves
970
+ is a recommendation engine for iOS apps. AppGrooves can:\n- automatically
971
+ detect installed apps on an iPhone\n- present pairs of apps for the user to
972
+ vote on (a sort of \u2018Hot or Not for Apps\u2019)\n- let users ask Facebook
973
+ friends saying \u2018which app do you like better?\u2019.","high_concept":"\"Hot
974
+ or Not for Apps\" for better app discovery","follower_count":174,"company_url":"http://appgrooves.com/"}},{"id":44825,"role":"incubator","created_at":"2011-07-30T08:15:41Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":21891,"hidden":false,"community_profile":false,"name":"AppGrooves","angellist_url":"http://angel.co/appgrooves","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21891-cd6a4fccf52dbcfc14d07b9ffcbd90b3-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21891-cd6a4fccf52dbcfc14d07b9ffcbd90b3-thumb.png","product_desc":"AppGrooves
975
+ is a recommendation engine for iOS apps. AppGrooves can:\n- automatically
976
+ detect installed apps on an iPhone\n- present pairs of apps for the user to
977
+ vote on (a sort of \u2018Hot or Not for Apps\u2019)\n- let users ask Facebook
978
+ friends saying \u2018which app do you like better?\u2019.","high_concept":"\"Hot
979
+ or Not for Apps\" for better app discovery","follower_count":174,"company_url":"http://appgrooves.com/"}},{"id":43578,"role":"incubator","created_at":"2011-07-25T21:18:59Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":4064,"hidden":false,"community_profile":false,"name":"PicCollage","angellist_url":"http://angel.co/piccollage","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4064-f782772f9df924a3bd42c453e079d474-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4064-f782772f9df924a3bd42c453e079d474-thumb.png","product_desc":"PicCollage
980
+ is a photo collage app for iPhone/iPad with over 5 million downloads! The
981
+ intuitive touch gestures make it fun and simple to create a collage using
982
+ photos from library, Facebook or web, and share with friends and family. You
983
+ can also crop photos, add text and stickers, edit borders, apply filter effects
984
+ and add captions.\n\n","high_concept":"Social Scrapbooking","follower_count":241,"company_url":"http://pic-collage.com"}},{"id":43563,"role":"past_investor","created_at":"2011-07-25T20:46:37Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":4064,"hidden":false,"community_profile":false,"name":"PicCollage","angellist_url":"http://angel.co/piccollage","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4064-f782772f9df924a3bd42c453e079d474-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4064-f782772f9df924a3bd42c453e079d474-thumb.png","product_desc":"PicCollage
985
+ is a photo collage app for iPhone/iPad with over 5 million downloads! The
986
+ intuitive touch gestures make it fun and simple to create a collage using
987
+ photos from library, Facebook or web, and share with friends and family. You
988
+ can also crop photos, add text and stickers, edit borders, apply filter effects
989
+ and add captions.\n\n","high_concept":"Social Scrapbooking","follower_count":241,"company_url":"http://pic-collage.com"}},{"id":43545,"role":"past_investor","created_at":"2011-07-25T20:20:52Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":20715,"hidden":false,"community_profile":false,"name":"Coderbuddy","angellist_url":"http://angel.co/coderbuddy","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20715-1447006a4f782b0c53af4dd5216ab4dc-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20715-1447006a4f782b0c53af4dd5216ab4dc-thumb.png","product_desc":"Coderbuddy
990
+ is solving the software development capacity shortage, and is founded by Social
991
+ Networking pioneer and Napster investor Adrian Scott.\n\nWe''re creating a
992
+ disruptive platform starting with a web-based development, testing & publishing
993
+ environment, adding a social layer, and then a next-generation marketplace.\n\nThe
994
+ first version of Coderbuddy is a free, social web IDE that lets you create,
995
+ test & publish web apps & static sites to Google App Engine, which has a big,
996
+ free hosting quota.","high_concept":"Solving the Software Engineering Shortage;
997
+ starting with Free, Social, Web IDE","follower_count":149,"company_url":"https://www.coderbuddy.com"}},{"id":41746,"role":"past_investor","created_at":"2011-07-17T15:03:00Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":3033,"hidden":false,"community_profile":false,"name":"Chromatik","angellist_url":"http://angel.co/chromatik","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3033-12dcf022d2904ddf696349a3792a4120-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3033-12dcf022d2904ddf696349a3792a4120-thumb.jpg","product_desc":"Chromatik
998
+ is a music technology company redefining how people practice, perform, and
999
+ teach music. The \"learning platform for true musicians\" provides all of
1000
+ the tools needed to play music and collaborate with educators via mobile and
1001
+ web applications. \n\nChromatik is currently in private beta, but users already
1002
+ include American Idol, Juilliard, UCLA, and the Los Angeles Unified School
1003
+ District. \n","high_concept":"Learning Platform for True Musicians","follower_count":271,"company_url":"http://www.chromatik.com"}},{"id":41156,"role":"incubator","created_at":"2011-07-14T06:33:44Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":21047,"hidden":false,"community_profile":false,"name":"Console.fm","angellist_url":"http://angel.co/console-fm","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21047-fd554bef56e3ab4bc95be56425ff1777-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21047-fd554bef56e3ab4bc95be56425ff1777-thumb.jpg","product_desc":"Console.fm,
1004
+ awesome music without the hassle: a service that allows you to \"just press
1005
+ play\" and get the best music from across the web. Check it out for yourself
1006
+ at http://console.fm\n\nAlso, please check out our pitch for 500 Startups
1007
+ Demo Day\nhttp://cdn.livestream.com/embed/500startups?layout=4&clip=flv_b3d79fd0-03fb-4abd-80d6-391e219e25f2&height=340&width=560&autoPlay=false&mute=false","high_concept":"Curated
1008
+ electronic music playlists by top artists.","follower_count":166,"company_url":"http://console.fm"}},{"id":40885,"role":"past_investor","created_at":"2011-07-12T18:52:53Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19435,"hidden":false,"community_profile":false,"name":"FastCustomer","angellist_url":"http://angel.co/fastcustomer","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19435-25f134a0556ab326091478c2fbf9ee2e-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19435-25f134a0556ab326091478c2fbf9ee2e-thumb.png","product_desc":"Featured
1009
+ on NYT, CNN, NBC...\n\nEveryone HATES waiting on hold.\n\nOur Solution: If
1010
+ you want to reach a real person AT&T, you click \"AT&T\" (iPhone & Android,
1011
+ 4.5 star ratings) and go back to your life. We''ll call, navigate, wait,
1012
+ and when we have a real person on the line ready to help you we''ll call you.\n\nWe''ve
1013
+ helped people spend 550,000 minutes doing whatever they want instead of waiting
1014
+ on hold. 45k downloads, iTunes Top Downloads list.\n\nIt''s going well.","high_concept":"Never
1015
+ wait on hold again.","follower_count":252,"company_url":"http://www.fastcustomer.com"}},{"id":40815,"role":"incubator","created_at":"2011-07-12T14:44:12Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":4081,"hidden":false,"community_profile":false,"name":"BugHerd","angellist_url":"http://angel.co/bugherd","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4081-ae884ce4ca1e15ab260208274c921448-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/4081-ae884ce4ca1e15ab260208274c921448-thumb.png","product_desc":"BugHerd
1016
+ the visual issue tracker for the web. We help developers and designers save
1017
+ time and money by allowing them to communicate more effectively with their
1018
+ clients and non-technical team members.\n\nBugHerd integrates with Pivotal
1019
+ Tracker, Basecamp, JIRA, Github and Redmine and vastly speeds up your productivity
1020
+ by allowing users to report issues visually in less than 10 seconds.\n","high_concept":"The
1021
+ world''s simplest bug tracker","follower_count":300,"company_url":"http://bugherd.com"}},{"id":40678,"role":"incubator","created_at":"2011-07-11T21:48:09Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":20944,"hidden":false,"community_profile":false,"name":"Tinfoil
1022
+ Security","angellist_url":"http://angel.co/tinfoil-security","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20944-a8f897a3da27792f07cd96bbd31f2020-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20944-a8f897a3da27792f07cd96bbd31f2020-thumb.png","product_desc":"Tinfoil
1023
+ Security is providing the simplest security solution. With Tinfoil Security,
1024
+ your site is routinely monitored and checked for vulnerabilities using a scanner
1025
+ that''s constantly updated. Using the same techniques as malicious hackers,
1026
+ we systematically test all the access points, instantly notifying you when
1027
+ there''s a threat and giving you step-by-step instructions, tailored to your
1028
+ software stack, to eliminate it. You have a lot to manage; let us manage your
1029
+ website''s security.","high_concept":"Better automated website security","follower_count":363,"company_url":"https://www.tinfoilsecurity.com"}},{"id":40677,"role":"past_investor","created_at":"2011-07-11T21:48:01Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":20944,"hidden":false,"community_profile":false,"name":"Tinfoil
1030
+ Security","angellist_url":"http://angel.co/tinfoil-security","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20944-a8f897a3da27792f07cd96bbd31f2020-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20944-a8f897a3da27792f07cd96bbd31f2020-thumb.png","product_desc":"Tinfoil
1031
+ Security is providing the simplest security solution. With Tinfoil Security,
1032
+ your site is routinely monitored and checked for vulnerabilities using a scanner
1033
+ that''s constantly updated. Using the same techniques as malicious hackers,
1034
+ we systematically test all the access points, instantly notifying you when
1035
+ there''s a threat and giving you step-by-step instructions, tailored to your
1036
+ software stack, to eliminate it. You have a lot to manage; let us manage your
1037
+ website''s security.","high_concept":"Better automated website security","follower_count":363,"company_url":"https://www.tinfoilsecurity.com"}},{"id":40394,"role":"past_investor","created_at":"2011-07-10T00:48:08Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19159,"hidden":false,"community_profile":false,"name":"Recurly","angellist_url":"http://angel.co/recurly","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19159-dfb47323a641a3d21ae1f0facc0ab09f-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19159-dfb47323a641a3d21ae1f0facc0ab09f-thumb.png","product_desc":"Subscription
1038
+ Billing. Zen Simplicity. Enterprise-class recurring billing management for
1039
+ your business.","high_concept":"Subscription Billing. Zen Simplicity.","follower_count":85,"company_url":"http://recurly.com"}},{"id":40393,"role":"past_investor","created_at":"2011-07-10T00:47:35Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19153,"hidden":false,"community_profile":false,"name":"Foodspotting","angellist_url":"http://angel.co/foodspotting","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19153-0dcc96509f2c6851740964fa96dd3ff0-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19153-0dcc96509f2c6851740964fa96dd3ff0-thumb.jpg","product_desc":"Share
1040
+ a food you recommend or see what others have recommended near you!\n","high_concept":"The
1041
+ best foods and where to find them","follower_count":275,"company_url":"http://www.foodspotting.com"}},{"id":40391,"role":"past_investor","created_at":"2011-07-10T00:46:58Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":915,"hidden":false,"community_profile":false,"name":"FeeFighters","angellist_url":"http://angel.co/feefighters","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/915-83929a900d3892c28193c52a21478a2b-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/915-83929a900d3892c28193c52a21478a2b-thumb.","product_desc":"FeeFighters
1042
+ (http://feefighters.com) is the best place to comparison shop for payment
1043
+ providers. We aggregate the pricing rules of top payment providers and conduct
1044
+ instant reverse auctions to get the best price for each customer. Then we
1045
+ help them commit to a provider, taking a revshare. We''re now coming into
1046
+ the marketplace with our own product Samurai (http://samurai.feefighters.com),
1047
+ an all in one merchant account + gateway with simple pricing and API. Now
1048
+ both devs and finance guys <3 us.","high_concept":"All in one payments solution","follower_count":244,"company_url":"http://feefighters.com"}},{"id":40389,"role":"past_investor","created_at":"2011-07-10T00:46:16Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":194,"hidden":false,"community_profile":false,"name":"BackType","angellist_url":"http://angel.co/backtype","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/194-dc3e7239d7c0d1a32692772dcf99eafc-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/194-dc3e7239d7c0d1a32692772dcf99eafc-thumb.txt","product_desc":"BackType
1049
+ is a marketing intelligence platform that helps brands and agencies understand
1050
+ the business impact of social media. Our dashboard helps marketers quantify
1051
+ and profile engagement and audiences so they can make better marketing decisions.
1052
+ You can try the free product at http://www.backtype.com","high_concept":"Acquired
1053
+ by Twitter","follower_count":77,"company_url":"http://www.backtype.com/"}},{"id":40312,"role":"past_investor","created_at":"2011-07-09T00:18:41Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":20520,"hidden":false,"community_profile":false,"name":"Culture
1054
+ Kitchen","angellist_url":"http://angel.co/culture-kitchen","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20520-07dee92b6d4b3bf12bad105d7c06cfcf-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20520-07dee92b6d4b3bf12bad105d7c06cfcf-thumb.jpg","product_desc":"Culture
1055
+ Kitchen brings real authentic ethnic cuisines and the story behind the food
1056
+ to food lovers through our online platform. At www.culturekitchensf.com we
1057
+ bring you the recipes, cooking knowledge and ingredients to actually cook
1058
+ at home. These are the coveted recipes that get passed down from generation
1059
+ to generation. We connect you with the grandmothers from around the world
1060
+ you wish you had and now the ingredients and knowledge to cook like them at
1061
+ home.","high_concept":"Make it easy for anyone to cook and share authentic
1062
+ ethnic cuisine","follower_count":95,"company_url":"http://www.culturekitchensf.com"}},{"id":40136,"role":"incubator","created_at":"2011-07-08T04:33:36Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1941,"hidden":false,"community_profile":false,"name":"Skipola","angellist_url":"http://angel.co/skipola","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1941-4cc6a4a2476e57176cee342be7e60735-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1941-4cc6a4a2476e57176cee342be7e60735-thumb.png","product_desc":"Skipola
1063
+ lets restaurant owners operate their own white-label order placement tools.
1064
+ Those tools enable merchants to build relationships with their customers directly
1065
+ rather than through 3rd party middlemen. The benefit of doing it yourself
1066
+ are lower fees and more control over the product and its promotion.","high_concept":"Chipotle''s
1067
+ iPhone app for all other restaurants.","follower_count":72,"company_url":"http://skipola.com"}},{"id":39456,"role":"incubator","created_at":"2011-07-04T03:02:41Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2197,"hidden":false,"community_profile":false,"name":"Vayable","angellist_url":"http://angel.co/vayable","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2197-3983fe228b05d33a497de287388ed5ff-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2197-3983fe228b05d33a497de287388ed5ff-thumb.png","product_desc":"Vayable
1068
+ is a social marketplace for unique travel experiences. Individuals can offer
1069
+ anything from street art tours to day trips on a private jet to others seeking
1070
+ activities in their hometown or destinations.","high_concept":"Community marketplace
1071
+ for travel experiences","follower_count":283,"company_url":"http://www.vayable.com"}},{"id":38995,"role":"past_investor","created_at":"2011-06-30T18:58:14Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":5599,"hidden":false,"community_profile":false,"name":"drumbi","angellist_url":"http://angel.co/drumbi","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/5599-5d17107cdbe1aa0ff30e27b002871bb1-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/5599-5d17107cdbe1aa0ff30e27b002871bb1-thumb.png","product_desc":"Today,
1072
+ all calls and the underlying infrastructure is based on \"voice first, data
1073
+ second\". Drumbi is rethinking this, and using the power of smartphones to
1074
+ deliver a new set of capabilities to the call experience.\n\nGoing beyond
1075
+ voice-driven IVR, Drumbi is focused on predicting what you want, presenting
1076
+ it dynamically, and creating a completely different experience when calling
1077
+ a business. No more phone menus. No more entering your account number. No
1078
+ more waiting on hold. Drumbi changes this. \n","high_concept":"Leveraging
1079
+ smartphones for intelligent call routing. ","follower_count":162,"company_url":"http://www.drumbi.com"}},{"id":38698,"role":"incubator","created_at":"2011-06-28T22:55:20Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":20520,"hidden":false,"community_profile":false,"name":"Culture
1080
+ Kitchen","angellist_url":"http://angel.co/culture-kitchen","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20520-07dee92b6d4b3bf12bad105d7c06cfcf-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20520-07dee92b6d4b3bf12bad105d7c06cfcf-thumb.jpg","product_desc":"Culture
1081
+ Kitchen brings real authentic ethnic cuisines and the story behind the food
1082
+ to food lovers through our online platform. At www.culturekitchensf.com we
1083
+ bring you the recipes, cooking knowledge and ingredients to actually cook
1084
+ at home. These are the coveted recipes that get passed down from generation
1085
+ to generation. We connect you with the grandmothers from around the world
1086
+ you wish you had and now the ingredients and knowledge to cook like them at
1087
+ home.","high_concept":"Make it easy for anyone to cook and share authentic
1088
+ ethnic cuisine","follower_count":95,"company_url":"http://www.culturekitchensf.com"}},{"id":38527,"role":"past_investor","created_at":"2011-06-28T00:45:33Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1023,"hidden":false,"community_profile":false,"name":"MindSnacks","angellist_url":"http://angel.co/mindsnacks","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1023-0e4f9d4a79828f0964a70720d695d2d7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1023-0e4f9d4a79828f0964a70720d695d2d7-thumb.png","product_desc":"MindSnacks
1089
+ builds touch-based educational games for foreign language learning, test prep
1090
+ and other subjects. \n\nMindSnacks Spanish, French, English, Mandarin, German,
1091
+ Italian, Portuguese and SAT Vocab are available in the App Store today. \n\nSelected
1092
+ as 2011 Education App of the Year by Apple. \n\nMindSnacks is a profitable
1093
+ 13-person company with significant traction.","high_concept":"Mobile educational
1094
+ games","follower_count":400,"company_url":"http://www.mindsnacks.com"}},{"id":38438,"role":"past_investor","created_at":"2011-06-27T20:00:46Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":18918,"hidden":false,"community_profile":false,"name":"Relevant","angellist_url":"http://angel.co/relevant","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18918-c3cff2f6bad77954c442b6e7059afeb0-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18918-c3cff2f6bad77954c442b6e7059afeb0-thumb.png","product_desc":"Relevant
1095
+ is a B2B platform for restaurants to conduct CRM and direct marketing. We
1096
+ help chain restaurants better engage with their customers.\n\nOur cloud-based
1097
+ service requires no staff training or IT setup. As such, we are uniquely placed
1098
+ to serve chain restaurants.","high_concept":"Customer intelligence for restaurants","follower_count":194,"company_url":"http://www.relevantmobile.com"}},{"id":37777,"role":"referrer","created_at":"2011-06-23T20:31:24Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":13097,"hidden":false,"community_profile":false,"name":"Ninua","angellist_url":"http://angel.co/ninua","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13097-bab2877df2e45ef39a006dca8b3dccb7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13097-bab2877df2e45ef39a006dca8b3dccb7-thumb.png","product_desc":"We''ve
1099
+ built the largest distribution platform for news on social networks. Connecting
1100
+ 700,000+ blogs and publications to the real identities of their writers and
1101
+ readers (5M+ users). \n\nWe''re tapping into two paradigm shifts that are
1102
+ shaking the $23B/year news industry: social and mobile. Our new mobile news
1103
+ app, launched last week, builds on our huge database of interests and social
1104
+ data and introduces a new model for news sharing and discovery. Backed by
1105
+ our established infrastructure and a big user base, we aim to own a significant
1106
+ share of the emerging news market on mobile devices. \n","high_concept":"Platform
1107
+ for sharing on social networks.","follower_count":112,"company_url":"http://www.ninua.com"}},{"id":37774,"role":"referrer","created_at":"2011-06-23T20:29:02Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":13152,"hidden":false,"community_profile":false,"name":"Visually","angellist_url":"http://angel.co/visually","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13152-f87853ee0045cb55866532afbdba2885-medium.gif","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13152-f87853ee0045cb55866532afbdba2885-thumb.gif","product_desc":"http://visual.ly
1108
+ is the largest community for data visualization. This platform allows users
1109
+ to create and distribute visualizations in their publication, presentations,
1110
+ and throughout social media. \n\nThe result is higher engagement , greater
1111
+ distribution (30X sharing), and better understanding.","high_concept":"We
1112
+ are the Data Visualization platform for Big Data","follower_count":706,"company_url":"http://visual.ly"}},{"id":37762,"role":"referrer","created_at":"2011-06-23T20:17:41Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":13076,"hidden":false,"community_profile":false,"name":"Rewardli","angellist_url":"http://angel.co/rewardli","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13076-4e76e02bc2e41262687371546476268e-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13076-4e76e02bc2e41262687371546476268e-thumb.png","product_desc":"Rewardli
1113
+ lets small businesses combine their buying power to get deals from our network
1114
+ of 70+ vendors, including Staples, FedEx Office, Vistaprint, GoDaddy, Expedia
1115
+ and Best Buy.\n\nOur deals are always on and get better as users invite others
1116
+ to join their buying group.\n\nWe also power cobranded deal sites for membership-based
1117
+ groups: 500 Startups, the Performance Marketing Association, LeadsCon and
1118
+ the Daily Deal Summit.\n\nIncubated @ 500 Startups W11, launched onstage @
1119
+ TC Disrupt.","high_concept":"Demand aggregation for groups. @500 W11","follower_count":229,"company_url":"http://www.rewardli.com"}},{"id":37761,"role":"referrer","created_at":"2011-06-23T20:17:03Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":12271,"hidden":false,"community_profile":false,"name":"Saygent","angellist_url":"http://angel.co/saygent","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12271-ccb95bae2f91848620940becb209a414-medium.gif","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12271-ccb95bae2f91848620940becb209a414-thumb.gif","product_desc":"Listening
1120
+ to your customers is our business. \nOur patent-pending technology allows
1121
+ your customers to easily provide free-flowing verbal responses using their
1122
+ mobile phones to questions about your brand and their experiences. \nWe turn
1123
+ these responses to new actionable insight that will help you drive sales and
1124
+ brand loyalty. \n\nFortune500 and medium size businesses use us to understand
1125
+ their customers better. \n\nCall us if you want to understand your customers
1126
+ better too. ","high_concept":"Customer listening, literally. ","follower_count":124,"company_url":"http://www.saygent.com"}},{"id":36029,"role":"past_investor","created_at":"2011-06-16T07:15:49Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":15481,"hidden":false,"community_profile":false,"name":"OwnLocal","angellist_url":"http://angel.co/ownlocal","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/15481-998515d887456b9ba0e046cab66734e5-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/15481-998515d887456b9ba0e046cab66734e5-thumb.png","product_desc":"OwnLocal
1127
+ is the App Store for Local. \n\nWe give small businesses a one-stop-shop to
1128
+ finally be successful online. Our customers get great Websites, SEO, E-Mail
1129
+ Marketing, Daily Deals, Social Media Management, Directory Listings, and more.
1130
+ \n\nOwnLocal succeeds where others have failed because we work with trusted
1131
+ community partners like newspapers, chambers of commerce, and even governments
1132
+ to offer small businesses products that perform well.\n\nSince last May, we
1133
+ have signed 500+ paying customers.","high_concept":"AppStore for Local (Y
1134
+ Combinator W10)","follower_count":249,"company_url":"http://OwnLocal.com"}},{"id":34987,"role":"incubator","created_at":"2011-06-09T22:39:57Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":3296,"hidden":false,"community_profile":false,"name":"Kibin","angellist_url":"http://angel.co/kibin","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3296-b6206cc6e34f9b5fd033fecbc41cf1b4-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3296-b6206cc6e34f9b5fd033fecbc41cf1b4-thumb.png","product_desc":"Kibin
1135
+ helps people become better writers. \n\nThe problem here is that writing
1136
+ is hard, and finding someone to give helpful, unbiased feedback on that writing
1137
+ is even harder.\n\nWe''re making extremely simple for people to find intelligent,
1138
+ qualified individuals to help them with their writing. \n\nWe''re also laying
1139
+ the foundation to collect the data that our service generates in order to
1140
+ build an algorithmic proofreading solution that will make proofreading as
1141
+ ubiquitous as spell check.","high_concept":"Crowd Sourced Proofreading & Editing
1142
+ Service","follower_count":181,"company_url":"http://www.kibin.com"}},{"id":34749,"role":"past_investor","created_at":"2011-06-08T22:36:08Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2917,"hidden":false,"community_profile":false,"name":"LaunchRock","angellist_url":"http://angel.co/launchrock","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2917-b4380ef3be86f10bac24ecee8ee5f763-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2917-b4380ef3be86f10bac24ecee8ee5f763-thumb.png","product_desc":"LaunchRock
1143
+ incentivizes people who sign up for your product launch to share it with their
1144
+ friends.\n\nNow, we''re building a product that goes BEYOND launch \u2013
1145
+ a platform for better engaging existing users/customers and acquiring new
1146
+ ones through social.\n\nDuring our private beta LaunchRock has generated 1,000,000+
1147
+ signups for 3,000+ customers. We''re about to come out of beta and open the
1148
+ product to the 50,000+ customers on the waiting list.","high_concept":"We
1149
+ *get* users","follower_count":503,"company_url":"http://launchrock.com"}},{"id":34562,"role":"past_investor","created_at":"2011-06-08T09:05:54Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2197,"hidden":false,"community_profile":false,"name":"Vayable","angellist_url":"http://angel.co/vayable","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2197-3983fe228b05d33a497de287388ed5ff-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2197-3983fe228b05d33a497de287388ed5ff-thumb.png","product_desc":"Vayable
1150
+ is a social marketplace for unique travel experiences. Individuals can offer
1151
+ anything from street art tours to day trips on a private jet to others seeking
1152
+ activities in their hometown or destinations.","high_concept":"Community marketplace
1153
+ for travel experiences","follower_count":283,"company_url":"http://www.vayable.com"}},{"id":34535,"role":"incubator","created_at":"2011-06-08T05:10:50Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2917,"hidden":false,"community_profile":false,"name":"LaunchRock","angellist_url":"http://angel.co/launchrock","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2917-b4380ef3be86f10bac24ecee8ee5f763-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2917-b4380ef3be86f10bac24ecee8ee5f763-thumb.png","product_desc":"LaunchRock
1154
+ incentivizes people who sign up for your product launch to share it with their
1155
+ friends.\n\nNow, we''re building a product that goes BEYOND launch \u2013
1156
+ a platform for better engaging existing users/customers and acquiring new
1157
+ ones through social.\n\nDuring our private beta LaunchRock has generated 1,000,000+
1158
+ signups for 3,000+ customers. We''re about to come out of beta and open the
1159
+ product to the 50,000+ customers on the waiting list.","high_concept":"We
1160
+ *get* users","follower_count":503,"company_url":"http://launchrock.com"}},{"id":34308,"role":"incubator","created_at":"2011-06-07T01:03:19Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19561,"hidden":false,"community_profile":false,"name":"Singboard","angellist_url":"http://angel.co/singboard","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19561-bdb58d8dadfde50089a81f515ec116f5-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19561-bdb58d8dadfde50089a81f515ec116f5-thumb.png","product_desc":"Singboard
1161
+ - where YouTube meets karaoke. ","high_concept":"Where YouTube
1162
+ meets karaoke.","follower_count":162,"company_url":"http://singboard.com"}},{"id":34274,"role":"incubator","created_at":"2011-06-06T23:08:54Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":15762,"hidden":false,"community_profile":false,"name":"WillCall","angellist_url":"http://angel.co/willcall","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/15762-eba2e37a308bc4faf3949312efe57a6a-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/15762-eba2e37a308bc4faf3949312efe57a6a-thumb.jpg","product_desc":"WillCall
1163
+ is the easiest way to catch a live event at the last minute \u2013 basically
1164
+ HotelTonight for live events.\n\nTransactions are the absolute worst part
1165
+ of seeing live performances because there''s never been a product built for
1166
+ consumers first.\n\nWe partner directly with promoters and venues to curate
1167
+ a short list of high quality shows to check out each night. \n\nUsers purchase
1168
+ tickets directly from the app and are automatically added to the venues will
1169
+ call list.","high_concept":"HotelTonight for local theater and music venues.
1170
+ ","follower_count":198,"company_url":"http://getwillcall.com"}},{"id":34273,"role":"past_investor","created_at":"2011-06-06T23:08:21Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":15762,"hidden":false,"community_profile":false,"name":"WillCall","angellist_url":"http://angel.co/willcall","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/15762-eba2e37a308bc4faf3949312efe57a6a-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/15762-eba2e37a308bc4faf3949312efe57a6a-thumb.jpg","product_desc":"WillCall
1171
+ is the easiest way to catch a live event at the last minute \u2013 basically
1172
+ HotelTonight for live events.\n\nTransactions are the absolute worst part
1173
+ of seeing live performances because there''s never been a product built for
1174
+ consumers first.\n\nWe partner directly with promoters and venues to curate
1175
+ a short list of high quality shows to check out each night. \n\nUsers purchase
1176
+ tickets directly from the app and are automatically added to the venues will
1177
+ call list.","high_concept":"HotelTonight for local theater and music venues.
1178
+ ","follower_count":198,"company_url":"http://getwillcall.com"}},{"id":34208,"role":"past_investor","created_at":"2011-06-06T20:06:40Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":160,"hidden":false,"community_profile":false,"name":"OVIA","angellist_url":"http://angel.co/ovia","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/160-7a9350fe4076bc00e233e3fe04ab5b2c-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/160-7a9350fe4076bc00e233e3fe04ab5b2c-thumb.","product_desc":"OVIA
1179
+ is a video screening platform that helps companies screen people not resumes.\n\nCompanies
1180
+ are wasting too much time and money on unqualified candidates. We eliminate
1181
+ 1st stage interviews with an asynchronous video interview.\n\nWe help companies
1182
+ identify higher quality candidates faster:\n-Spend less time with bad candidates.\n-Eliminate
1183
+ the headaches of scheduling and conducting thousands of phone interviews.\n-Get
1184
+ the right people involved in the hiring decision efficiently.","high_concept":"Video
1185
+ Screening for Recruitment","follower_count":122,"company_url":"http://www.ovia.me"}},{"id":33719,"role":"incubator","created_at":"2011-06-03T05:55:23Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2973,"hidden":false,"community_profile":false,"name":"VidCaster","angellist_url":"http://angel.co/vidcaster","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2973-18ad2b76bfe72723804e833fe3947e33-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2973-18ad2b76bfe72723804e833fe3947e33-thumb.png","product_desc":"VidCaster
1186
+ is a one-click video site maker including hosting + video management for SMBs,
1187
+ corporate marketers and content producers.\n\nVidCaster instantly creates
1188
+ engaging, fully SEO''d video websites without the hassle or cost of combining
1189
+ separate services like YouTube+WordPress, Brightcove+CustomCMS, etc.\n\nMicrosoft
1190
+ used VidCaster to create a video site in less than an hour: http://hackersandfounders.tv\n\nCreditCards.com
1191
+ uses VidCaster to maximize organic video SEO:\nhttp://video.creditcards.com","high_concept":"One-click
1192
+ video sites, hosting, analytics","follower_count":250,"company_url":"http://www.vidcaster.com"}},{"id":33371,"role":"incubator","created_at":"2011-06-01T18:42:20Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19331,"hidden":false,"community_profile":false,"name":"LaunchBit","angellist_url":"http://angel.co/launchbit-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19331-8d52053539a23cf079ef56d26635333d-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19331-8d52053539a23cf079ef56d26635333d-thumb.jpg","product_desc":"www.launchbit.com
1193
+ is an ad network for email. We help advertisers reach their target demographic
1194
+ through niche email newsletters, and we help email newsletters monetize. We
1195
+ make it easy to target readers of high-quality email newsletters en masse
1196
+ without doing one-off business development deals.","high_concept":"Ad network
1197
+ for email","follower_count":282,"company_url":"http://www.launchbit.com"}},{"id":33365,"role":"past_investor","created_at":"2011-06-01T18:28:36Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":19331,"hidden":false,"community_profile":false,"name":"LaunchBit","angellist_url":"http://angel.co/launchbit-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19331-8d52053539a23cf079ef56d26635333d-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19331-8d52053539a23cf079ef56d26635333d-thumb.jpg","product_desc":"www.launchbit.com
1198
+ is an ad network for email. We help advertisers reach their target demographic
1199
+ through niche email newsletters, and we help email newsletters monetize. We
1200
+ make it easy to target readers of high-quality email newsletters en masse
1201
+ without doing one-off business development deals.","high_concept":"Ad network
1202
+ for email","follower_count":282,"company_url":"http://www.launchbit.com"}},{"id":33026,"role":"incubator","created_at":"2011-05-31T05:18:48Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":160,"hidden":false,"community_profile":false,"name":"OVIA","angellist_url":"http://angel.co/ovia","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/160-7a9350fe4076bc00e233e3fe04ab5b2c-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/160-7a9350fe4076bc00e233e3fe04ab5b2c-thumb.","product_desc":"OVIA
1203
+ is a video screening platform that helps companies screen people not resumes.\n\nCompanies
1204
+ are wasting too much time and money on unqualified candidates. We eliminate
1205
+ 1st stage interviews with an asynchronous video interview.\n\nWe help companies
1206
+ identify higher quality candidates faster:\n-Spend less time with bad candidates.\n-Eliminate
1207
+ the headaches of scheduling and conducting thousands of phone interviews.\n-Get
1208
+ the right people involved in the hiring decision efficiently.","high_concept":"Video
1209
+ Screening for Recruitment","follower_count":122,"company_url":"http://www.ovia.me"}},{"id":32740,"role":"past_investor","created_at":"2011-05-28T01:00:49Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":18604,"hidden":false,"community_profile":false,"name":"Storytree","angellist_url":"http://angel.co/storytree","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18604-e467288e1d67a8005859869e9652d171-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18604-e467288e1d67a8005859869e9652d171-thumb.png","product_desc":"Storytree
1210
+ makes it easy for\u00a0new parents to capture the special moments of their
1211
+ child''s life using their iPhones. We effortlessly create a beautiful timeline
1212
+ where they can add milestones, reminisce, and privately share those special
1213
+ moments with family and close friends. Our mobile app is paired with our iPad
1214
+ app for sharing and beautiful consumption. Our iPhone app has been featured
1215
+ by Apple twice, we''ve been featured in the New York Times, on TBS, and selected
1216
+ as a finalist for SXSW 2012. ","high_concept":"Path for your child - from
1217
+ pregnancy to college","follower_count":175,"company_url":"http://www.storytree.me"}},{"id":31274,"role":"past_investor","created_at":"2011-05-18T21:12:33Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":3502,"hidden":false,"community_profile":false,"name":"Tout","angellist_url":"http://angel.co/tout","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3502-f3fc50f0b88cf29fb03494bcd7b06628-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3502-f3fc50f0b88cf29fb03494bcd7b06628-thumb.png","product_desc":"ToutApp
1218
+ helps Sales, BizDev and PR professionals better manage and track their day-to-day
1219
+ emails.\n\nWith Tout''s email analytics, templating, reporting, and integrations
1220
+ into CRM systems you can write your business emails faster and gain unique
1221
+ insights into how you are using email to run your business.","high_concept":"Tout
1222
+ supercharges your Sales/BizDev Emails","follower_count":350,"company_url":"http://toutapp.com"}},{"id":31273,"role":"past_investor","created_at":"2011-05-18T21:12:32Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":13076,"hidden":false,"community_profile":false,"name":"Rewardli","angellist_url":"http://angel.co/rewardli","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13076-4e76e02bc2e41262687371546476268e-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13076-4e76e02bc2e41262687371546476268e-thumb.png","product_desc":"Rewardli
1223
+ lets small businesses combine their buying power to get deals from our network
1224
+ of 70+ vendors, including Staples, FedEx Office, Vistaprint, GoDaddy, Expedia
1225
+ and Best Buy.\n\nOur deals are always on and get better as users invite others
1226
+ to join their buying group.\n\nWe also power cobranded deal sites for membership-based
1227
+ groups: 500 Startups, the Performance Marketing Association, LeadsCon and
1228
+ the Daily Deal Summit.\n\nIncubated @ 500 Startups W11, launched onstage @
1229
+ TC Disrupt.","high_concept":"Demand aggregation for groups. @500 W11","follower_count":229,"company_url":"http://www.rewardli.com"}},{"id":31272,"role":"past_investor","created_at":"2011-05-18T21:12:28Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":13152,"hidden":false,"community_profile":false,"name":"Visually","angellist_url":"http://angel.co/visually","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13152-f87853ee0045cb55866532afbdba2885-medium.gif","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13152-f87853ee0045cb55866532afbdba2885-thumb.gif","product_desc":"http://visual.ly
1230
+ is the largest community for data visualization. This platform allows users
1231
+ to create and distribute visualizations in their publication, presentations,
1232
+ and throughout social media. \n\nThe result is higher engagement , greater
1233
+ distribution (30X sharing), and better understanding.","high_concept":"We
1234
+ are the Data Visualization platform for Big Data","follower_count":706,"company_url":"http://visual.ly"}},{"id":31271,"role":"past_investor","created_at":"2011-05-18T21:12:21Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":13097,"hidden":false,"community_profile":false,"name":"Ninua","angellist_url":"http://angel.co/ninua","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13097-bab2877df2e45ef39a006dca8b3dccb7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13097-bab2877df2e45ef39a006dca8b3dccb7-thumb.png","product_desc":"We''ve
1235
+ built the largest distribution platform for news on social networks. Connecting
1236
+ 700,000+ blogs and publications to the real identities of their writers and
1237
+ readers (5M+ users). \n\nWe''re tapping into two paradigm shifts that are
1238
+ shaking the $23B/year news industry: social and mobile. Our new mobile news
1239
+ app, launched last week, builds on our huge database of interests and social
1240
+ data and introduces a new model for news sharing and discovery. Backed by
1241
+ our established infrastructure and a big user base, we aim to own a significant
1242
+ share of the emerging news market on mobile devices. \n","high_concept":"Platform
1243
+ for sharing on social networks.","follower_count":112,"company_url":"http://www.ninua.com"}},{"id":31269,"role":"past_investor","created_at":"2011-05-18T21:12:16Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":12694,"hidden":false,"community_profile":false,"name":"Wednesdays","angellist_url":"http://angel.co/wednesdays","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12694-801a5c7d839784287c4429eacf52beef-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12694-801a5c7d839784287c4429eacf52beef-thumb.png","product_desc":"Wednesdays.com
1244
+ is the easiest way for organizations to create their own lunch or dinner club. It''s
1245
+ like Meetup for mealtimes or GrubWithUs for affiliate groups.\n\nWe finished
1246
+ a pilot with 5,000 lunch invitations. We are unit profitable. RSVP rates are
1247
+ the highest of the industry: 12%. Customers are telling us that cannot live
1248
+ without us.\n\nWe are now ready to scale and become #1 in the $10B social
1249
+ meals market. \n\nTry out the Hackers & Founders club: https://wednesdays.com/g/hackersfounders\n","high_concept":"Meetup
1250
+ for mealtimes","follower_count":205,"company_url":"http://wednesdays.com"}},{"id":31268,"role":"past_investor","created_at":"2011-05-18T21:12:14Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":12271,"hidden":false,"community_profile":false,"name":"Saygent","angellist_url":"http://angel.co/saygent","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12271-ccb95bae2f91848620940becb209a414-medium.gif","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12271-ccb95bae2f91848620940becb209a414-thumb.gif","product_desc":"Listening
1251
+ to your customers is our business. \nOur patent-pending technology allows
1252
+ your customers to easily provide free-flowing verbal responses using their
1253
+ mobile phones to questions about your brand and their experiences. \nWe turn
1254
+ these responses to new actionable insight that will help you drive sales and
1255
+ brand loyalty. \n\nFortune500 and medium size businesses use us to understand
1256
+ their customers better. \n\nCall us if you want to understand your customers
1257
+ better too. ","high_concept":"Customer listening, literally. ","follower_count":124,"company_url":"http://www.saygent.com"}},{"id":31267,"role":"past_investor","created_at":"2011-05-18T21:12:12Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":11369,"hidden":false,"community_profile":false,"name":"Scaffold","angellist_url":"http://angel.co/scaffold","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/11369-56131c118298af6d6b0dd493bf0d8fed-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/11369-56131c118298af6d6b0dd493bf0d8fed-thumb.png","product_desc":"Scaffold
1258
+ connects offline and online identities. We offer easy to use APIs for services
1259
+ and marketplaces to verify their users.","high_concept":"An identity and reputation
1260
+ system for the web.","follower_count":160,"company_url":"http://www.getscaffold.com"}},{"id":31266,"role":"past_investor","created_at":"2011-05-18T21:12:09Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":3463,"hidden":false,"community_profile":false,"name":"MogoTix","angellist_url":"http://angel.co/mogotix","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3463-6c7057bcf1b16705c79acc8f7e6de3f6-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3463-6c7057bcf1b16705c79acc8f7e6de3f6-thumb.jpg","product_desc":"MogoTix
1261
+ offers simple and affordable mobile ticketing for events of any size. Whether
1262
+ it''s a party, fundraiser, or conference, MogoTix makes it easy to publish
1263
+ an event website and immediately distribute mobile tickets to your attendees.
1264
+ Get started http://www.mogotix.com","high_concept":"Simple, social, secure
1265
+ mobile ticketing","follower_count":125,"company_url":"http://www.mogotix.com"}},{"id":31264,"role":"past_investor","created_at":"2011-05-18T21:12:06Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2744,"hidden":false,"community_profile":false,"name":"Motion
1266
+ Math","angellist_url":"http://angel.co/motion-math","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2744-5ad0b3aea4110248cfae051f0a576e66-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2744-5ad0b3aea4110248cfae051f0a576e66-thumb.png","product_desc":"Motion
1267
+ Math creates fun learning games that let kids play with numbers. Our first
1268
+ product, conceived at Stanford, made fraction estimation fun and physical.
1269
+ A rigorous efficacy study (the first and only for an educational app) found
1270
+ the game improved test scores 15% and attitudes by 10% \u2013 watch a TV piece
1271
+ at http://bit.ly/abcmotionmath to learn more.) We''ve been featured in TechCrunch,
1272
+ VentureBeat, Wired, WSJ, Forbes, and the NYT. Most importantly: kids, parents,
1273
+ and teachers love our products.","high_concept":"Learning games for mobile","follower_count":145,"company_url":"http://www.motionmathgames.com"}},{"id":31263,"role":"past_investor","created_at":"2011-05-18T21:12:03Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2500,"hidden":false,"community_profile":false,"name":"Bloodhound","angellist_url":"http://angel.co/bloodhound","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2500-e241f80e0282010b2988165b64492030-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2500-e241f80e0282010b2988165b64492030-thumb.png","product_desc":"Bloodhound''s
1274
+ free, self-serve platform for conferences + trade shows enables event organizers
1275
+ to provide an integrated mobile app + lead retrieval solution to attendees
1276
+ + exhibitors. Becoming the dominant lead retrieval platform used at events
1277
+ is a $500M/year revenue opportunity. Events are the Trojan Horse that Bloodhound
1278
+ will use to go after B2B demand generation. Ultimately, we want to become
1279
+ the dominant online channel for B2B customer acquisition\u2014a multi-billion
1280
+ dollar revenue opportunity.","high_concept":"Changing the face of B2B commerce","follower_count":64,"company_url":"http://getbloodhound.com"}},{"id":31262,"role":"past_investor","created_at":"2011-05-18T21:12:02Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1997,"hidden":false,"community_profile":false,"name":"Social
1281
+ Stork","angellist_url":"http://angel.co/social-stork","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1997-e813286ec6e44a100bdd30394954ae18-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1997-e813286ec6e44a100bdd30394954ae18-thumb.jpg","product_desc":"Social
1282
+ Stork bottles the increased social activity of new moms and moms-to-be and
1283
+ gives them advice, community, and socially tailored introductions to the perfect
1284
+ baby products along the journey. Think of Social Stork as the first social
1285
+ e-tailer of baby products. ","high_concept":"A Facebook-powered Social Hub
1286
+ for Moms.","follower_count":72,"company_url":"http://apps.facebook.com/socialstork"}},{"id":31261,"role":"past_investor","created_at":"2011-05-18T21:11:59Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1812,"hidden":false,"community_profile":false,"name":"Proven","angellist_url":"http://angel.co/proven","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1812-09a7e372dea5f5c64a5d52b0304814c8-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1812-09a7e372dea5f5c64a5d52b0304814c8-thumb.png","product_desc":"Proven.com
1287
+ is an employment marketplace where skilled candidates connect with many types
1288
+ of local employers. We are using technology to put America back to work.\n\nWe
1289
+ solve the \"craigslist problem\" for small businesses.\n\nCheck it out at
1290
+ http://www.Proven.com\n","high_concept":"Changing the Way Local Businesses
1291
+ Hire","follower_count":165,"company_url":"http://www.Proven.com"}},{"id":31259,"role":"past_investor","created_at":"2011-05-18T21:11:41Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1680,"hidden":false,"community_profile":false,"name":"Punchd","angellist_url":"http://angel.co/punchd","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1680-5d8f0d1ba01cb35d7e3423c0b4164ec5-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1680-5d8f0d1ba01cb35d7e3423c0b4164ec5-thumb.png","product_desc":"Punchd
1292
+ puts loyalty punch cards on your smart-phone. Consumers love digital punch
1293
+ cards because the card is always with them but never in the way. Business
1294
+ owners love digital punch cards because they are secure, provide actionable
1295
+ data that''s easy to track and analyze, and now they have a way to recognize,
1296
+ reward and contact their regular customers and evangelists directly. We make
1297
+ loyalty cards easier to use, but harder to hack. And less of a pain in the
1298
+ ass.","high_concept":"Loyalty punch cards on your smartphone.","follower_count":138,"company_url":"http://getpunchd.com"}},{"id":31258,"role":"past_investor","created_at":"2011-05-18T21:11:40Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1675,"hidden":false,"community_profile":false,"name":"Evo","angellist_url":"http://angel.co/evo","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1675-d6737c4b4f6e21f196d350d3b0373a58-medium.gif","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1675-d6737c4b4f6e21f196d350d3b0373a58-thumb.gif","product_desc":"Evo
1299
+ captures crying & sleep data to create a personalized, mobile parenting experience.
1300
+ Evo tells parents how their child is sleeping/crying/eating compared to other
1301
+ babies their age. \n\nBased on the insights parents receive personalized content
1302
+ and services. \n\nThe enabling device can be:\n1.\tSmartphone apps \u2013
1303
+ Evo detector app running on old smartphone/ipod over wifi:http://bit.ly/gchju9
1304
+ \n2.\tANY partner device \u2013 monitors from other companies that embed Evo
1305
+ service.","high_concept":"Delivering personalized parenting content & services
1306
+ based on real baby data","follower_count":142,"company_url":"http://www.myevoz.com"}},{"id":31257,"role":"past_investor","created_at":"2011-05-18T21:11:36Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1410,"hidden":false,"community_profile":false,"name":"Ginzametrics","angellist_url":"http://angel.co/ginzametrics","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1410-96476610c318aa9c0078456f7df388c7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1410-96476610c318aa9c0078456f7df388c7-thumb.png","product_desc":"Ginzametrics
1307
+ is an interactive marketing analytics dashboard for advertisers and agencies,
1308
+ focused on search (SEO) and social media, with plans for additional channels
1309
+ in the future.\n\nWe are focused primarily on mid- to large-sized companies
1310
+ and help them scale their marketing operations to global levels by providing
1311
+ a simple platform that delivers unmatched scalability. ","high_concept":"A
1312
+ Better Enterprise SEO Platform","follower_count":190,"company_url":"http://www.ginzametrics.com"}},{"id":31255,"role":"past_investor","created_at":"2011-05-18T21:11:29Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1242,"hidden":false,"community_profile":false,"name":"AwayFind","angellist_url":"http://angel.co/awayfind","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1242-e14141d5c7aaed290c922833efdc8731-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1242-e14141d5c7aaed290c922833efdc8731-thumb.","product_desc":"Get
1313
+ away from your inbox. We find your urgent emails.\n\nAwayFind monitors your
1314
+ Gmail or Exchange inbox, routing urgent messages automatically to SMS or
1315
+ your iPhone/Android. The typical knowledge worker loses 1/3 of their day
1316
+ to email interruptions. We help over 15,000 people to escape their inbox
1317
+ every day.","high_concept":"Priority inbox done right, for businesses","follower_count":130,"company_url":"http://awayfind.com"}},{"id":31254,"role":"past_investor","created_at":"2011-05-18T21:11:29Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":917,"hidden":false,"community_profile":false,"name":"InternMatch","angellist_url":"http://angel.co/internmatch","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/917-0bf28f9b11c239a77926353a545c4502-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/917-0bf28f9b11c239a77926353a545c4502-thumb.txt","product_desc":"InternMatch
1318
+ connects students with amazing internships. We help companies promote employment
1319
+ brand and foster year-round engagement with talented students.\n\nLarger employers
1320
+ can move beyond simple internship listings and tell college students the unique
1321
+ story of why it''s amazing to work at their company, fostering engagement
1322
+ and building employment brand. \n\nCampus Hub Solution: \nhttp://www.internmatch.com/company/salesforce\n\nWebsite:
1323
+ \nhttp://internmatch.com\n\n","high_concept":"","follower_count":252,"company_url":"http://www.internmatch.com"}},{"id":31252,"role":"past_investor","created_at":"2011-05-18T21:11:22Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":238,"hidden":false,"community_profile":false,"name":"Curios.me","angellist_url":"http://angel.co/curios-me","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/238-99404b1cee0148460450d1551868c6e2-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/238-99404b1cee0148460450d1551868c6e2-thumb.png","product_desc":"","high_concept":"We
1324
+ do for questions what facebook did for photos","follower_count":19,"company_url":"http://curios.me"}},{"id":31251,"role":"past_investor","created_at":"2011-05-18T21:11:19Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":44,"hidden":false,"community_profile":false,"name":"Baydin","angellist_url":"http://angel.co/baydin","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/44-1212600112b0c2d6e356c805b73f6e04-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/44-1212600112b0c2d6e356c805b73f6e04-thumb.txt","product_desc":"Baydin
1325
+ makes Boomerang, a plugin for Gmail and Outlook that lets you schedule sending
1326
+ emails and remove incoming messages from your inbox, having them return whenl
1327
+ you need them. Available now at: http://boomeranggmail.com We are expanding
1328
+ Boomerang into The Email Game - an email client that incorporates a better
1329
+ workflow system, persuasive technology/game mechanics, and helpful AI to make
1330
+ it possible to cope with email overload. http://emailga.me","high_concept":"Email
1331
+ management that actually works.","follower_count":96,"company_url":"http://www.baydin.com"}},{"id":30707,"role":"incubator","created_at":"2011-05-15T05:54:50Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":18604,"hidden":false,"community_profile":false,"name":"Storytree","angellist_url":"http://angel.co/storytree","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18604-e467288e1d67a8005859869e9652d171-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18604-e467288e1d67a8005859869e9652d171-thumb.png","product_desc":"Storytree
1332
+ makes it easy for\u00a0new parents to capture the special moments of their
1333
+ child''s life using their iPhones. We effortlessly create a beautiful timeline
1334
+ where they can add milestones, reminisce, and privately share those special
1335
+ moments with family and close friends. Our mobile app is paired with our iPad
1336
+ app for sharing and beautiful consumption. Our iPhone app has been featured
1337
+ by Apple twice, we''ve been featured in the New York Times, on TBS, and selected
1338
+ as a finalist for SXSW 2012. ","high_concept":"Path for your child - from
1339
+ pregnancy to college","follower_count":175,"company_url":"http://www.storytree.me"}},{"id":30510,"role":"incubator","created_at":"2011-05-13T18:55:11Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":18275,"hidden":false,"community_profile":false,"name":"Life360","angellist_url":"http://angel.co/life360","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18275-b7a953b8fa6c5997b7fc4a44d8fa7d9c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18275-b7a953b8fa6c5997b7fc4a44d8fa7d9c-thumb.png","product_desc":"Turn
1340
+ your smartphone into the ultimate safety device--think next generation OnStar. See
1341
+ where your family members are, know what is nearby, and get Check In alerts
1342
+ when loved ones are safe or need help.\n\nLife360 is one of the largest and
1343
+ fastest growing geolocation apps on the market and is spearheading the push
1344
+ to turn smartphones into a utility.\n\nNote: Life360''s long-term vision extends
1345
+ far beyond mobile. We want to be the next generation Symantec or ADT.","high_concept":"Keep
1346
+ your family safe and in sync using your smartphone","follower_count":182,"company_url":"http://www.life360.com"}},{"id":25382,"role":"incubator","created_at":"2011-04-20T20:28:22Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":3502,"hidden":false,"community_profile":false,"name":"Tout","angellist_url":"http://angel.co/tout","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3502-f3fc50f0b88cf29fb03494bcd7b06628-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3502-f3fc50f0b88cf29fb03494bcd7b06628-thumb.png","product_desc":"ToutApp
1347
+ helps Sales, BizDev and PR professionals better manage and track their day-to-day
1348
+ emails.\n\nWith Tout''s email analytics, templating, reporting, and integrations
1349
+ into CRM systems you can write your business emails faster and gain unique
1350
+ insights into how you are using email to run your business.","high_concept":"Tout
1351
+ supercharges your Sales/BizDev Emails","follower_count":350,"company_url":"http://toutapp.com"}},{"id":25149,"role":"incubator","created_at":"2011-04-19T23:12:01Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":13152,"hidden":false,"community_profile":false,"name":"Visually","angellist_url":"http://angel.co/visually","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13152-f87853ee0045cb55866532afbdba2885-medium.gif","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13152-f87853ee0045cb55866532afbdba2885-thumb.gif","product_desc":"http://visual.ly
1352
+ is the largest community for data visualization. This platform allows users
1353
+ to create and distribute visualizations in their publication, presentations,
1354
+ and throughout social media. \n\nThe result is higher engagement , greater
1355
+ distribution (30X sharing), and better understanding.","high_concept":"We
1356
+ are the Data Visualization platform for Big Data","follower_count":706,"company_url":"http://visual.ly"}},{"id":25148,"role":"incubator","created_at":"2011-04-19T23:12:01Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":13097,"hidden":false,"community_profile":false,"name":"Ninua","angellist_url":"http://angel.co/ninua","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13097-bab2877df2e45ef39a006dca8b3dccb7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13097-bab2877df2e45ef39a006dca8b3dccb7-thumb.png","product_desc":"We''ve
1357
+ built the largest distribution platform for news on social networks. Connecting
1358
+ 700,000+ blogs and publications to the real identities of their writers and
1359
+ readers (5M+ users). \n\nWe''re tapping into two paradigm shifts that are
1360
+ shaking the $23B/year news industry: social and mobile. Our new mobile news
1361
+ app, launched last week, builds on our huge database of interests and social
1362
+ data and introduces a new model for news sharing and discovery. Backed by
1363
+ our established infrastructure and a big user base, we aim to own a significant
1364
+ share of the emerging news market on mobile devices. \n","high_concept":"Platform
1365
+ for sharing on social networks.","follower_count":112,"company_url":"http://www.ninua.com"}},{"id":25146,"role":"incubator","created_at":"2011-04-19T23:12:00Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":13090,"hidden":false,"community_profile":false,"name":"Spoondate","angellist_url":"http://angel.co/spoondate","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13090-bbae9ea9b7266d085502d1287389795d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13090-bbae9ea9b7266d085502d1287389795d-thumb.png","product_desc":"Meet
1366
+ and eat with people who love the food you love.\n\nSpoondate lets users share
1367
+ their food cravings. For example: \"I''m craving a sushi at Zushi Puzzle.\"
1368
+ Members in the same area can request to join for a meal, or search for others
1369
+ who are interested in specific foods or restaurants.\n\nFor those not ready
1370
+ for a 1-on-1 meal, Spoondate sells exclusive dining experiences where members
1371
+ can meet and enjoy food in a group setting.\n\nAvailable in both web and mobile
1372
+ products.","high_concept":"Meet online. Eat offline.","follower_count":117,"company_url":"http://www.spoondate.com"}},{"id":25145,"role":"incubator","created_at":"2011-04-19T23:12:00Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":13076,"hidden":false,"community_profile":false,"name":"Rewardli","angellist_url":"http://angel.co/rewardli","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13076-4e76e02bc2e41262687371546476268e-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13076-4e76e02bc2e41262687371546476268e-thumb.png","product_desc":"Rewardli
1373
+ lets small businesses combine their buying power to get deals from our network
1374
+ of 70+ vendors, including Staples, FedEx Office, Vistaprint, GoDaddy, Expedia
1375
+ and Best Buy.\n\nOur deals are always on and get better as users invite others
1376
+ to join their buying group.\n\nWe also power cobranded deal sites for membership-based
1377
+ groups: 500 Startups, the Performance Marketing Association, LeadsCon and
1378
+ the Daily Deal Summit.\n\nIncubated @ 500 Startups W11, launched onstage @
1379
+ TC Disrupt.","high_concept":"Demand aggregation for groups. @500 W11","follower_count":229,"company_url":"http://www.rewardli.com"}},{"id":25144,"role":"incubator","created_at":"2011-04-19T23:12:00Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":12694,"hidden":false,"community_profile":false,"name":"Wednesdays","angellist_url":"http://angel.co/wednesdays","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12694-801a5c7d839784287c4429eacf52beef-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12694-801a5c7d839784287c4429eacf52beef-thumb.png","product_desc":"Wednesdays.com
1380
+ is the easiest way for organizations to create their own lunch or dinner club. It''s
1381
+ like Meetup for mealtimes or GrubWithUs for affiliate groups.\n\nWe finished
1382
+ a pilot with 5,000 lunch invitations. We are unit profitable. RSVP rates are
1383
+ the highest of the industry: 12%. Customers are telling us that cannot live
1384
+ without us.\n\nWe are now ready to scale and become #1 in the $10B social
1385
+ meals market. \n\nTry out the Hackers & Founders club: https://wednesdays.com/g/hackersfounders\n","high_concept":"Meetup
1386
+ for mealtimes","follower_count":205,"company_url":"http://wednesdays.com"}},{"id":25143,"role":"incubator","created_at":"2011-04-19T23:12:00Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":12271,"hidden":false,"community_profile":false,"name":"Saygent","angellist_url":"http://angel.co/saygent","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12271-ccb95bae2f91848620940becb209a414-medium.gif","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12271-ccb95bae2f91848620940becb209a414-thumb.gif","product_desc":"Listening
1387
+ to your customers is our business. \nOur patent-pending technology allows
1388
+ your customers to easily provide free-flowing verbal responses using their
1389
+ mobile phones to questions about your brand and their experiences. \nWe turn
1390
+ these responses to new actionable insight that will help you drive sales and
1391
+ brand loyalty. \n\nFortune500 and medium size businesses use us to understand
1392
+ their customers better. \n\nCall us if you want to understand your customers
1393
+ better too. ","high_concept":"Customer listening, literally. ","follower_count":124,"company_url":"http://www.saygent.com"}},{"id":25142,"role":"incubator","created_at":"2011-04-19T23:12:00Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":11369,"hidden":false,"community_profile":false,"name":"Scaffold","angellist_url":"http://angel.co/scaffold","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/11369-56131c118298af6d6b0dd493bf0d8fed-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/11369-56131c118298af6d6b0dd493bf0d8fed-thumb.png","product_desc":"Scaffold
1394
+ connects offline and online identities. We offer easy to use APIs for services
1395
+ and marketplaces to verify their users.","high_concept":"An identity and reputation
1396
+ system for the web.","follower_count":160,"company_url":"http://www.getscaffold.com"}},{"id":25132,"role":"incubator","created_at":"2011-04-19T23:11:57Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":3463,"hidden":false,"community_profile":false,"name":"MogoTix","angellist_url":"http://angel.co/mogotix","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3463-6c7057bcf1b16705c79acc8f7e6de3f6-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3463-6c7057bcf1b16705c79acc8f7e6de3f6-thumb.jpg","product_desc":"MogoTix
1397
+ offers simple and affordable mobile ticketing for events of any size. Whether
1398
+ it''s a party, fundraiser, or conference, MogoTix makes it easy to publish
1399
+ an event website and immediately distribute mobile tickets to your attendees.
1400
+ Get started http://www.mogotix.com","high_concept":"Simple, social, secure
1401
+ mobile ticketing","follower_count":125,"company_url":"http://www.mogotix.com"}},{"id":25129,"role":"incubator","created_at":"2011-04-19T23:11:57Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":3195,"hidden":false,"community_profile":false,"name":"Volta","angellist_url":"http://angel.co/volta","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3195-f2ae10d5d09b5f888cdd58cae52747d1-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3195-f2ae10d5d09b5f888cdd58cae52747d1-thumb.png","product_desc":"Volta
1402
+ is a lightweight CRM, built from the ground up, for companies that rely on
1403
+ the phone. Companies can set up \"triggers\" in their software to automatically
1404
+ add calls to staff''s queues.\n\nFor example, every time a credit card expires,
1405
+ trigger a call to be added to the billing department''s queue. Calls can be
1406
+ triggered for any event across multiple departments.\n\nStaff members can
1407
+ manage their queues from their mobile devices or their computer. Everything
1408
+ stays in sync across an organization.\n","high_concept":"Volta is lightweight
1409
+ CRM for companies that rely on the phone.","follower_count":117,"company_url":"http://www.getvolta.com"}},{"id":25127,"role":"incubator","created_at":"2011-04-19T23:11:56Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2744,"hidden":false,"community_profile":false,"name":"Motion
1410
+ Math","angellist_url":"http://angel.co/motion-math","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2744-5ad0b3aea4110248cfae051f0a576e66-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2744-5ad0b3aea4110248cfae051f0a576e66-thumb.png","product_desc":"Motion
1411
+ Math creates fun learning games that let kids play with numbers. Our first
1412
+ product, conceived at Stanford, made fraction estimation fun and physical.
1413
+ A rigorous efficacy study (the first and only for an educational app) found
1414
+ the game improved test scores 15% and attitudes by 10% \u2013 watch a TV piece
1415
+ at http://bit.ly/abcmotionmath to learn more.) We''ve been featured in TechCrunch,
1416
+ VentureBeat, Wired, WSJ, Forbes, and the NYT. Most importantly: kids, parents,
1417
+ and teachers love our products.","high_concept":"Learning games for mobile","follower_count":145,"company_url":"http://www.motionmathgames.com"}},{"id":25124,"role":"incubator","created_at":"2011-04-19T23:11:56Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":2500,"hidden":false,"community_profile":false,"name":"Bloodhound","angellist_url":"http://angel.co/bloodhound","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2500-e241f80e0282010b2988165b64492030-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2500-e241f80e0282010b2988165b64492030-thumb.png","product_desc":"Bloodhound''s
1418
+ free, self-serve platform for conferences + trade shows enables event organizers
1419
+ to provide an integrated mobile app + lead retrieval solution to attendees
1420
+ + exhibitors. Becoming the dominant lead retrieval platform used at events
1421
+ is a $500M/year revenue opportunity. Events are the Trojan Horse that Bloodhound
1422
+ will use to go after B2B demand generation. Ultimately, we want to become
1423
+ the dominant online channel for B2B customer acquisition\u2014a multi-billion
1424
+ dollar revenue opportunity.","high_concept":"Changing the face of B2B commerce","follower_count":64,"company_url":"http://getbloodhound.com"}},{"id":25122,"role":"incubator","created_at":"2011-04-19T23:11:55Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1997,"hidden":false,"community_profile":false,"name":"Social
1425
+ Stork","angellist_url":"http://angel.co/social-stork","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1997-e813286ec6e44a100bdd30394954ae18-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1997-e813286ec6e44a100bdd30394954ae18-thumb.jpg","product_desc":"Social
1426
+ Stork bottles the increased social activity of new moms and moms-to-be and
1427
+ gives them advice, community, and socially tailored introductions to the perfect
1428
+ baby products along the journey. Think of Social Stork as the first social
1429
+ e-tailer of baby products. ","high_concept":"A Facebook-powered Social Hub
1430
+ for Moms.","follower_count":72,"company_url":"http://apps.facebook.com/socialstork"}},{"id":25121,"role":"incubator","created_at":"2011-04-19T23:11:55Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1812,"hidden":false,"community_profile":false,"name":"Proven","angellist_url":"http://angel.co/proven","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1812-09a7e372dea5f5c64a5d52b0304814c8-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1812-09a7e372dea5f5c64a5d52b0304814c8-thumb.png","product_desc":"Proven.com
1431
+ is an employment marketplace where skilled candidates connect with many types
1432
+ of local employers. We are using technology to put America back to work.\n\nWe
1433
+ solve the \"craigslist problem\" for small businesses.\n\nCheck it out at
1434
+ http://www.Proven.com\n","high_concept":"Changing the Way Local Businesses
1435
+ Hire","follower_count":165,"company_url":"http://www.Proven.com"}},{"id":25120,"role":"incubator","created_at":"2011-04-19T23:11:55Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1680,"hidden":false,"community_profile":false,"name":"Punchd","angellist_url":"http://angel.co/punchd","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1680-5d8f0d1ba01cb35d7e3423c0b4164ec5-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1680-5d8f0d1ba01cb35d7e3423c0b4164ec5-thumb.png","product_desc":"Punchd
1436
+ puts loyalty punch cards on your smart-phone. Consumers love digital punch
1437
+ cards because the card is always with them but never in the way. Business
1438
+ owners love digital punch cards because they are secure, provide actionable
1439
+ data that''s easy to track and analyze, and now they have a way to recognize,
1440
+ reward and contact their regular customers and evangelists directly. We make
1441
+ loyalty cards easier to use, but harder to hack. And less of a pain in the
1442
+ ass.","high_concept":"Loyalty punch cards on your smartphone.","follower_count":138,"company_url":"http://getpunchd.com"}},{"id":25119,"role":"incubator","created_at":"2011-04-19T23:11:54Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1675,"hidden":false,"community_profile":false,"name":"Evo","angellist_url":"http://angel.co/evo","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1675-d6737c4b4f6e21f196d350d3b0373a58-medium.gif","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1675-d6737c4b4f6e21f196d350d3b0373a58-thumb.gif","product_desc":"Evo
1443
+ captures crying & sleep data to create a personalized, mobile parenting experience.
1444
+ Evo tells parents how their child is sleeping/crying/eating compared to other
1445
+ babies their age. \n\nBased on the insights parents receive personalized content
1446
+ and services. \n\nThe enabling device can be:\n1.\tSmartphone apps \u2013
1447
+ Evo detector app running on old smartphone/ipod over wifi:http://bit.ly/gchju9
1448
+ \n2.\tANY partner device \u2013 monitors from other companies that embed Evo
1449
+ service.","high_concept":"Delivering personalized parenting content & services
1450
+ based on real baby data","follower_count":142,"company_url":"http://www.myevoz.com"}},{"id":25116,"role":"incubator","created_at":"2011-04-19T23:11:54Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":1410,"hidden":false,"community_profile":false,"name":"Ginzametrics","angellist_url":"http://angel.co/ginzametrics","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1410-96476610c318aa9c0078456f7df388c7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1410-96476610c318aa9c0078456f7df388c7-thumb.png","product_desc":"Ginzametrics
1451
+ is an interactive marketing analytics dashboard for advertisers and agencies,
1452
+ focused on search (SEO) and social media, with plans for additional channels
1453
+ in the future.\n\nWe are focused primarily on mid- to large-sized companies
1454
+ and help them scale their marketing operations to global levels by providing
1455
+ a simple platform that delivers unmatched scalability. ","high_concept":"A
1456
+ Better Enterprise SEO Platform","follower_count":190,"company_url":"http://www.ginzametrics.com"}},{"id":25111,"role":"incubator","created_at":"2011-04-19T23:11:53Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":917,"hidden":false,"community_profile":false,"name":"InternMatch","angellist_url":"http://angel.co/internmatch","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/917-0bf28f9b11c239a77926353a545c4502-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/917-0bf28f9b11c239a77926353a545c4502-thumb.txt","product_desc":"InternMatch
1457
+ connects students with amazing internships. We help companies promote employment
1458
+ brand and foster year-round engagement with talented students.\n\nLarger employers
1459
+ can move beyond simple internship listings and tell college students the unique
1460
+ story of why it''s amazing to work at their company, fostering engagement
1461
+ and building employment brand. \n\nCampus Hub Solution: \nhttp://www.internmatch.com/company/salesforce\n\nWebsite:
1462
+ \nhttp://internmatch.com\n\n","high_concept":"","follower_count":252,"company_url":"http://www.internmatch.com"}},{"id":25109,"role":"incubator","created_at":"2011-04-19T23:11:52Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":630,"hidden":false,"community_profile":false,"name":"Miso
1463
+ Media","angellist_url":"http://angel.co/miso-media","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/630-827f69c1ab2d83292b9fde1f4ed19038-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/630-827f69c1ab2d83292b9fde1f4ed19038-thumb.txt","product_desc":"Miso
1464
+ Music teaches anyone to play the guitar. Our real time polyphonic pitch detection
1465
+ will tell people if they are playing the right note. We have a distribution
1466
+ deal with Sony/ATV and Universal Music Publishing Group to offer songs from
1467
+ their catalogs, which includes The Beatles, Fleetwood Mac, Carrie Underwood,
1468
+ Eric Clapton, Elvis Presley, and hundreds of other platinum artists. See it
1469
+ at http://www.misomedia.com.","high_concept":"Provide the optimal user experience
1470
+ for music education using today\u2019s emerging technology","follower_count":126,"company_url":"http://www.misomedia.com"}},{"id":25108,"role":"incubator","created_at":"2011-04-19T23:11:52Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":238,"hidden":false,"community_profile":false,"name":"Curios.me","angellist_url":"http://angel.co/curios-me","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/238-99404b1cee0148460450d1551868c6e2-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/238-99404b1cee0148460450d1551868c6e2-thumb.png","product_desc":"","high_concept":"We
1471
+ do for questions what facebook did for photos","follower_count":19,"company_url":"http://curios.me"}},{"id":25107,"role":"incubator","created_at":"2011-04-19T23:11:52Z","started_at":null,"ended_at":null,"confirmed":true,"startup":{"id":44,"hidden":false,"community_profile":false,"name":"Baydin","angellist_url":"http://angel.co/baydin","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/44-1212600112b0c2d6e356c805b73f6e04-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/44-1212600112b0c2d6e356c805b73f6e04-thumb.txt","product_desc":"Baydin
1472
+ makes Boomerang, a plugin for Gmail and Outlook that lets you schedule sending
1473
+ emails and remove incoming messages from your inbox, having them return whenl
1474
+ you need them. Available now at: http://boomeranggmail.com We are expanding
1475
+ Boomerang into The Email Game - an email client that incorporates a better
1476
+ workflow system, persuasive technology/game mechanics, and helpful AI to make
1477
+ it possible to cope with email overload. http://emailga.me","high_concept":"Email
1478
+ management that actually works.","follower_count":96,"company_url":"http://www.baydin.com"}}]}'
1479
+ http_version: !!null
1480
+ recorded_at: Sun, 22 Apr 2012 00:35:11 GMT
1481
+ recorded_with: VCR 2.1.0