angellist_api 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,10 @@
1
1
  ## Master
2
2
 
3
+ ## 1.0.4 - 25 March, 2013
4
+
5
+ - Add new user roles and startup roles endpoints; document and test the new "v1"
6
+ version of startup_roles endpoint ([Pedro Freitas])
7
+
3
8
  ## 1.0.3 - 10 March, 2013
4
9
 
5
10
  - Added press endpoint ([Evan Tann])
@@ -33,6 +38,7 @@
33
38
  [Paul Singh]: https://github.com/paulsingh
34
39
  [Ches Martin]: https://github.com/ches
35
40
  [Evan Tann]: https://github.com/egtann
41
+ [Pedro Freitas]: https://github.com/pelf
36
42
 
37
43
  <!-- vim: set tw=80 :-->
38
44
 
@@ -4,20 +4,38 @@ module AngellistApi
4
4
  #
5
5
  # @see http://angel.co/api/spec/startup_roles
6
6
  module StartupRoles
7
- # Given a startup_id, returns the users involved in that startup. Given a
8
- # user_id, returns the startups that user is involved in. If neither
9
- # parameter is given, the authenticated user is used. Possible roles
10
- # include founder, employee, past_investor, advisor, incubator and
11
- # referrer. Roles are paginated and ordered by most recently declared
7
+ # @deprecated Given a startup_id, returns the users involved in that
8
+ # startup. Given a user_id, returns the startups that user is involved
9
+ # in. If neither parameter is given, the authenticated user is used.
10
+ # Possible roles include founder, employee, past_investor,
11
+ # current_investor, advisor, incubator and referrer. Roles are paginated
12
+ # and ordered by most recently declared first.
13
+ #
14
+ # When called with a :v => 1 parameter:
15
+ #
16
+ # Given a user_id, returns the companies that User is tagged in. Given a
17
+ # startup_id, returns either the users and companies tagged in the given
18
+ # Startup (if direction is incoming) or the companies which the given
19
+ # Startup is tagged in (if direction is outgoing). If neither parameter
20
+ # is given, the authenticated user is used. Possible roles include
21
+ # founder, employee, past_investor, current_investor, advisor, incubator
22
+ # and referrer. Roles are paginated and ordered by most recently declared
12
23
  # first.
13
24
  #
14
25
  # @requires_authentication Optional
26
+ # @paginated Yes
15
27
  #
16
28
  # @param [Hash] options A customizable set of options.
17
29
  # @option options [Integer] :user_id The user whose startup relationships
18
30
  # you want to view.
19
31
  # @option options [Integer] :startup_id The startup whose user
20
32
  # relationships you want to view.
33
+ # @option options [String] :role The specific role you'd like to filter
34
+ # on, e.g. "founder", "past_investor", "advisor"
35
+ # @option options [String] :direction Only applies if startup_id is present.
36
+ # Either incoming or outgoing. Defaults to incoming.
37
+ # @option options [Integer] :page Specifies the page of results to
38
+ # retrieve.
21
39
  #
22
40
  # @example Get info about authenticated user's startups and roles.
23
41
  # AngellistApi.get_startup_roles
@@ -58,6 +58,26 @@ module AngellistApi
58
58
  def startup_search(options={})
59
59
  get("1/startups/search", options)
60
60
  end
61
+
62
+ # Returns a company's startup roles. If direction is outgoing, then it returns
63
+ # the companies which the given company is tagged in. If direction is incoming, or
64
+ # omitted, then it returns the users and companies which are tagged in the given
65
+ # company. Results are paginated.
66
+ #
67
+ # @requires_authentication Optional
68
+ # @paginated Yes
69
+ #
70
+ # @param id [Integer] ID of the desired startup.
71
+ # @option options [String] :direction Either incoming or outgoing. Defaults to
72
+ # incoming.
73
+ # @option options [Integer] :page Specifies the page of results to
74
+ # retrieve.
75
+ #
76
+ # @example Get
77
+ # AngellistApi.startup_roles(1234)
78
+ def startup_roles(id, options={})
79
+ get("1/startups/#{id}/roles")
80
+ end
61
81
  end
62
82
  end
63
83
  end
@@ -53,6 +53,21 @@ module AngellistApi
53
53
  def me
54
54
  get("1/me")
55
55
  end
56
+
57
+ # Returns the companies that a user has been tagged in. Results are paginated.
58
+ #
59
+ # @requires_authentication Optional
60
+ # @paginated Yes
61
+ #
62
+ # @param [Integer] id ID of the desired user.
63
+ # @option options [Integer] :page Specifies the page of results to
64
+ # retrieve.
65
+ #
66
+ # @example Get a user's roles given an id.
67
+ # AngellistApi.user_roles(1234)
68
+ def user_roles(id)
69
+ get("1/users/#{id}/roles")
70
+ end
56
71
  end
57
72
  end
58
73
  end
@@ -1,4 +1,4 @@
1
1
  module AngellistApi
2
- VERSION = '1.0.3'
2
+ VERSION = '1.0.4'
3
3
  end
4
4
 
@@ -1478,4 +1478,2303 @@ http_interactions:
1478
1478
  management that actually works.","follower_count":96,"company_url":"http://www.baydin.com"}}]}'
1479
1479
  http_version: !!null
1480
1480
  recorded_at: Sun, 22 Apr 2012 00:35:11 GMT
1481
- recorded_with: VCR 2.1.0
1481
+ - request:
1482
+ method: get
1483
+ uri: https://api.angel.co/1/startup_roles?startup_id=1124&v=1
1484
+ body:
1485
+ encoding: US-ASCII
1486
+ string: ''
1487
+ headers:
1488
+ Accept:
1489
+ - application/json
1490
+ User-Agent:
1491
+ - AngellistApi Ruby Gem 1.0.3
1492
+ response:
1493
+ status:
1494
+ code: 200
1495
+ message: !!null
1496
+ headers:
1497
+ cache-control:
1498
+ - private, max-age=0, must-revalidate
1499
+ content-type:
1500
+ - application/json; charset=utf-8
1501
+ date:
1502
+ - Thu, 21 Mar 2013 12:46:15 GMT
1503
+ etag:
1504
+ - ! '"ba6d6c66d644902168be457e1c25db0a"'
1505
+ server:
1506
+ - nginx
1507
+ status:
1508
+ - 200 OK
1509
+ vary:
1510
+ - Accept-Encoding
1511
+ x-ratelimit-limit:
1512
+ - '1000'
1513
+ x-ratelimit-remaining:
1514
+ - '1000'
1515
+ x-runtime:
1516
+ - '714'
1517
+ transfer-encoding:
1518
+ - chunked
1519
+ connection:
1520
+ - Close
1521
+ body:
1522
+ encoding: ASCII-8BIT
1523
+ string: ! '{"startup_roles":[{"id":564810,"role":"past_investor","created_at":"2013-03-15T11:58:07Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Saurabh
1524
+ Goel","id":163211,"bio":"Founder startt \u2022 Investor @500-startups-fund-ii","follower_count":4,"angellist_url":"https://angel.co/saurgoel","image":"https://s3.amazonaws.com/photos.angel.co/users/163211-medium_jpg?1359116657"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1525
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1526
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1527
+ We invest in internet startups on search, social, & mobile platforms. We run
1528
+ an incubation and accelerator program emphasizing design & user experience,
1529
+ distribution & customer acquisition, and lean startup practices & metrics.
1530
+ Our investment team and mentor network has operational experience at companies
1531
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1532
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1533
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":562745,"role":"employee","created_at":"2013-03-14T05:18:53Z","started_at":"2013-03-01","ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Matthew
1534
+ Berman","id":57540,"bio":"Distribution Hacker @500startups, Entrepreneur,
1535
+ User Acquisition Expert, Rails Hacker, Technology Enthusiast. Previously co-founder
1536
+ at @teamly Inc.","follower_count":66,"angellist_url":"https://angel.co/matthew-berman-1","image":"https://s3.amazonaws.com/photos.angel.co/users/57540-medium_jpg?1362511079"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1537
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1538
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1539
+ We invest in internet startups on search, social, & mobile platforms. We run
1540
+ an incubation and accelerator program emphasizing design & user experience,
1541
+ distribution & customer acquisition, and lean startup practices & metrics.
1542
+ Our investment team and mentor network has operational experience at companies
1543
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1544
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1545
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":549601,"role":"employee","created_at":"2013-03-06T08:02:09Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Parker
1546
+ Thompson","id":90916,"bio":"Venture Partner @500startups. Early @pivotal-labs
1547
+ engineering & BD. Co-founder/CTO @placesite. Big Data @internet-archive. Copyright
1548
+ law @uc-berkeley iSchool.","follower_count":184,"angellist_url":"https://angel.co/pt","image":"https://s3.amazonaws.com/photos.angel.co/users/90916-medium_jpg?1362373483"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1549
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1550
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1551
+ We invest in internet startups on search, social, & mobile platforms. We run
1552
+ an incubation and accelerator program emphasizing design & user experience,
1553
+ distribution & customer acquisition, and lean startup practices & metrics.
1554
+ Our investment team and mentor network has operational experience at companies
1555
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1556
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1557
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":548922,"role":"past_investor","created_at":"2013-03-05T23:05:20Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"Startup","id":38066,"hidden":false,"community_profile":false,"name":"Venture51","angellist_url":"https://angel.co/venture51","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/38066-f57ccdc7011c1934b89f28fe8c91cb49-medium_jpg.jpg?buster=1351621929","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/38066-f57ccdc7011c1934b89f28fe8c91cb49-thumb_jpg.jpg?buster=1351621929","quality":7,"product_desc":"Venture51
1558
+ is a modern early-stage VC firm uniquely focused on investing in the most
1559
+ promising founders in high-growth markets at the \u201cTraction Gap\u201d
1560
+ growth stage. Venture51 is creating a new type of investment vehicle for early
1561
+ stage startups by bridging the gap between initial seed money and the traditional
1562
+ venture capitalists. Founded in 2010, the firm invests in high technology
1563
+ companies and has made 40 investments to date, including: Betabe, Life360,
1564
+ eToro, Space Monkey, and Getaround.\n\n","high_concept":"A modern venture
1565
+ capital firm investing in the remarkable companies of today and tomorrow.","follower_count":112,"company_url":"http://www.venture51.com","created_at":"2012-01-18T00:40:08Z","updated_at":"2013-03-05T23:19:53Z"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1566
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1567
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1568
+ We invest in internet startups on search, social, & mobile platforms. We run
1569
+ an incubation and accelerator program emphasizing design & user experience,
1570
+ distribution & customer acquisition, and lean startup practices & metrics.
1571
+ Our investment team and mentor network has operational experience at companies
1572
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1573
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1574
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":533124,"role":"past_investor","created_at":"2013-02-26T11:43:17Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Rob
1575
+ de Heus","id":93662,"bio":"Venture Capitalist and CEO of DHG Communications
1576
+ Network BV and member Investment Committee @peakcapital .","follower_count":141,"angellist_url":"https://angel.co/rob-de-heus","image":"https://s3.amazonaws.com/photos.angel.co/users/93662-medium_jpg?1328533268"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1577
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1578
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1579
+ We invest in internet startups on search, social, & mobile platforms. We run
1580
+ an incubation and accelerator program emphasizing design & user experience,
1581
+ distribution & customer acquisition, and lean startup practices & metrics.
1582
+ Our investment team and mentor network has operational experience at companies
1583
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1584
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1585
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":531121,"role":"past_investor","created_at":"2013-02-25T19:07:34Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Thijs
1586
+ Gitmans","id":42607,"bio":"Fund manager @peakcapital, early stage VC fund
1587
+ investing in The Netherlands. Angel investor, investing outside Netherlands
1588
+ w @rob-de-heus. Coaching startups","follower_count":113,"angellist_url":"https://angel.co/thijsgitmans","image":"https://s3.amazonaws.com/photos.angel.co/users/42607-medium_jpg?1347374657"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1589
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1590
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1591
+ We invest in internet startups on search, social, & mobile platforms. We run
1592
+ an incubation and accelerator program emphasizing design & user experience,
1593
+ distribution & customer acquisition, and lean startup practices & metrics.
1594
+ Our investment team and mentor network has operational experience at companies
1595
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1596
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1597
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":527152,"role":"past_investor","created_at":"2013-02-22T23:56:08Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Tim
1598
+ Fong","id":94288,"bio":"Investor @500-startups-fund-ii, @fundersclub","follower_count":39,"angellist_url":"https://angel.co/tfong","image":"https://s3.amazonaws.com/photos.angel.co/users/94288-medium_jpg?1333861063"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1599
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1600
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1601
+ We invest in internet startups on search, social, & mobile platforms. We run
1602
+ an incubation and accelerator program emphasizing design & user experience,
1603
+ distribution & customer acquisition, and lean startup practices & metrics.
1604
+ Our investment team and mentor network has operational experience at companies
1605
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1606
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1607
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":514732,"role":"past_investor","created_at":"2013-02-16T07:36:45Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Eric
1608
+ Kwan","id":8836,"bio":"Software engineer at @facebook, former @yahoo, @oracle-corporation \u2022
1609
+ Studied at @stanford-university, @carnegie-mellon-university","follower_count":198,"angellist_url":"https://angel.co/eric-kwan","image":"https://s3.amazonaws.com/photos.angel.co/users/8836-medium_jpg?1298389828"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1610
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1611
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1612
+ We invest in internet startups on search, social, & mobile platforms. We run
1613
+ an incubation and accelerator program emphasizing design & user experience,
1614
+ distribution & customer acquisition, and lean startup practices & metrics.
1615
+ Our investment team and mentor network has operational experience at companies
1616
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1617
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1618
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":513842,"role":"past_investor","created_at":"2013-02-15T18:33:58Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Gene
1619
+ Alston","id":243284,"bio":"Formerly @paypal & @Concentric Networks. Currently
1620
+ @groupon leading merchant mobile payments.","follower_count":24,"angellist_url":"https://angel.co/gene-alston","image":"https://s3.amazonaws.com/photos.angel.co/users/243284-medium_jpg?1360700617"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1621
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1622
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1623
+ We invest in internet startups on search, social, & mobile platforms. We run
1624
+ an incubation and accelerator program emphasizing design & user experience,
1625
+ distribution & customer acquisition, and lean startup practices & metrics.
1626
+ Our investment team and mentor network has operational experience at companies
1627
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1628
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1629
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":513349,"role":"past_investor","created_at":"2013-02-15T08:59:26Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Rupesh
1630
+ Chatwani","id":179598,"bio":"Technology VC, Studied at @london-business-school","follower_count":94,"angellist_url":"https://angel.co/rupechat","image":"https://s3.amazonaws.com/photos.angel.co/users/179598-medium_jpg?1348672228"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1631
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1632
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1633
+ We invest in internet startups on search, social, & mobile platforms. We run
1634
+ an incubation and accelerator program emphasizing design & user experience,
1635
+ distribution & customer acquisition, and lean startup practices & metrics.
1636
+ Our investment team and mentor network has operational experience at companies
1637
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1638
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1639
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":512260,"role":"past_investor","created_at":"2013-02-14T17:55:39Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"Startup","id":112652,"hidden":false,"community_profile":false,"name":"Promus
1640
+ Ventures","angellist_url":"https://angel.co/promus-ventures","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/112652-b6f9a3e79e6835fbd4710c49c4bfb291-medium_jpg.jpg?buster=1360864320","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/112652-b6f9a3e79e6835fbd4710c49c4bfb291-thumb_jpg.jpg?buster=1360864320","quality":6,"product_desc":null,"high_concept":"Investing
1641
+ in early stage software companies that are changing the world.","follower_count":34,"company_url":"http://www.promusventures.com","created_at":"2012-08-10T21:55:24Z","updated_at":"2013-02-20T23:52:02Z"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1642
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1643
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1644
+ We invest in internet startups on search, social, & mobile platforms. We run
1645
+ an incubation and accelerator program emphasizing design & user experience,
1646
+ distribution & customer acquisition, and lean startup practices & metrics.
1647
+ Our investment team and mentor network has operational experience at companies
1648
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1649
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1650
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":505594,"role":"past_investor","created_at":"2013-02-11T11:38:39Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"Startup","id":146194,"hidden":false,"community_profile":false,"name":"Innovation
1651
+ Nest","angellist_url":"https://angel.co/innovation-nest","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/146194-49a6f28bb0a975ed44398c5578f0e2b9-medium_jpg.jpg?buster=1355944843","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/146194-49a6f28bb0a975ed44398c5578f0e2b9-thumb_jpg.jpg?buster=1355944843","quality":4,"product_desc":null,"high_concept":"Seed
1652
+ fund supporting high-tech entrepreneurs","follower_count":21,"company_url":"http://www.innovationnest.co","created_at":"2012-12-12T11:21:15Z","updated_at":"2013-02-18T14:14:16Z"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1653
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1654
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1655
+ We invest in internet startups on search, social, & mobile platforms. We run
1656
+ an incubation and accelerator program emphasizing design & user experience,
1657
+ distribution & customer acquisition, and lean startup practices & metrics.
1658
+ Our investment team and mentor network has operational experience at companies
1659
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1660
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1661
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":505591,"role":"past_investor","created_at":"2013-02-11T11:34:54Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Piotr
1662
+ Wilam","id":115812,"bio":"Founder, investor and managing partner @innovation-nest
1663
+ ","follower_count":150,"angellist_url":"https://angel.co/piotrwilam","image":"https://s3.amazonaws.com/photos.angel.co/users/115812-medium_jpg?1334049346"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1664
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1665
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1666
+ We invest in internet startups on search, social, & mobile platforms. We run
1667
+ an incubation and accelerator program emphasizing design & user experience,
1668
+ distribution & customer acquisition, and lean startup practices & metrics.
1669
+ Our investment team and mentor network has operational experience at companies
1670
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1671
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1672
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":501488,"role":"advisor","created_at":"2013-02-08T01:01:41Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Hans
1673
+ Yeakel","id":182471,"bio":"Mentor @500startups. Lead sales & operations @appsumo.
1674
+ Previously founder and COO of ToneRite.","follower_count":14,"angellist_url":"https://angel.co/hansyeakel","image":"https://s3.amazonaws.com/photos.angel.co/users/182471-medium_jpg?1355261832"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1675
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1676
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1677
+ We invest in internet startups on search, social, & mobile platforms. We run
1678
+ an incubation and accelerator program emphasizing design & user experience,
1679
+ distribution & customer acquisition, and lean startup practices & metrics.
1680
+ Our investment team and mentor network has operational experience at companies
1681
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1682
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1683
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":497989,"role":"past_investor","created_at":"2013-02-06T04:57:24Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"Startup","id":56200,"hidden":false,"community_profile":true,"name":"Siemer
1684
+ Ventures","angellist_url":"https://angel.co/siemer-ventures","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/56200-f2f49d7eaa89e32c4d4cff0e3f10b7bd-medium_jpg.jpg?buster=1352514854","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/56200-f2f49d7eaa89e32c4d4cff0e3f10b7bd-thumb_jpg.jpg?buster=1352514854","quality":6,"product_desc":null,"high_concept":"Dedicated
1685
+ to helping entrepreneurs build sustainable technology-related businesses","follower_count":50,"company_url":"http://www.siemervc.com","created_at":"2012-01-18T05:02:42Z","updated_at":"2013-02-06T05:06:19Z"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1686
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1687
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1688
+ We invest in internet startups on search, social, & mobile platforms. We run
1689
+ an incubation and accelerator program emphasizing design & user experience,
1690
+ distribution & customer acquisition, and lean startup practices & metrics.
1691
+ Our investment team and mentor network has operational experience at companies
1692
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1693
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1694
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":491231,"role":"past_investor","created_at":"2013-02-01T21:46:34Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Mike
1695
+ Collett","id":118741,"bio":"Founding Partner @promus-ventures, @masters-capital-nanotechnology-1
1696
+ \u2022 Worked @Masters Capital (hedge fund), @merrill-lynch (M&A)","follower_count":215,"angellist_url":"https://angel.co/mlcollett","image":"https://s3.amazonaws.com/photos.angel.co/users/118741-medium_jpg?1344954222"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1697
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1698
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1699
+ We invest in internet startups on search, social, & mobile platforms. We run
1700
+ an incubation and accelerator program emphasizing design & user experience,
1701
+ distribution & customer acquisition, and lean startup practices & metrics.
1702
+ Our investment team and mentor network has operational experience at companies
1703
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1704
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1705
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":484587,"role":"past_investor","created_at":"2013-01-29T01:39:16Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Fay
1706
+ Rotenberg","id":6666,"bio":"VC Investor, operating around the table - startups,
1707
+ entrepreneurship, and investing - w/a focus on clean energy/education/finance
1708
+ + tech ","follower_count":323,"angellist_url":"https://angel.co/fyietc","image":"https://s3.amazonaws.com/photos.angel.co/users/6666-medium_jpg?1309833256"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1709
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1710
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1711
+ We invest in internet startups on search, social, & mobile platforms. We run
1712
+ an incubation and accelerator program emphasizing design & user experience,
1713
+ distribution & customer acquisition, and lean startup practices & metrics.
1714
+ Our investment team and mentor network has operational experience at companies
1715
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1716
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1717
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":478530,"role":"past_investor","created_at":"2013-01-24T15:09:03Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"salim
1718
+ jabr","id":229404,"bio":null,"follower_count":6,"angellist_url":"https://angel.co/salim-jabr","image":"https://angel.co/images/shared/nopic.png"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1719
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1720
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1721
+ We invest in internet startups on search, social, & mobile platforms. We run
1722
+ an incubation and accelerator program emphasizing design & user experience,
1723
+ distribution & customer acquisition, and lean startup practices & metrics.
1724
+ Our investment team and mentor network has operational experience at companies
1725
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1726
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1727
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":476058,"role":"employee","created_at":"2013-01-23T00:10:04Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Mike
1728
+ Greenfield","id":1219,"bio":"Founded @circle-of-moms, @team-rankings. Early
1729
+ at @linkedin (analytics), @paypal (fraud detection).","follower_count":819,"angellist_url":"https://angel.co/mike_greenfield","image":"https://s3.amazonaws.com/photos.angel.co/users/1219-medium_jpg?1294803869"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1730
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1731
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1732
+ We invest in internet startups on search, social, & mobile platforms. We run
1733
+ an incubation and accelerator program emphasizing design & user experience,
1734
+ distribution & customer acquisition, and lean startup practices & metrics.
1735
+ Our investment team and mentor network has operational experience at companies
1736
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1737
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1738
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":474622,"role":"past_investor","created_at":"2013-01-22T03:28:09Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Corey
1739
+ Hoffstein","id":17264,"bio":"Co-Founder & CIO @ Newfound, where we use quantitatively-enabled
1740
+ solutions to promote behavior-driven investment strategies over chasing performance","follower_count":62,"angellist_url":"https://angel.co/choffstein","image":"https://s3.amazonaws.com/photos.angel.co/users/17264-medium_jpg?1337811027"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1741
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1742
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1743
+ We invest in internet startups on search, social, & mobile platforms. We run
1744
+ an incubation and accelerator program emphasizing design & user experience,
1745
+ distribution & customer acquisition, and lean startup practices & metrics.
1746
+ Our investment team and mentor network has operational experience at companies
1747
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1748
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1749
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":470066,"role":"advisor","created_at":"2013-01-17T21:59:44Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Malcolm
1750
+ Ong","id":38849,"bio":"Co-founder of @skillshare. @500startups Mentor. @djz
1751
+ Advisor & Consultant. @sxsw Panel Liaison. Previously: @omgpop, @razorfish,
1752
+ @ibm & Extreme Blue. CMU ''05","follower_count":183,"angellist_url":"https://angel.co/malcolmong","image":"https://s3.amazonaws.com/photos.angel.co/users/38849-medium_jpg?1322769860"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1753
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1754
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1755
+ We invest in internet startups on search, social, & mobile platforms. We run
1756
+ an incubation and accelerator program emphasizing design & user experience,
1757
+ distribution & customer acquisition, and lean startup practices & metrics.
1758
+ Our investment team and mentor network has operational experience at companies
1759
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1760
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1761
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":463049,"role":"past_investor","created_at":"2013-01-13T00:18:37Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Sten
1762
+ Tamkivi","id":5444,"bio":"Entrepreneur turned @skype leader (products; 400+
1763
+ ppl site). Advisor to President of Estonia. @stanford-graduate-school-of-business
1764
+ ''13. Founded Halo Interactive at 18 (sold to DDB).","follower_count":705,"angellist_url":"https://angel.co/sten","image":"https://s3.amazonaws.com/photos.angel.co/users/5444-medium_jpg?1296327950"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1765
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1766
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1767
+ We invest in internet startups on search, social, & mobile platforms. We run
1768
+ an incubation and accelerator program emphasizing design & user experience,
1769
+ distribution & customer acquisition, and lean startup practices & metrics.
1770
+ Our investment team and mentor network has operational experience at companies
1771
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1772
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1773
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":461454,"role":"past_investor","created_at":"2013-01-11T04:27:37Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Eric
1774
+ Friedman","id":2477,"bio":"Director of Business Development at @foursquare,
1775
+ prevously analyst at @union-square-ventures, Founded @eat-ly (sold to @foodspotting-part-of-opentable)","follower_count":1040,"angellist_url":"https://angel.co/ericfriedman","image":"https://s3.amazonaws.com/photos.angel.co/users/2477-medium_jpg?1311264057"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1776
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1777
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1778
+ We invest in internet startups on search, social, & mobile platforms. We run
1779
+ an incubation and accelerator program emphasizing design & user experience,
1780
+ distribution & customer acquisition, and lean startup practices & metrics.
1781
+ Our investment team and mentor network has operational experience at companies
1782
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1783
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1784
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":460085,"role":"employee","created_at":"2013-01-09T23:25:16Z","started_at":"2013-01-01","ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Mark
1785
+ Saldana","id":222318,"bio":"Marketing manager @500startups. ","follower_count":19,"angellist_url":"https://angel.co/markjsaldana","image":"https://s3.amazonaws.com/photos.angel.co/users/222318-medium_jpg?1357773869"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1786
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1787
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1788
+ We invest in internet startups on search, social, & mobile platforms. We run
1789
+ an incubation and accelerator program emphasizing design & user experience,
1790
+ distribution & customer acquisition, and lean startup practices & metrics.
1791
+ Our investment team and mentor network has operational experience at companies
1792
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1793
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1794
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":443628,"role":"employee","created_at":"2012-12-22T21:45:44Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Rui
1795
+ Ma","id":4753,"bio":"Worked at @merrill-lynch, @morgan-stanley \u2022 Studied
1796
+ at @university-of-california-berkeley, @university-of-illinois-urbana-champaign","follower_count":84,"angellist_url":"https://angel.co/ruima","image":"https://s3.amazonaws.com/photos.angel.co/users/4753-medium_jpg?1362617485"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1797
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1798
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1799
+ We invest in internet startups on search, social, & mobile platforms. We run
1800
+ an incubation and accelerator program emphasizing design & user experience,
1801
+ distribution & customer acquisition, and lean startup practices & metrics.
1802
+ Our investment team and mentor network has operational experience at companies
1803
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1804
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1805
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":438352,"role":"past_investor","created_at":"2012-12-19T05:17:08Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Steven
1806
+ Cheng","id":29760,"bio":"Founder @pengpengtao \u2022 Worked at @mixi-america
1807
+ \u2022 Studied at @williams-college, @tsinghua-university @tuck-school-of-business","follower_count":35,"angellist_url":"https://angel.co/steven-cheng","image":"https://s3.amazonaws.com/photos.angel.co/users/29760-medium_jpg?1354214811"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1808
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1809
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1810
+ We invest in internet startups on search, social, & mobile platforms. We run
1811
+ an incubation and accelerator program emphasizing design & user experience,
1812
+ distribution & customer acquisition, and lean startup practices & metrics.
1813
+ Our investment team and mentor network has operational experience at companies
1814
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1815
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1816
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":433641,"role":"past_investor","created_at":"2012-12-15T01:38:38Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Tak
1817
+ Miyata","id":75008,"bio":"Founder of Scrum Ventures, early stage-focused fund;
1818
+ and CEO of mixi America. Serial entrepreneur background ( J-Magic(mobile),
1819
+ Neven Vision(software))","follower_count":491,"angellist_url":"https://angel.co/tak-miyata","image":"https://s3.amazonaws.com/photos.angel.co/users/75008-medium_jpg?1324344876"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1820
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1821
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1822
+ We invest in internet startups on search, social, & mobile platforms. We run
1823
+ an incubation and accelerator program emphasizing design & user experience,
1824
+ distribution & customer acquisition, and lean startup practices & metrics.
1825
+ Our investment team and mentor network has operational experience at companies
1826
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1827
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1828
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":430483,"role":"employee","created_at":"2012-12-12T02:59:01Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Khailee
1829
+ Ng","id":47719,"bio":"Entrepreneur-in-Residence, 500 Startups. Co-founder:
1830
+ Groupsmore (acquired by Groupon) + SAYS.com, a profitable social news network
1831
+ in Southeast Asia. ","follower_count":137,"angellist_url":"https://angel.co/khailee","image":"https://s3.amazonaws.com/photos.angel.co/users/47719-medium_jpg?1352833107"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1832
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1833
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1834
+ We invest in internet startups on search, social, & mobile platforms. We run
1835
+ an incubation and accelerator program emphasizing design & user experience,
1836
+ distribution & customer acquisition, and lean startup practices & metrics.
1837
+ Our investment team and mentor network has operational experience at companies
1838
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1839
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1840
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":429327,"role":"past_investor","created_at":"2012-12-11T08:12:45Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"David
1841
+ Lyman","id":123825,"bio":"Entrepreneur and Angel. Co-Founder of @nutshellmail
1842
+ which sold to @constant-contact where I now build new products and businesses
1843
+ internally.","follower_count":81,"angellist_url":"https://angel.co/davidlyman","image":"https://s3.amazonaws.com/photos.angel.co/users/123825-medium_jpg?1335907288"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1844
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1845
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1846
+ We invest in internet startups on search, social, & mobile platforms. We run
1847
+ an incubation and accelerator program emphasizing design & user experience,
1848
+ distribution & customer acquisition, and lean startup practices & metrics.
1849
+ Our investment team and mentor network has operational experience at companies
1850
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1851
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1852
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":428823,"role":"advisor","created_at":"2012-12-10T22:05:11Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Nick
1853
+ Ellis","id":4790,"bio":"Founder @job-rooster \u2022 Studied at @stanford-university,
1854
+ @london-school-of-economics","follower_count":146,"angellist_url":"https://angel.co/nellis","image":"https://s3.amazonaws.com/photos.angel.co/users/4790-medium_jpg?1307398538"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1855
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1856
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1857
+ We invest in internet startups on search, social, & mobile platforms. We run
1858
+ an incubation and accelerator program emphasizing design & user experience,
1859
+ distribution & customer acquisition, and lean startup practices & metrics.
1860
+ Our investment team and mentor network has operational experience at companies
1861
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1862
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1863
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":427697,"role":"past_investor","created_at":"2012-12-10T07:20:28Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Matt
1864
+ Monahan","id":65547,"bio":"Without sales, you have no business to manage.
1865
+ @stanford-university Grad, @alphaboost-1 Founder, @500startups Trifecta --
1866
+ Mentor, Company, LP #hustler\n\n","follower_count":451,"angellist_url":"https://angel.co/gomattymo","image":"https://s3.amazonaws.com/photos.angel.co/users/65547-medium_jpg?1344897415"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1867
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1868
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1869
+ We invest in internet startups on search, social, & mobile platforms. We run
1870
+ an incubation and accelerator program emphasizing design & user experience,
1871
+ distribution & customer acquisition, and lean startup practices & metrics.
1872
+ Our investment team and mentor network has operational experience at companies
1873
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1874
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1875
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":424140,"role":"advisor","created_at":"2012-12-05T23:02:49Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Andy
1876
+ Johns","id":65926,"bio":"Formerly worked on User Growth at @facebook and @twitter.
1877
+ Currently PM of User Growth at @quora. I advise startups on how to grow.","follower_count":305,"angellist_url":"https://angel.co/andyjohns","image":"https://s3.amazonaws.com/photos.angel.co/users/65926-medium_jpg?1335397720"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1878
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1879
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1880
+ We invest in internet startups on search, social, & mobile platforms. We run
1881
+ an incubation and accelerator program emphasizing design & user experience,
1882
+ distribution & customer acquisition, and lean startup practices & metrics.
1883
+ Our investment team and mentor network has operational experience at companies
1884
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1885
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1886
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":416491,"role":"past_investor","created_at":"2012-11-29T19:35:51Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Shai
1887
+ Goldman","id":570,"bio":"Venture Partner at 500 Startups - based in NYC","follower_count":1171,"angellist_url":"https://angel.co/shaig","image":"https://s3.amazonaws.com/photos.angel.co/users/570-medium_jpg?1349383724"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1888
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1889
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1890
+ We invest in internet startups on search, social, & mobile platforms. We run
1891
+ an incubation and accelerator program emphasizing design & user experience,
1892
+ distribution & customer acquisition, and lean startup practices & metrics.
1893
+ Our investment team and mentor network has operational experience at companies
1894
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1895
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1896
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":390859,"role":"advisor","created_at":"2012-11-05T00:53:55Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Vitaly
1897
+ M. Golomb","id":4089,"bio":"CEO @keen-systems // CEO @europe Venture Summit //
1898
+ Mentor @500startups @happy-farm @innovation-nest // Award-winning designer
1899
+ // Speaker","follower_count":364,"angellist_url":"https://angel.co/vitalyg","image":"https://s3.amazonaws.com/photos.angel.co/users/4089-medium_jpg?1340302283"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1900
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1901
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1902
+ We invest in internet startups on search, social, & mobile platforms. We run
1903
+ an incubation and accelerator program emphasizing design & user experience,
1904
+ distribution & customer acquisition, and lean startup practices & metrics.
1905
+ Our investment team and mentor network has operational experience at companies
1906
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1907
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1908
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":384351,"role":"employee","created_at":"2012-10-28T17:26:00Z","started_at":"2012-10-01","ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Bruna
1909
+ Maia","id":182478,"bio":"Events & Content Director","follower_count":31,"angellist_url":"https://angel.co/bru_maia","image":"https://s3.amazonaws.com/photos.angel.co/users/182478-medium_jpg?1351447734"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1910
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1911
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1912
+ We invest in internet startups on search, social, & mobile platforms. We run
1913
+ an incubation and accelerator program emphasizing design & user experience,
1914
+ distribution & customer acquisition, and lean startup practices & metrics.
1915
+ Our investment team and mentor network has operational experience at companies
1916
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1917
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1918
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":384350,"role":"employee","created_at":"2012-10-28T17:25:18Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Sheila
1919
+ Goodman","id":111677,"bio":"Business Development & Events Manager","follower_count":52,"angellist_url":"https://angel.co/sheila-goodman","image":"https://s3.amazonaws.com/photos.angel.co/users/111677-medium_jpg?1333065452"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1920
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1921
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1922
+ We invest in internet startups on search, social, & mobile platforms. We run
1923
+ an incubation and accelerator program emphasizing design & user experience,
1924
+ distribution & customer acquisition, and lean startup practices & metrics.
1925
+ Our investment team and mentor network has operational experience at companies
1926
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1927
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1928
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":380401,"role":"past_investor","created_at":"2012-10-23T13:43:14Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Raj
1929
+ Bhaskar","id":100380,"bio":"Software Entrepreneur","follower_count":98,"angellist_url":"https://angel.co/raj-bhaskar","image":"https://s3.amazonaws.com/photos.angel.co/users/100380-medium_jpg?1330435502"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1930
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1931
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1932
+ We invest in internet startups on search, social, & mobile platforms. We run
1933
+ an incubation and accelerator program emphasizing design & user experience,
1934
+ distribution & customer acquisition, and lean startup practices & metrics.
1935
+ Our investment team and mentor network has operational experience at companies
1936
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1937
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1938
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":369024,"role":"advisor","created_at":"2012-10-09T06:34:20Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Sergei
1939
+ Burkov","id":15876,"bio":"3x entrepreneur (Bilbo, Invincible, @dulance), sold
1940
+ a company to @google, became the first head of its Moscow R&D Center. PhD
1941
+ in Physics","follower_count":563,"angellist_url":"https://angel.co/burkov","image":"https://s3.amazonaws.com/photos.angel.co/users/15876-medium_jpg?1311188772"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1942
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1943
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1944
+ We invest in internet startups on search, social, & mobile platforms. We run
1945
+ an incubation and accelerator program emphasizing design & user experience,
1946
+ distribution & customer acquisition, and lean startup practices & metrics.
1947
+ Our investment team and mentor network has operational experience at companies
1948
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1949
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1950
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":365845,"role":"employee","created_at":"2012-10-04T22:29:38Z","started_at":"2012-10-01","ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Pankaj
1951
+ Jain","id":35540,"bio":"Venture Partner at @500-startups-fund-ii, Country
1952
+ Coordinator @startup-weekend India","follower_count":1189,"angellist_url":"https://angel.co/pjain","image":"https://s3.amazonaws.com/photos.angel.co/users/35540-medium_jpg?1311880896"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1953
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1954
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1955
+ We invest in internet startups on search, social, & mobile platforms. We run
1956
+ an incubation and accelerator program emphasizing design & user experience,
1957
+ distribution & customer acquisition, and lean startup practices & metrics.
1958
+ Our investment team and mentor network has operational experience at companies
1959
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1960
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1961
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":365672,"role":"employee","created_at":"2012-10-04T20:48:30Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Shai
1962
+ Goldman","id":570,"bio":"Venture Partner at 500 Startups - based in NYC","follower_count":1171,"angellist_url":"https://angel.co/shaig","image":"https://s3.amazonaws.com/photos.angel.co/users/570-medium_jpg?1349383724"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1963
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1964
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1965
+ We invest in internet startups on search, social, & mobile platforms. We run
1966
+ an incubation and accelerator program emphasizing design & user experience,
1967
+ distribution & customer acquisition, and lean startup practices & metrics.
1968
+ Our investment team and mentor network has operational experience at companies
1969
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1970
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1971
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":350278,"role":"past_investor","created_at":"2012-09-19T01:11:42Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Massimo
1972
+ Agostinelli","id":176181,"bio":"Worked at @rhone-group-l-l-c \u2022 Studied
1973
+ at @webster-university, @european-business-school-london","follower_count":22,"angellist_url":"https://angel.co/agosmas","image":"https://s3.amazonaws.com/photos.angel.co/users/176181-medium_jpg?1348017650"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1974
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1975
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1976
+ We invest in internet startups on search, social, & mobile platforms. We run
1977
+ an incubation and accelerator program emphasizing design & user experience,
1978
+ distribution & customer acquisition, and lean startup practices & metrics.
1979
+ Our investment team and mentor network has operational experience at companies
1980
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1981
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1982
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":344294,"role":"past_investor","created_at":"2012-09-13T21:18:50Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Robert
1983
+ Wong","id":173826,"bio":null,"follower_count":22,"angellist_url":"https://angel.co/robert-wong-2","image":"https://s3.amazonaws.com/photos.angel.co/users/173826-medium_jpg?1347571012"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1984
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1985
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1986
+ We invest in internet startups on search, social, & mobile platforms. We run
1987
+ an incubation and accelerator program emphasizing design & user experience,
1988
+ distribution & customer acquisition, and lean startup practices & metrics.
1989
+ Our investment team and mentor network has operational experience at companies
1990
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
1991
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
1992
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":341445,"role":"employee","created_at":"2012-09-11T14:40:17Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"C\u00e9sar
1993
+ Salazar","id":50147,"bio":"Venture Partner at @500startups. Leading key efforts
1994
+ to empower the hackers & founders from our Mexico City Hub.","follower_count":375,"angellist_url":"https://angel.co/cesarsalazar","image":"https://s3.amazonaws.com/photos.angel.co/users/50147-medium_jpg?1354059060"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
1995
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
1996
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
1997
+ We invest in internet startups on search, social, & mobile platforms. We run
1998
+ an incubation and accelerator program emphasizing design & user experience,
1999
+ distribution & customer acquisition, and lean startup practices & metrics.
2000
+ Our investment team and mentor network has operational experience at companies
2001
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
2002
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
2003
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":341443,"role":"employee","created_at":"2012-09-11T14:37:07Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Santiago
2004
+ Zavala","id":73494,"bio":"Founder Mexican.vc, Super Happy Dev House Mexico
2005
+ City, Startup Weekend Mexico City, Co-Curate Startup Digest SV, Passionate
2006
+ hacker, thinker, photographer. ","follower_count":169,"angellist_url":"https://angel.co/dfectuoso","image":"https://s3.amazonaws.com/photos.angel.co/users/73494-medium_jpg?1321315090"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
2007
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
2008
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
2009
+ We invest in internet startups on search, social, & mobile platforms. We run
2010
+ an incubation and accelerator program emphasizing design & user experience,
2011
+ distribution & customer acquisition, and lean startup practices & metrics.
2012
+ Our investment team and mentor network has operational experience at companies
2013
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
2014
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
2015
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":330608,"role":"past_investor","created_at":"2012-08-30T21:12:22Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Shin
2016
+ Nagakura","id":168191,"bio":null,"follower_count":26,"angellist_url":"https://angel.co/nagakura","image":"https://graph.facebook.com/nagakura/picture?type=square"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
2017
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
2018
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
2019
+ We invest in internet startups on search, social, & mobile platforms. We run
2020
+ an incubation and accelerator program emphasizing design & user experience,
2021
+ distribution & customer acquisition, and lean startup practices & metrics.
2022
+ Our investment team and mentor network has operational experience at companies
2023
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
2024
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
2025
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":323560,"role":"past_investor","created_at":"2012-08-23T17:50:30Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Lori
2026
+ Anne Wardi","id":99520,"bio":"Attorney, Investor, Entrepreneur, Co-founder
2027
+ of .CO ","follower_count":171,"angellist_url":"https://angel.co/domaindiva","image":"https://s3.amazonaws.com/photos.angel.co/users/99520-medium_jpg?1330290210"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
2028
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
2029
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
2030
+ We invest in internet startups on search, social, & mobile platforms. We run
2031
+ an incubation and accelerator program emphasizing design & user experience,
2032
+ distribution & customer acquisition, and lean startup practices & metrics.
2033
+ Our investment team and mentor network has operational experience at companies
2034
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
2035
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
2036
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":322805,"role":"advisor","created_at":"2012-08-23T01:42:57Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Roger
2037
+ Dickey","id":1078,"bio":"Mafia Wars founder ( @zynga ), Serial entrepreneur
2038
+ (3 startups), Angel investor (20+ companies)","follower_count":2465,"angellist_url":"https://angel.co/rogerdickey","image":"https://s3.amazonaws.com/photos.angel.co/users/1078-medium_jpg?1334979511"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
2039
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
2040
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
2041
+ We invest in internet startups on search, social, & mobile platforms. We run
2042
+ an incubation and accelerator program emphasizing design & user experience,
2043
+ distribution & customer acquisition, and lean startup practices & metrics.
2044
+ Our investment team and mentor network has operational experience at companies
2045
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
2046
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
2047
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":318286,"role":"advisor","created_at":"2012-08-19T18:57:47Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Joe
2048
+ Hyrkin","id":163551,"bio":null,"follower_count":114,"angellist_url":"https://angel.co/joe-hyrkin","image":"https://s3.amazonaws.com/photos.angel.co/users/163551-medium_jpg?1345402021"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
2049
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
2050
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
2051
+ We invest in internet startups on search, social, & mobile platforms. We run
2052
+ an incubation and accelerator program emphasizing design & user experience,
2053
+ distribution & customer acquisition, and lean startup practices & metrics.
2054
+ Our investment team and mentor network has operational experience at companies
2055
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
2056
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
2057
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":313384,"role":"employee","created_at":"2012-08-16T18:16:57Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Sabrina
2058
+ Ilich","id":162365,"bio":"Worked at @500 Startups (Fund II) \u2022 Studied
2059
+ at @SCU","follower_count":17,"angellist_url":"https://angel.co/sabrinailich","image":"https://s3.amazonaws.com/photos.angel.co/users/162365-medium_jpg?1361833611"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
2060
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
2061
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
2062
+ We invest in internet startups on search, social, & mobile platforms. We run
2063
+ an incubation and accelerator program emphasizing design & user experience,
2064
+ distribution & customer acquisition, and lean startup practices & metrics.
2065
+ Our investment team and mentor network has operational experience at companies
2066
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
2067
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
2068
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":309070,"role":"past_investor","created_at":"2012-08-13T05:10:05Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Ben
2069
+ Li","id":160600,"bio":"angel investor with focus on enterprise software. ","follower_count":29,"angellist_url":"https://angel.co/ben-li-7927","image":"https://s3.amazonaws.com/photos.angel.co/users/160600-medium_jpg?1344834760"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
2070
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
2071
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
2072
+ We invest in internet startups on search, social, & mobile platforms. We run
2073
+ an incubation and accelerator program emphasizing design & user experience,
2074
+ distribution & customer acquisition, and lean startup practices & metrics.
2075
+ Our investment team and mentor network has operational experience at companies
2076
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
2077
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
2078
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}}],"total":188,"per_page":50,"page":1,"last_page":4}'
2079
+ http_version: !!null
2080
+ recorded_at: Thu, 21 Mar 2013 12:46:17 GMT
2081
+ - request:
2082
+ method: get
2083
+ uri: https://api.angel.co/1/startup_roles?user_id=2850&v=1
2084
+ body:
2085
+ encoding: US-ASCII
2086
+ string: ''
2087
+ headers:
2088
+ Accept:
2089
+ - application/json
2090
+ User-Agent:
2091
+ - AngellistApi Ruby Gem 1.0.3
2092
+ response:
2093
+ status:
2094
+ code: 200
2095
+ message: !!null
2096
+ headers:
2097
+ cache-control:
2098
+ - private, max-age=0, must-revalidate
2099
+ content-type:
2100
+ - application/json; charset=utf-8
2101
+ date:
2102
+ - Thu, 21 Mar 2013 12:46:19 GMT
2103
+ etag:
2104
+ - ! '"fbb634dc7d18ed037672a35c5232582d"'
2105
+ server:
2106
+ - nginx
2107
+ status:
2108
+ - 200 OK
2109
+ vary:
2110
+ - Accept-Encoding
2111
+ x-ratelimit-limit:
2112
+ - '1000'
2113
+ x-ratelimit-remaining:
2114
+ - '999'
2115
+ x-runtime:
2116
+ - '2180'
2117
+ transfer-encoding:
2118
+ - chunked
2119
+ connection:
2120
+ - Close
2121
+ body:
2122
+ encoding: ASCII-8BIT
2123
+ string: ! '{"startup_roles":[{"id":565659,"role":"past_investor","created_at":"2013-03-15T20:19:59Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2124
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2125
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2126
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":132132,"hidden":false,"community_profile":false,"name":"YaSabe","angellist_url":"https://angel.co/yasabe","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/132132-5680ce4205c04b5aa3db3a282de2685c-medium_jpg.jpg?buster=1363379078","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/132132-5680ce4205c04b5aa3db3a282de2685c-thumb_jpg.jpg?buster=1363379078","quality":6,"product_desc":"YaSabe
2127
+ is the premier local search destination for businesses, coupons and jobs that
2128
+ caters to Hispanic consumers. We connect businesses, content publishers, and
2129
+ advertisers to the collective buying power of U.S. Hispanics.\n\nThrough syndicated
2130
+ bilingual content, revenue opportunities, and access to expanded Hispanic
2131
+ audiences, YaSabe helps its partners drive in-depth, lasting cultural and
2132
+ community engagement with one of the nation\u2019s fastest growing, most lucrative
2133
+ markets.","high_concept":"Local search destination catering to US Hispanic
2134
+ consumers.","follower_count":19,"company_url":"http://www.yasabe.com/en","created_at":"2012-10-25T14:13:37Z","updated_at":"2013-03-15T20:24:42Z"}},{"id":560156,"role":"incubator","created_at":"2013-03-12T20:53:53Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2135
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2136
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2137
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":21214,"hidden":false,"community_profile":false,"name":"Babelverse","angellist_url":"https://angel.co/babelverse","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21214-0838287330dca28d837b576df65ec51d-medium_jpg.jpg?buster=1348117539","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21214-0838287330dca28d837b576df65ec51d-thumb_jpg.jpg?buster=1348117539","quality":7,"product_desc":"Babelverse
2138
+ is an award winning startup (LeWeb''11, TheNextWeb''12, TechCrunch Disrupt''12)
2139
+ and seeing great traction. \n\nThe first solution for people-powered real-time
2140
+ interpretation (crowd-sourced & pro).\n\nA platform to enable people in various
2141
+ situations to remotely obtain on-the-spot interpretation, in any language.
2142
+ \n\nThe universal translator we''ve all been waiting for!\n\nhttp://www.fastcompany.com/1798732/translate-this-babelverse-wants-to-put-a-human-interpreter-in-everyones-pocket","high_concept":"On-demand
2143
+ voice translation by pro interpreters & bilinguals, in any language & situation","follower_count":280,"company_url":"http://babelverse.com","created_at":"2011-07-18T23:18:24Z","updated_at":"2013-03-16T01:18:57Z"}},{"id":546944,"role":"past_investor","created_at":"2013-03-05T04:38:17Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2144
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2145
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2146
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":98033,"hidden":false,"community_profile":false,"name":"Manicube","angellist_url":"https://angel.co/manicube","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/98033-d1134b10ba13edec45570fb92f22dfca-medium_jpg.jpg?buster=1348155196","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/98033-d1134b10ba13edec45570fb92f22dfca-thumb_jpg.jpg?buster=1348155196","quality":6,"product_desc":"We
2147
+ offer 15-minute, $15 manicures to professional women at their offices. We
2148
+ liaise with HR managers to bring licensed nail technicians in on a weekly
2149
+ basis. Employees book appointments directly on our website, our payments are
2150
+ cashless, and our service is elevated-- we stock premium nail polish brands,
2151
+ use strict sanitation procedures and provide iPad content at every station.
2152
+ For every manicure, we contribute $1 to a micro loan to a female entrepreneur
2153
+ in the developing world through Kiva. ","high_concept":"Making working professionals''
2154
+ lives easier starting with 15 min manicures at the office.","follower_count":7,"company_url":"http://www.manicube.com","created_at":"2012-06-18T22:00:29Z","updated_at":"2012-09-20T21:54:27Z"}},{"id":531846,"role":"past_investor","created_at":"2013-02-25T23:25:15Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2155
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2156
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2157
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":174290,"hidden":false,"community_profile":false,"name":"Sightly","angellist_url":"https://angel.co/sightly","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/174290-773ab66d1ac41c8302281557e0e5ae7f-medium_jpg.jpg?buster=1362329448","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/174290-773ab66d1ac41c8302281557e0e5ae7f-thumb_jpg.jpg?buster=1362329448","quality":7,"product_desc":"Our
2158
+ local video platform connects consumers & nearby businesses in a faster, more
2159
+ engaging way. Our platform lets consumers experience the business before
2160
+ they go by seeing videos captured by Sightly at no cost to the business. And
2161
+ we help businesses reach local customers by distributing their video via video
2162
+ SEO, SEM, syndicated channels & in-stream YouTube video ads as Google\u2019s
2163
+ only local video partner. Businesses can track views, clicks & conversions
2164
+ via an online account center.","high_concept":"Video platform for local search
2165
+ & discovery","follower_count":169,"company_url":"http://www.sightly.com","created_at":"2013-02-25T23:07:52Z","updated_at":"2013-03-13T22:15:05Z"}},{"id":525663,"role":"past_investor","created_at":"2013-02-22T10:18:21Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2166
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2167
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2168
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":172453,"hidden":false,"community_profile":false,"name":"Snapsheet","angellist_url":"https://angel.co/snapsheet-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/172453-ab54da25eec3eee49e6232ec92ff1295-medium_jpg.jpg?buster=1361497981","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/172453-ab54da25eec3eee49e6232ec92ff1295-thumb_jpg.jpg?buster=1361497981","quality":6,"product_desc":"Snapsheet
2169
+ provides mobile branded apps to help auto insurance carriers settle claims
2170
+ in hours instead of days. Our self-service mobile app enables customers to
2171
+ take photos of their damaged vehicles on their own time without the hassle
2172
+ of scheduling an adjuster or a trip to a body shop. The customer can view
2173
+ their carrier approved estimate, schedule an appointment with a body shop
2174
+ or even take an EFT cash payout all from their carrier''s mobile app. ","high_concept":"Mobile
2175
+ self-service claims solution","follower_count":13,"company_url":"http://www.snapsheetapp.com","created_at":"2013-02-22T01:32:57Z","updated_at":"2013-02-22T01:53:08Z"}},{"id":519118,"role":"past_investor","created_at":"2013-02-19T05:24:45Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2176
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2177
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2178
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":26348,"hidden":false,"community_profile":false,"name":"TapCanvas","angellist_url":"https://angel.co/tapcanvas","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26348-d2b87b0dbf5b2bb3aa61d795993b6f0d-medium_jpg.jpg?buster=1361988829","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26348-d2b87b0dbf5b2bb3aa61d795993b6f0d-thumb_jpg.jpg?buster=1361988829","quality":7,"product_desc":"TapCanvas
2179
+ is a platform for building \"contextual\" HTML5 mobile apps without programming.
2180
+ Contextual apps are tied to a place, time, or object, and they can be built
2181
+ in as little as 60 seconds using beautiful pre-made templates.\n\nAOL uses
2182
+ TapCanvas to create mobile conference apps for their events. Vornado plans
2183
+ to use TapCanvas to create maintenance and warranty guides for the fans and
2184
+ heaters they sell. These apps run on the web, so they can be accessed easily
2185
+ by URL, QR code, or NFC chip.","high_concept":"Contextual mobile apps.","follower_count":130,"company_url":"http://www.tapcanvas.com","created_at":"2011-10-17T05:53:25Z","updated_at":"2013-03-13T17:36:24Z"}},{"id":512935,"role":"past_investor","created_at":"2013-02-14T23:53:46Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2186
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2187
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2188
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":125280,"hidden":false,"community_profile":false,"name":"SupplyHog","angellist_url":"https://angel.co/supplyhog","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/125280-2ec744eae29274d4a260b622d9a3fc81-medium_jpg.jpg?buster=1348494949","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/125280-2ec744eae29274d4a260b622d9a3fc81-thumb_jpg.jpg?buster=1348494949","quality":7,"product_desc":"Our
2189
+ platform brings transparency and efficiency to a market dominated by phone
2190
+ calls, shopping trips, fax machines, endless negotiations and personalized
2191
+ pricing. We throw in free drop shipping and contractor level pricing. In short,
2192
+ our platform takes care of the busy work and provides better value to boot.
2193
+ \n","high_concept":"Amazon/Zappos of Building Supplies.","follower_count":349,"company_url":"http://www.supplyhog.com","created_at":"2012-09-24T13:55:51Z","updated_at":"2013-03-21T04:25:00Z"}},{"id":505140,"role":"past_investor","created_at":"2013-02-11T02:31:45Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2194
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2195
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2196
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":83689,"hidden":false,"community_profile":false,"name":"Cubie","angellist_url":"https://angel.co/cubie","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83689-87d0cfb9e83f54b95f9c79f10047c881-medium_jpg.jpg?buster=1334638926","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83689-87d0cfb9e83f54b95f9c79f10047c881-thumb_jpg.jpg?buster=1334638926","quality":6,"product_desc":"Cubie
2197
+ Messenger (http://cubie.com) is a mobile messaging app launched in Mar ''12
2198
+ on iPhone and Android, which got 5.5 million users within 10 months.\n\nCubie
2199
+ hit Top 1 (total) in 10 Asian and Middle East countries, and No.1 (social)
2200
+ in 16 countries. Cubie also hit No.13 in US and No.10 in Japan (social).\n\nCubie
2201
+ allows to send drawings while chatting, and offers tons of animated emoji,
2202
+ and can share photos, videos and voice.\n","high_concept":"5.5M+ users in
2203
+ 10 months. WhatsApp + drawing + fun.","follower_count":155,"company_url":"http://cubie.com","created_at":"2012-04-17T05:02:06Z","updated_at":"2013-02-06T18:01:49Z"}},{"id":505055,"role":"past_investor","created_at":"2013-02-11T01:51:53Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2204
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2205
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2206
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":165758,"hidden":false,"community_profile":false,"name":"MyTime","angellist_url":"https://angel.co/mytime","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/165758-93d122cf14fda10d1ab1e065f460e016-medium_jpg.jpg?buster=1360597615","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/165758-93d122cf14fda10d1ab1e065f460e016-thumb_jpg.jpg?buster=1360597615","quality":7,"product_desc":"An
2207
+ online destination to allow consumers to conveniently book open appointment
2208
+ times from top local businesses at http://www.mytime.com and through our mobile
2209
+ apps. Consumers can view real-time appointment availability across thousands
2210
+ of businesses and receive instant confirmations when they purchase services
2211
+ through MyTime. \n\nThe product is now available in the Los Angeles area,
2212
+ where it features over 500,000 open appointments available for booking.","high_concept":"Find
2213
+ and book open appointments for nearby local businesses. Book and pay with
2214
+ 1-click.","follower_count":53,"company_url":"http://www.mytime.com","created_at":"2013-02-07T09:08:26Z","updated_at":"2013-02-11T15:46:58Z"}},{"id":504094,"role":"past_investor","created_at":"2013-02-10T01:45:16Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2215
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2216
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2217
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":1693,"hidden":false,"community_profile":false,"name":"GoodPeople","angellist_url":"https://angel.co/goodpeople","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1693-ac0f2dedfbcfcc50808781c3c2a84c19-medium_jpg.jpg?buster=1321913782","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1693-ac0f2dedfbcfcc50808781c3c2a84c19-thumb_jpg.jpg?buster=1321913782","quality":7,"product_desc":"GoodPeople
2218
+ is a social marketplace for the action sports lifestyle.\n\nFounded 3 years
2219
+ ago, GoodPeople was selected as an Endeavor Global Company in 2012 and is
2220
+ currently the largest action sports community in Argentina. They currently
2221
+ have partnerships with the X Games and many of the most well known brands
2222
+ in the industry. Their platform helps brands to promote and sell products
2223
+ to their target market while providing the community a place to share the
2224
+ lifestyle online.","high_concept":"The action sports brand of the future.","follower_count":48,"company_url":"http://www.goodpeople.com","created_at":"2010-12-29T13:20:39Z","updated_at":"2013-03-18T23:43:04Z"}},{"id":501317,"role":"past_investor","created_at":"2013-02-07T22:58:03Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2225
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2226
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2227
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":23140,"hidden":false,"community_profile":false,"name":"Stupeflix","angellist_url":"https://angel.co/stupeflix","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/23140-9d0a0800cdc986d1e5228d4f667b9d61-medium_jpg.jpg?buster=1329297306","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/23140-9d0a0800cdc986d1e5228d4f667b9d61-thumb_jpg.jpg?buster=1329297306","quality":6,"product_desc":"Stupeflix
2228
+ helps people express themselves through video. \nWe believe making a video
2229
+ should be as fast as sharing a photo.\n\nWe''re building a novel experience
2230
+ for iPhone users, turning your camera roll into beautiful videos, instantly.\nVideo
2231
+ creativity on mobile is a huge, open opportunity.\nInstant rendering on the
2232
+ device is our secret weapon.\n\nStupeflix made 10 million videos, for 1 million
2233
+ users of its web app, and the world largest brands (e.g. Coke, Amex, Sprint).","high_concept":"Fast,
2234
+ beautiful video creation","follower_count":259,"company_url":"http://stupeflix.com","created_at":"2011-08-22T16:04:26Z","updated_at":"2012-11-16T19:16:07Z"}},{"id":484797,"role":"past_investor","created_at":"2013-01-29T04:14:15Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2235
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2236
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2237
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":815,"hidden":false,"community_profile":false,"name":"StartupDigest","angellist_url":"https://angel.co/startupdigest","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/815-b42c45292e6591f3a9920ba1de3da2ca-medium_jpg.jpg?buster=1315770812","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/815-b42c45292e6591f3a9920ba1de3da2ca-thumb_jpg.jpg?buster=1315770812","quality":8,"product_desc":"StartupDigest
2238
+ is the largest tech entrepreneurship network in the world, helping people
2239
+ stay connected and learn more in the startup world.\n\nEvery week we serve
2240
+ 300,000 subscribers across 185 cities worldwide.","high_concept":"Meet people
2241
+ and learn more in the startup world","follower_count":122,"company_url":"http://startupdigest.com","created_at":"2010-10-20T01:05:38Z","updated_at":"2013-03-10T20:52:35Z"}},{"id":481656,"role":"past_investor","created_at":"2013-01-26T21:06:25Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2242
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2243
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2244
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":51645,"hidden":false,"community_profile":false,"name":"Jeeran","angellist_url":"https://angel.co/jeeran","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/51645-dbeaa321a8bab060c5c44fffb807495b-medium_jpg.jpg?buster=1326858911","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/51645-dbeaa321a8bab060c5c44fffb807495b-thumb_jpg.jpg?buster=1326858911","quality":7,"product_desc":"An
2245
+ engagement platform between consumers and businesses centered on places and
2246
+ reviews.","high_concept":"Local discovery based on community reviews","follower_count":42,"company_url":"http://www.jeeran.com","created_at":"2012-01-18T03:55:12Z","updated_at":"2012-04-18T06:57:43Z"}},{"id":474026,"role":"past_investor","created_at":"2013-01-21T20:58:14Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2247
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2248
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2249
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":154195,"hidden":false,"community_profile":false,"name":"VERSUS
2250
+ IO","angellist_url":"https://angel.co/versus-io","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/154195-eb46b6471162e568778d8fc2cd13a1f8-medium_jpg.jpg?buster=1358417188","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/154195-eb46b6471162e568778d8fc2cd13a1f8-thumb_jpg.jpg?buster=1358417188","quality":6,"product_desc":"-
2251
+ Growing by 50% per month\n- 2.5M visits/month, 80% unique, 25% mobile\n- World-wide
2252
+ audience, 18 languages, most social activity than any other comparison site\n-
2253
+ $1M seed closed w/500 Startups, JMES, HTGF in 2012\n- Direct competitor: FindTheBest\n","high_concept":"Data-driven
2254
+ comparisons in natural language","follower_count":21,"company_url":"http://versusio.com","created_at":"2013-01-08T17:54:26Z","updated_at":"2013-01-25T23:51:47Z"}},{"id":468982,"role":"incubator","created_at":"2013-01-16T23:32:55Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2255
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2256
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2257
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":157106,"hidden":false,"community_profile":false,"name":"SearchMan","angellist_url":"https://angel.co/searchman","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/157106-9a3d95eae330c84e4ade7ff1ea38f280-medium_jpg.jpg?buster=1358382124","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/157106-9a3d95eae330c84e4ade7ff1ea38f280-thumb_jpg.jpg?buster=1358382124","quality":7,"product_desc":"SearchMan.com
2258
+ (www.SearchMan.com) is seriously committed to enabling search & discovery
2259
+ of the best mobile apps & shopping deals with great technology. \n\nOur first
2260
+ product, SearchMan SEO, enables search engine optimization for Mobile Apps
2261
+ on iPhone, iPad and Google Play (Q1 2013). Our service helps developers (and
2262
+ their stakeholders) track search rankings, analyze keywords, compete for rankings,
2263
+ and optimize everything...so that your App is easier to find. ","high_concept":"Enabling
2264
+ SEO for Mobile Apps","follower_count":206,"company_url":"http://SearchMan.com","created_at":"2013-01-16T23:29:46Z","updated_at":"2013-02-06T02:15:16Z"}},{"id":465835,"role":"past_investor","created_at":"2013-01-15T02:14:22Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2265
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2266
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2267
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":813,"hidden":false,"community_profile":false,"name":"Humanoid
2268
+ (Acquired by CloudFactory)","angellist_url":"https://angel.co/humanoid-acquired-by-cloudfactory","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/813-dee9832dc76814506c31776e335189ab-medium_jpg.jpg?buster=1320945988","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/813-dee9832dc76814506c31776e335189ab-thumb_jpg.jpg?buster=1320945988","quality":9,"product_desc":"Humanoid
2269
+ is a crowdsourcing QA and cost optimization technology built on top of Amazon
2270
+ Mechanical Turk. We use advanced machine learning techniques to model and
2271
+ predict how well individuals will perform different virtual tasks, then assign
2272
+ work to them in a way that optimizes speed, price and quality. \n\nOur engineering
2273
+ team comes from the Carnegie Mellon Robotics Institute and our investors include
2274
+ Google Ventures, 500 Startups and Mitch Kapor. \n","high_concept":"Labor in
2275
+ the Cloud. ","follower_count":226,"company_url":"http://getHumanoid.com","created_at":"2010-01-02T08:00:00Z","updated_at":"2013-03-07T23:50:55Z"}},{"id":462469,"role":"past_investor","created_at":"2013-01-12T03:54:21Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2276
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2277
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2278
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":115616,"hidden":false,"community_profile":false,"name":"NoRedink","angellist_url":"https://angel.co/noredink","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/115616-d46b44dca825cd851aca9d59e8cc1e4d-medium_jpg.jpg?buster=1345548640","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/115616-d46b44dca825cd851aca9d59e8cc1e4d-thumb_jpg.jpg?buster=1345548640","quality":7,"product_desc":"NoRedInk.com
2279
+ helps students improve their grammar/writing skills.\u00a0Our engine generates
2280
+ personalized curriculum from their interests & adapts to them with instant
2281
+ feedback, tutorials, & color-coded heat maps. With no marketing, we''re in
2282
+ 5% of U.S. schools and have revenue in a $9.7B market. We won NBC''s $75K
2283
+ Innovation Challenge and have been featured in\u00a0Mashable,\u00a0USNews,
2284
+ TechCrunch, etc.\u00a0We''re backed by ImagineK12 & led by a former English
2285
+ teacher who decided to use technology to end \"red ink.\"","high_concept":"Adaptive
2286
+ learning tool that helps students improve their grammar/writing skills.","follower_count":344,"company_url":"http://www.noredink.com","created_at":"2012-08-20T02:55:54Z","updated_at":"2013-01-02T21:35:25Z"}},{"id":462086,"role":"past_investor","created_at":"2013-01-11T20:27:24Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2287
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2288
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2289
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":62234,"hidden":false,"community_profile":false,"name":"ZipDial","angellist_url":"https://angel.co/zipdial","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/62234-6f64c1e92fee9ffe2c362899341cf99c-medium_jpg.jpg?buster=1354797690","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/62234-6f64c1e92fee9ffe2c362899341cf99c-thumb_jpg.jpg?buster=1354797690","quality":6,"product_desc":"ZipDial
2290
+ call-to-action platform captures consumer opinions & intent. Every zipdial
2291
+ from a consumer is a ping to the platform activating one of many applications
2292
+ in the marketing suite, from couponing to feedback surveys to friend referrals.
2293
+ \n\nRich data builds as every zipdial enhances the user\u2019s interest and
2294
+ behavioral profile, therefore driving even more value in analytics for advertiser
2295
+ customers.\n\nLarge brands pay $10,000-$40,000/month. Self-service packages
2296
+ at zipdial.com start at $20/month.","high_concept":"\"Smart\" features on
2297
+ Cloud for 100% of mobile users. 400M+ zipdials, 400+ paying customers.","follower_count":61,"company_url":"http://www.zipdial.com","created_at":"2012-01-18T06:41:26Z","updated_at":"2013-01-17T00:45:46Z"}},{"id":457375,"role":"past_investor","created_at":"2013-01-08T03:18:04Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2298
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2299
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2300
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":81354,"hidden":false,"community_profile":false,"name":"Bankons","angellist_url":"https://angel.co/bankons","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/81354-7bd9a31e80851ba71a97850de53117b5-medium_jpg.jpg?buster=1334722441","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/81354-7bd9a31e80851ba71a97850de53117b5-thumb_jpg.jpg?buster=1334722441","quality":6,"product_desc":"Bankons
2301
+ provides a mobile offers service to help consumers get real time rewards that
2302
+ are better targeted via transaction history.\n\nOur mobile offers platform
2303
+ enables financial institution real time influence through geo-located transaction
2304
+ data that can be a powerful tool when married to geo-located offers.\n\nPrimarily
2305
+ a B2B service for financial institutions to increase mobile engagement, create
2306
+ a critical mass of local offers and use our patented offer targeting technology.","high_concept":"Powering
2307
+ a mobile offers service for banks to give users rewards via transaction history.","follower_count":20,"company_url":"http://www.bankons.com","created_at":"2012-04-06T15:27:16Z","updated_at":"2012-04-18T04:14:01Z"}},{"id":456869,"role":"past_investor","created_at":"2013-01-07T20:58:46Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2308
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2309
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2310
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":146025,"hidden":false,"community_profile":false,"name":"Boatbound","angellist_url":"https://angel.co/boatbound","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/146025-33270c516b44cb3a16a469932598747a-medium_jpg.jpg?buster=1355260805","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/146025-33270c516b44cb3a16a469932598747a-thumb_jpg.jpg?buster=1355260805","quality":7,"product_desc":"Boatbound
2311
+ is the first and only fully insured \"pier-to-pier\" marketplace for boat
2312
+ rentals in the US. \n\nEach rental comes equipped with $1,000,000 in insurance
2313
+ coverage, ensuring that both owners and renters are protected on the water.\n\nQuick
2314
+ Facts:\n- There are 13,000,000 registered boats in the US. \n- 75,000,000
2315
+ + people enjoy boating each year. \n- The average boat spends 95% of the
2316
+ year unused \n- Over a combined $10,000,000,000 is spent by boaters each year
2317
+ in storage & maintenance in the US\n","high_concept":"Airbnb for boat rentals","follower_count":871,"company_url":"http://Boatbound.com","created_at":"2012-12-11T20:43:08Z","updated_at":"2013-03-21T09:59:38Z"}},{"id":448399,"role":"past_investor","created_at":"2012-12-30T18:20:10Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2318
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2319
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2320
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":24153,"hidden":false,"community_profile":false,"name":"GoSpotCheck","angellist_url":"https://angel.co/gospotcheck","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24153-a6e0142de36b6329c17b2c8642902519-medium_jpg.jpg?buster=1346337392","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24153-a6e0142de36b6329c17b2c8642902519-thumb_jpg.jpg?buster=1346337392","quality":8,"product_desc":"GoSpotCheck
2321
+ gives brands real time insight to their operations across multiple locations.
2322
+ We enable their field based team members to capture information via our smartphone
2323
+ application and share it via a web-based dashboard in real time. \n\nWe help
2324
+ businesses get better street level information, faster and easier than ever
2325
+ before. ","high_concept":"We help field teams capture and share information
2326
+ via mobile","follower_count":468,"company_url":"http://www.gospotcheck.com","created_at":"2011-09-12T18:10:33Z","updated_at":"2012-12-21T19:50:01Z"}},{"id":447405,"role":"past_investor","created_at":"2012-12-28T16:47:24Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2327
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2328
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2329
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":80042,"hidden":false,"community_profile":false,"name":"Shoptouch","angellist_url":"https://angel.co/shoptouch","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80042-ac5382437f07065bcb756d3eec055816-medium_jpg.jpg?buster=1361831402","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80042-ac5382437f07065bcb756d3eec055816-thumb_jpg.jpg?buster=1361831402","quality":7,"product_desc":"Shoptouch
2330
+ is a mobile shopping and recommendation platform for retailers and brands.
2331
+ Shoptouch apps provide personalized product guidance to consumers via mobile
2332
+ apps, while enabling retailers and brands to reach consumers with relevant
2333
+ communications at the point of purchase. The first Shoptouch platform app,
2334
+ Blush for Wine, is a mobile wine shopping companion that helps you find wines
2335
+ to match your taste, occasion and budget. ","high_concept":"Mobile shopping
2336
+ and recommendation platform for retailers and brands ","follower_count":104,"company_url":"http://www.shoptouch.com","created_at":"2012-04-01T21:32:00Z","updated_at":"2013-02-27T21:35:16Z"}},{"id":439868,"role":"past_investor","created_at":"2012-12-19T23:44:08Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2337
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2338
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2339
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":44559,"hidden":false,"community_profile":false,"name":"15Five","angellist_url":"https://angel.co/15five","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/44559-438942ad75c2ed4fd4c3fd9a9547fca0-medium_jpg.jpg?buster=1326852756","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/44559-438942ad75c2ed4fd4c3fd9a9547fca0-thumb_jpg.jpg?buster=1326852756","quality":7,"product_desc":"When
2340
+ employees spend 15 minutes each week writing a report that takes their manager
2341
+ no more than 5 minutes to read, everyone stays in the loop and focused on
2342
+ what''s most important.\n\nWe help CEOs and executives to know the pulse of
2343
+ their company. With 15Five, they can surface problems, celebrate wins, discover
2344
+ great ideas and stay tuned in to morale.\n\nRecent press - Inc, TechCrunch:
2345
+ https://angel.co/15five?show_comments=true#press\n\nWhat we''re about: http://www.15five.com/philosophy.html","high_concept":"Know
2346
+ the pulse of your company; weekly employee feedback.","follower_count":634,"company_url":"http://www.15five.com","created_at":"2012-01-18T02:12:37Z","updated_at":"2012-09-19T20:43:06Z"}},{"id":439290,"role":"past_investor","created_at":"2012-12-19T20:37:26Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2347
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2348
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2349
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":130,"hidden":false,"community_profile":false,"name":"eVenues","angellist_url":"https://angel.co/evenues","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/130-92877006588603764b3c4ce79e41f7a0-medium_jpg.jpg?buster=1315771002","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/130-92877006588603764b3c4ce79e41f7a0-thumb_jpg.jpg?buster=1315771002","quality":8,"product_desc":"eVenues
2350
+ lets you easily search, compare, and book small meeting and event spaces,
2351
+ similar to Expedia, AirBnB concepts. eVenues aggregates all types of space:
2352
+ boardrooms & conference rooms, classrooms, and small event spaces (theatres,
2353
+ galleries, clubs) into destination marketplace. eVenues incents venues with
2354
+ free listings and use of meeting room manager that integrates with Outlook,
2355
+ Google Calendar, and Apple iCal.","high_concept":"AirBnB for Meeting & Event
2356
+ Space","follower_count":166,"company_url":"http://www.evenues.com","created_at":"2010-08-02T23:26:16Z","updated_at":"2012-09-24T17:21:54Z"}},{"id":439280,"role":"past_investor","created_at":"2012-12-19T20:35:53Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2357
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2358
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2359
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":71679,"hidden":false,"community_profile":false,"name":"Like
2360
+ it!","angellist_url":"https://angel.co/like-it-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/71679-4db7e6ec77e660e8921880ed8a5dad94-medium_jpg.jpg?buster=1363062030","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/71679-4db7e6ec77e660e8921880ed8a5dad94-thumb_jpg.jpg?buster=1363062030","quality":6,"product_desc":"With
2361
+ the consumer market in mind and years of experience on the field we''ve built
2362
+ a factory of high impact mobile apps. Our goal is to create beautiful self
2363
+ funding products that serve millions of people on a monthly basis.\n\nOur
2364
+ first product was instaDM a messaging platform for Instagram users that received
2365
+ over 2M downloads in less than a year.\n\nWe''re currently working on app
2366
+ number two, Like it! where we enable people to discover and share great content.
2367
+ ","high_concept":"A beautiful way to discover & collect Instagram photos.","follower_count":85,"company_url":"http://likeit.co/","created_at":"2012-02-27T00:40:49Z","updated_at":"2013-03-12T04:38:05Z"}},{"id":434425,"role":"past_investor","created_at":"2012-12-16T00:03:41Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2368
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2369
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2370
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":64699,"hidden":false,"community_profile":false,"name":"PayrollHero","angellist_url":"https://angel.co/payrollhero","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/64699-86a6c42b15ab8854593b52350ee2f4c4-medium_jpg.jpg?buster=1333493390","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/64699-86a6c42b15ab8854593b52350ee2f4c4-thumb_jpg.jpg?buster=1333493390","quality":6,"product_desc":"PayrollHero.com
2371
+ - Optimizing Work Productivity with Happiness. \n\nConsumer friendly Time,
2372
+ Attendance, Scheduling and Payroll in the cloud for web and mobile. \n\nWe
2373
+ use your employees face as our primary biometric to avoid buddy punching and
2374
+ ghost employees. These clock-in pics are further given a mood rating to establish
2375
+ an array of business intelligence to your companies corollaries between productivity
2376
+ and mood.","high_concept":"Optimizing Time, Attendance, Scheduling & Work
2377
+ Productivity w/ Happiness via iOS/web.","follower_count":237,"company_url":"http://www.payrollhero.com/","created_at":"2012-01-23T04:08:53Z","updated_at":"2013-02-20T01:26:14Z"}},{"id":429827,"role":"past_investor","created_at":"2012-12-11T18:31:19Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2378
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2379
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2380
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":31833,"hidden":false,"community_profile":false,"name":"Dabee","angellist_url":"https://angel.co/dabee","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31833-74651d8e19e0450bafaea1ee505eece4-medium_jpg.jpg?buster=1326589698","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31833-74651d8e19e0450bafaea1ee505eece4-thumb_jpg.jpg?buster=1326589698","quality":6,"product_desc":"Foreign
2381
+ buyers \u201cdiscover\u201d cool merchants and products not available in their
2382
+ country. They add these products to their storefront on Dabee (aka Hive) and
2383
+ share these discoveries with their friends & followers. \n\nWhen products
2384
+ are sold, hive owners are rewarded and Dabee takes care of the rest. (payment,
2385
+ customs, delivery)\n\nWe are addressing an $80B market (Cross-Border B2C)
2386
+ and our pilot market is Brazil, where we offer a 100% local experience","high_concept":"Destination
2387
+ site for foreign buyers to discover and buy products","follower_count":44,"company_url":"http://www.dabee.com.br","created_at":"2012-01-13T15:31:10Z","updated_at":"2012-12-11T18:57:18Z"}},{"id":419131,"role":"past_investor","created_at":"2012-12-02T08:35:11Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2388
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2389
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2390
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":6328,"hidden":false,"community_profile":false,"name":"LocBox","angellist_url":"https://angel.co/locbox","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/6328-e508e55736816711a213df008551339d-medium_jpg.jpg?buster=1348886102","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/6328-e508e55736816711a213df008551339d-thumb_jpg.jpg?buster=1348886102","quality":8,"product_desc":"LocBox
2391
+ helps high-margin local businesses (plastic surgeons, B&Bs, Benz dealerships,
2392
+ gokart racing tracks, etc.) generate revenue and foot traffic with targeted
2393
+ campaigns that run on multiple channels - Email, FB, Twitter, Text - all from
2394
+ one dashboard. \n\nWe bring businesses from the Dark Ages of unsustainable
2395
+ discounting and spray-and-pray Email Mkting into a sustainable revenue plan.
2396
+ \n\nOur internal targeting technology helps us get customers without a wildly
2397
+ inefficient feet-on-street model.\n\n","high_concept":"Customer Retention
2398
+ And Acquisition For Local Businesses","follower_count":268,"company_url":"http://www.getlocbox.com","created_at":"2011-03-16T07:30:49Z","updated_at":"2012-10-01T18:11:42Z"}},{"id":406528,"role":"past_investor","created_at":"2012-11-20T17:37:21Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2399
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2400
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2401
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":97116,"hidden":false,"community_profile":false,"name":"Cucumbertown","angellist_url":"https://angel.co/cucumbertown","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/97116-83b23a097a3b0703d3c117c9061f6c9e-medium_jpg.jpg?buster=1339682433","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/97116-83b23a097a3b0703d3c117c9061f6c9e-thumb_jpg.jpg?buster=1339682433","quality":8,"product_desc":"Delightfully
2402
+ simple recipe blogging platform that allows amateur cooks to develop devoted
2403
+ followings.\n\nArdent, vocal community built using curation mechanics with
2404
+ over 30 percent contributing, returning over 5 days per week. 75% of users
2405
+ return to the site within 30 days. \n\nHighly User Experience focused. In-depth
2406
+ insights & research project based. \n\n\n","high_concept":"Cucumbertown is
2407
+ a delightfully simple and addictive recipe-blogging-platform","follower_count":166,"company_url":"http://www.cucumbertown.com/","created_at":"2012-06-14T03:42:34Z","updated_at":"2012-11-02T18:38:41Z"}},{"id":404661,"role":"incubator","created_at":"2012-11-19T07:39:39Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2408
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2409
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2410
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":62639,"hidden":false,"community_profile":false,"name":"Chirpme.com","angellist_url":"https://angel.co/chirpme-com","logo_url":"https://angel.co/images/shared/nopic_startup.png","thumb_url":"https://angel.co/images/shared/nopic_startup.png","quality":9,"product_desc":null,"high_concept":null,"follower_count":21,"company_url":null,"created_at":"2012-01-18T06:48:26Z","updated_at":"2012-10-09T17:34:40Z"}},{"id":401391,"role":"past_investor","created_at":"2012-11-15T07:14:03Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2411
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2412
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2413
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":122672,"hidden":false,"community_profile":false,"name":"Forever
2414
+ Snap - Wedding Snap","angellist_url":"https://angel.co/forever-snap-wedding-snap","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122672-874819ef670820c8b5c8b64e54b93f26-medium_jpg.jpg?buster=1355991804","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122672-874819ef670820c8b5c8b64e54b93f26-thumb_jpg.jpg?buster=1355991804","quality":7,"product_desc":"Forever
2415
+ Snap is the fastest and easiest way to collect all your event''s photos and
2416
+ videos in one place. \n\nOver 3000 people have payed more than $100 each to
2417
+ capture all their memories at\n\n- Weddings \n- Birthday Parties\n- Class
2418
+ reunions\n- Family travels\n- Company events\n- etc. \n\nFirst was WeddingSnap.com
2419
+ \n& now due to high demand we are expanding to other verticals:\nForeverSnap.com
2420
+ \n\n\nOur team comes from: Italy, Iran, Chile, Spain, South Africa, Brazil,
2421
+ & the U.S. Everyone lives in the bay area.","high_concept":"Crowd-sourcing
2422
+ your event''s Photos & Videos in ONE place.","follower_count":79,"company_url":"http://www.WeddingSnap.com","created_at":"2012-09-15T07:56:01Z","updated_at":"2013-01-29T07:45:53Z"}},{"id":392469,"role":"past_investor","created_at":"2012-11-06T04:15:10Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2423
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2424
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2425
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":28225,"hidden":false,"community_profile":false,"name":"Microryza","angellist_url":"https://angel.co/microryza","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/28225-74bc140079116a2044af8a7315fbfb0c-medium_jpg.jpg?buster=1348377338","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/28225-74bc140079116a2044af8a7315fbfb0c-thumb_jpg.jpg?buster=1348377338","quality":6,"product_desc":"Every
2426
+ great discovery only happens once. Be there for it. \n\nMicroryza is a crowdfunding
2427
+ platform for scientific research.","high_concept":"Kickstarter for Research","follower_count":89,"company_url":"http://www.microryza.com","created_at":"2011-11-11T01:23:59Z","updated_at":"2013-03-19T06:39:21Z"}},{"id":392285,"role":"incubator","created_at":"2012-11-06T00:01:07Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2428
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2429
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2430
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":123324,"hidden":false,"community_profile":false,"name":"Tapshot,
2431
+ Makers of Videokits","angellist_url":"https://angel.co/tapshot-makers-of-videokits","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/123324-fdccc44628c03fbb78685b5f3cfb0f1a-medium_jpg.jpg?buster=1352428766","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/123324-fdccc44628c03fbb78685b5f3cfb0f1a-thumb_jpg.jpg?buster=1352428766","quality":6,"product_desc":"The
2432
+ Videokits app offers fun and easy mobile video creation for all types of events
2433
+ and activities. Creative kits guide people through shooting and assembling
2434
+ great videos of everything from parties, holidays, and vacations to youth
2435
+ sports events, restaurant reviews, product reviews, and cooking demos. On
2436
+ the surface, our software guides users through the process of capturing events
2437
+ and activities; underneath, it generates structured video data for future
2438
+ aggregation, cataloging, and remixing.","high_concept":"Guided Mobile Video
2439
+ Creation","follower_count":26,"company_url":"http://www.videokits.com","created_at":"2012-09-17T19:14:48Z","updated_at":"2013-02-01T00:11:35Z"}},{"id":387229,"role":"past_investor","created_at":"2012-10-31T17:05:22Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2440
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2441
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2442
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":30767,"hidden":false,"community_profile":false,"name":"Moveline","angellist_url":"https://angel.co/moveline","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30767-92a8ce5acae4318a7e9450a19bae30ff-medium_jpg.jpg?buster=1324652233","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30767-92a8ce5acae4318a7e9450a19bae30ff-thumb_jpg.jpg?buster=1324652233","quality":8,"product_desc":"As
2443
+ seen in Forbes, The New York Times, TechCrunch, Mashable, Lifehacker, CNNmoney...\n\nMoveline
2444
+ lets people take a video of their stuff, and get guaranteed quotes from top
2445
+ moving companies.\n\nFor moving companies, because Moveline does the inventory,
2446
+ long-distance moving companies are no longer tied to their sales regions:
2447
+ any moving company can work with any customer, anywhere.\n\nMoveline is bringing
2448
+ transparency to the moving industry, and using technology to put customers
2449
+ in control.","high_concept":"The best way to move - for the 40M people who
2450
+ spend $25B on moving services","follower_count":259,"company_url":"http://www.moveline.com","created_at":"2011-12-23T14:33:36Z","updated_at":"2013-03-12T14:09:44Z"}},{"id":380857,"role":"past_investor","created_at":"2012-10-23T20:57:28Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2451
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2452
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2453
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":122276,"hidden":false,"community_profile":false,"name":"Nuzzel","angellist_url":"https://angel.co/nuzzel","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122276-2aee84dde7187ace62f25eb8925da16f-medium_jpg.jpg?buster=1348105375","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122276-2aee84dde7187ace62f25eb8925da16f-thumb_jpg.jpg?buster=1348105375","quality":8,"product_desc":"Nuzzel
2454
+ is the super-easy way to see news from your friends.\n\nNuzzel helps you to
2455
+ manage the overload of social sharing, filter out the noise, and make social
2456
+ curation more useful.\n\nNuzzel is simple, social, real-time, and platform
2457
+ agnostic. Nuzzel works on web, mobile, and email, with no signup, setup,
2458
+ or install required. Just login with Twitter or Facebook.\n","high_concept":"The
2459
+ super-easy way to see news from your friends","follower_count":630,"company_url":"http://beta.nuzzel.com/","created_at":"2012-09-13T22:33:15Z","updated_at":"2013-02-05T23:43:37Z"}},{"id":380779,"role":"past_investor","created_at":"2012-10-23T19:34:19Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2460
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2461
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2462
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":2484,"hidden":false,"community_profile":false,"name":"Tip
2463
+ or Skip","angellist_url":"https://angel.co/tip-or-skip","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2484-249d3b3187092919c07d810a3f8bf631-medium_jpg.jpg?buster=1351023317","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2484-249d3b3187092919c07d810a3f8bf631-thumb_jpg.jpg?buster=1351023317","quality":7,"product_desc":"Tip
2464
+ or Skip is the mobile shopping game where you compete to be a top tastemaker
2465
+ by spotting great products. Tip what you like, skip what you don''t. If your
2466
+ followers agree, you earn points called \"sway.\" Players and products with
2467
+ the most sway rise to the top. Coming soon: exchange sway for free products,
2468
+ and buy more sway if you need it. For brands, buy and use sway to increase
2469
+ exposure of your products.\n\nTip or Skip is based in the heart of the fashion
2470
+ district in NYC.","high_concept":"An addictive shopping app and social network","follower_count":95,"company_url":"http://www.tiporskip.com","created_at":"2011-02-09T17:05:53Z","updated_at":"2012-10-23T20:21:46Z"}},{"id":379659,"role":"incubator","created_at":"2012-10-22T20:11:15Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2471
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2472
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2473
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":2269,"hidden":false,"community_profile":false,"name":"Pick1","angellist_url":"https://angel.co/pick1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2269-b04f6feeec62623ae9934337803a3526-medium_jpg.jpg?buster=1327372315","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2269-b04f6feeec62623ae9934337803a3526-thumb_jpg.jpg?buster=1327372315","quality":6,"product_desc":"Know
2474
+ Your Customers\n\nIndividual Opinions meet Real-time Targeted Marketing\n\nPick1
2475
+ merges an individual''s opinions with their entire social media presence,
2476
+ enabling brands to efficiently know, understand, and successfully target their
2477
+ customers.\n\nBased on questions insights actions, engaging in a multi-channel
2478
+ context, collecting multi-dimensional social opinions.\n\nPick1 dynamically
2479
+ aggregates/clusters the collected information to deliver actionable data,
2480
+ to retarget audience and improve ROI.","high_concept":"Know Your Customers
2481
+ - Individual Opinions meet Real-time Targeted Marketing","follower_count":238,"company_url":"http://www.pick1.com","created_at":"2011-02-01T07:59:27Z","updated_at":"2013-02-06T23:13:46Z"}},{"id":379125,"role":"past_investor","created_at":"2012-10-22T05:47:59Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2482
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2483
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2484
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":122643,"hidden":false,"community_profile":false,"name":"everbill","angellist_url":"https://angel.co/everbill","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122643-647f4c35406e9d6e357488e6d1435fb5-medium_jpg.jpg?buster=1348982740","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122643-647f4c35406e9d6e357488e6d1435fb5-thumb_jpg.jpg?buster=1348982740","quality":5,"product_desc":"everbill
2485
+ is a Silicon Valley based startup in the field of online invoicing. At www.everbill.com,
2486
+ startups and SMEs can easily create invoices, estimates, purchase orders,
2487
+ and similar documents via any connected device and exchange them with customers
2488
+ and suppliers. everbill is a SaaS application, therefore everbill\u00b4s users
2489
+ don\u2019t have to install, maintain, or update local software. ","high_concept":"SAP
2490
+ for startups and SMBs","follower_count":149,"company_url":"http://www.everbill.com","created_at":"2012-09-15T03:51:16Z","updated_at":"2013-03-14T15:53:49Z"}},{"id":377605,"role":"past_investor","created_at":"2012-10-19T06:01:41Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2491
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2492
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2493
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":79594,"hidden":false,"community_profile":false,"name":"Maker","angellist_url":"https://angel.co/maker","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/79594-d870281ef95b67595b253329ac452743-medium_jpg.jpg?buster=1333082447","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/79594-d870281ef95b67595b253329ac452743-thumb_jpg.jpg?buster=1333082447","quality":7,"product_desc":"We''re
2494
+ building a platform for makers to showcase their creations, build their personal
2495
+ brand and connect directly with their markets. ","high_concept":"Discover
2496
+ the people side of products.","follower_count":143,"company_url":"http://maker.me/","created_at":"2012-03-30T04:38:21Z","updated_at":"2013-03-21T05:38:47Z"}},{"id":373054,"role":"incubator","created_at":"2012-10-14T07:22:26Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2497
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2498
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2499
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":122262,"hidden":false,"community_profile":false,"name":"wideo","angellist_url":"https://angel.co/wideo","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122262-44c995685c06fbce2ff58f95123176bf-medium_jpg.jpg?buster=1347589499","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122262-44c995685c06fbce2ff58f95123176bf-thumb_jpg.jpg?buster=1347589499","quality":5,"product_desc":"Wideo
2500
+ is a very simple, intuitive online tool that allows anyone to make short animation
2501
+ videos so that they can share their ideas with the world. It\u00b4s like a
2502
+ prezi.com to make animated videos.","high_concept":"Prezi for making animated
2503
+ videos","follower_count":97,"company_url":"http://wideo.co","created_at":"2012-09-13T22:24:32Z","updated_at":"2012-11-06T23:49:30Z"}},{"id":373032,"role":"past_investor","created_at":"2012-10-14T05:54:41Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2504
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2505
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2506
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":82190,"hidden":false,"community_profile":false,"name":"Social
2507
+ Tables","angellist_url":"https://angel.co/social-tables","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/82190-268c07b6ad1f7af924c6a7ecca582568-medium_jpg.jpg?buster=1334078880","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/82190-268c07b6ad1f7af924c6a7ecca582568-thumb_jpg.jpg?buster=1334078880","quality":7,"product_desc":"An
2508
+ event planning and community building platform with the world''s first social
2509
+ seating chart. We''re reinventing the way events are planned and attended!","high_concept":"Event
2510
+ planning and community building platform","follower_count":145,"company_url":"http://www.socialtables.com/","created_at":"2012-04-10T16:17:14Z","updated_at":"2012-12-01T23:28:51Z"}},{"id":372317,"role":"incubator","created_at":"2012-10-12T20:18:36Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2511
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2512
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2513
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":74754,"hidden":false,"community_profile":false,"name":"Instamojo","angellist_url":"https://angel.co/instamojo-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/74754-25c89bc8083780838916c9fbc5d2d4a5-medium_jpg.jpg?buster=1362816398","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/74754-25c89bc8083780838916c9fbc5d2d4a5-thumb_jpg.jpg?buster=1362816398","quality":6,"product_desc":"We
2514
+ are reinventing horizontal & vertical e-commerce platforms from the viewpoint
2515
+ of design (dead simple UI/UX), fulfillment (proprietary digital goods delivery
2516
+ system) & distribution (peer to peer) with a proven team of 20+ yrs of experience,
2517
+ market knowledge & deep technical know-how in similar domain.\n\nWith that,
2518
+ folks are selling their digital creations like ebooks, reports, comic books,
2519
+ music, software, templates etc by simply sharing a link to make $$$ instantly.\n\n","high_concept":"Reinventing
2520
+ e-commerce platforms; starting with digital goods ($36B industry)","follower_count":175,"company_url":"http://instamojo.com","created_at":"2012-03-07T22:03:14Z","updated_at":"2013-03-09T08:06:40Z"}},{"id":369421,"role":"incubator","created_at":"2012-10-09T18:28:57Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2521
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2522
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2523
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":122184,"hidden":false,"community_profile":false,"name":"iDreamBooks","angellist_url":"https://angel.co/idreambooks","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122184-0b31a130de066de38a2e377e90369fd9-medium_jpg.jpg?buster=1354150294","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122184-0b31a130de066de38a2e377e90369fd9-thumb_jpg.jpg?buster=1354150294","quality":6,"product_desc":"RottenTomatoes
2524
+ for books. We aggregate editorial or critic reviews from sources like NYTimes
2525
+ or WashingtonPost to create an authentic book recommendation. Our goal is
2526
+ to become the industry standard for book ratings across the internet.","high_concept":"RottenTomatoes
2527
+ for Books","follower_count":125,"company_url":"http://idreambooks.com","created_at":"2012-09-13T19:44:57Z","updated_at":"2013-03-19T06:37:05Z"}},{"id":367682,"role":"incubator","created_at":"2012-10-07T23:39:37Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2528
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2529
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2530
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":26411,"hidden":false,"community_profile":false,"name":"Club
2531
+ W","angellist_url":"https://angel.co/club-w","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26411-2fdb8af3f3ac8ad2cbb1c51bdf36863a-medium_jpg.jpg?buster=1318898466","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26411-2fdb8af3f3ac8ad2cbb1c51bdf36863a-thumb_jpg.jpg?buster=1318898466","quality":7,"product_desc":"Club
2532
+ W is an entirely new culture of intrepid, unassuming wine drinkers. Blending
2533
+ the ideas of traditional wine club with a tech-focused business model, Club
2534
+ W is breathing new life into the wine industry by focusing on high-quality
2535
+ online content and interactive social media. Featuring the hottest wines on
2536
+ the market, Club W reaches customers in a way that feels friendly, relatable
2537
+ and accessible while maintaing enough authority to be a respected voice within
2538
+ the wine community. \n\n","high_concept":"eWinery ","follower_count":141,"company_url":"http://www.clubw.com","created_at":"2011-10-17T23:15:41Z","updated_at":"2013-01-29T16:27:47Z"}},{"id":367346,"role":"past_investor","created_at":"2012-10-07T10:16:37Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2539
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2540
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2541
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":127726,"hidden":false,"community_profile":false,"name":"femeninas","angellist_url":"https://angel.co/femeninas","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127726-4709d3fcbad5db0e711823528fc26879-medium_jpg.jpg?buster=1358572561","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127726-4709d3fcbad5db0e711823528fc26879-thumb_jpg.jpg?buster=1358572561","quality":6,"product_desc":"femeninas.com
2542
+ is a women and fashion destination brand\nMoving into a social engagement
2543
+ platform for women and user generated content,where designers and brands can
2544
+ interact with the community. \nDelivering high quality personalized content\nContent
2545
+ creation is on demand, based on real time research out of internet searches
2546
+ and social information\nMaking the connection between brands and consumers
2547
+ more efficient and powerful","high_concept":"Fashion and women scalable content
2548
+ generation model. Brands to consumer SEO and Social","follower_count":121,"company_url":"http://www.femeninas.com","created_at":"2012-10-04T17:33:41Z","updated_at":"2013-03-02T07:07:37Z"}},{"id":366902,"role":"past_investor","created_at":"2012-10-06T00:40:50Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2549
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2550
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2551
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":32654,"hidden":false,"community_profile":false,"name":"Crocodoc","angellist_url":"https://angel.co/crocodoc","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32654-72300d16cb85a6cd165f3f3d3fac9ee1-medium_jpg.jpg?buster=1335898926","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32654-72300d16cb85a6cd165f3f3d3fac9ee1-thumb_jpg.jpg?buster=1335898926","quality":8,"product_desc":"Crocodoc
2552
+ converts Microsoft Office and PDF documents to HTML5 so your users can view
2553
+ and collaborate right in your web app. \n\nWe''ve developed the world''s most
2554
+ advanced web-based document viewing and collaboration technology for Microsoft
2555
+ Office and PDF files, built on open standards such as HTML5 and CSS3. We make
2556
+ it easy for companies to create amazing experiences for their users with technology
2557
+ that is secure, scalable, and trusted by top brands in the consumer and enterprise
2558
+ space. ","high_concept":"Easy document embedding and collaboration using HTML5","follower_count":71,"company_url":"http://www.crocodoc.com","created_at":"2012-01-17T23:28:21Z","updated_at":"2012-11-28T18:35:15Z"}},{"id":366065,"role":"incubator","created_at":"2012-10-05T00:29:09Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2559
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2560
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2561
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":127824,"hidden":false,"community_profile":false,"name":"Qual
2562
+ Canal","angellist_url":"https://angel.co/qual-canal","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127824-e99695ed223a5dbb08be5644ba56fed3-medium_jpg.jpg?buster=1349395147","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127824-e99695ed223a5dbb08be5644ba56fed3-thumb_jpg.jpg?buster=1349395147","quality":4,"product_desc":"Qual
2563
+ Canal helps broadcasters increase their shows ratings by increasing buzz about
2564
+ them in social media. \n\nFor brands and agencies, we help them adjust their
2565
+ strategies to get stronger engagement with their brand through the course
2566
+ of the TV program, and subsequently adjust their media buying strategies to
2567
+ optimize their ROI.","high_concept":"Social TV ratings and engagement plataform","follower_count":92,"company_url":"http://qualcanal.tv","created_at":"2012-10-04T23:59:09Z","updated_at":"2013-01-28T01:57:24Z"}},{"id":366034,"role":"incubator","created_at":"2012-10-04T23:58:13Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2568
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2569
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2570
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":127821,"hidden":false,"community_profile":false,"name":"UniPay","angellist_url":"https://angel.co/unipay","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127821-aba5821eaa65ce72025f6291ac3f3a94-medium_jpg.jpg?buster=1349918868","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127821-aba5821eaa65ce72025f6291ac3f3a94-thumb_jpg.jpg?buster=1349918868","quality":5,"product_desc":"UniPay
2571
+ allows anyone to accept credit cards in just a few steps by using their mobile
2572
+ devices. No merchant account needed, no big fees. Getting paid in Brazil is
2573
+ a pain and we''re making it simple and safe.\n\nNo hardware is required: just
2574
+ download our app, sign up and you''re ready to receive payments from your
2575
+ customers.","high_concept":"We take the hassle out of accepting credit cards
2576
+ in Brazil through mobile payment.","follower_count":147,"company_url":"http://www.unipay.com.br","created_at":"2012-10-04T23:55:42Z","updated_at":"2012-11-01T18:26:37Z"}},{"id":365869,"role":"incubator","created_at":"2012-10-04T22:47:17Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2577
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2578
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2579
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":30557,"hidden":false,"community_profile":false,"name":"Chewse","angellist_url":"https://angel.co/chewse","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30557-0e21e57c124019b44185d06a1158d379-medium_jpg.jpg?buster=1356033558","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30557-0e21e57c124019b44185d06a1158d379-thumb_jpg.jpg?buster=1356033558","quality":7,"product_desc":"We''ve
2580
+ already fed 20,000 hungry employees...\n\nChewse is a B2B marketplace for
2581
+ corporate meals. In 2 test territories, we feed employees from companies like
2582
+ PwC, USC, and Wells Fargo. We''ve got a waiting list of 700 companies ready
2583
+ for us to expand.\n\nChewse understands admins, who control a $33B market
2584
+ of group meals.\n\nIt''s time to delight admins to order easily for groups.
2585
+ \nIt''s time to empower restaurants with untapped revenue.\nLet''s take a
2586
+ big bite out of a big market.\n\n\n\n","high_concept":"Big groups. Big meals.
2587
+ Thousands fed.","follower_count":412,"company_url":"http://www.chewse.com/","created_at":"2011-12-19T19:54:49Z","updated_at":"2013-02-26T06:58:34Z"}},{"id":365713,"role":"incubator","created_at":"2012-10-04T21:18:39Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2588
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2589
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2590
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":97716,"hidden":false,"community_profile":false,"name":"Import2","angellist_url":"https://angel.co/import2","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/97716-9c61a8e12236a6b2d3f99a68c336f0d3-medium_jpg.jpg?buster=1352251766","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/97716-9c61a8e12236a6b2d3f99a68c336f0d3-thumb_jpg.jpg?buster=1352251766","quality":7,"product_desc":"Import2
2591
+ is an automated online data migration service. \n\n500+ migrations, customers
2592
+ including Zillow, Disqus, MediaSpike \n\nAnnual churn for average SaaS software
2593
+ service is 5%-10%. E.g in CRM market it means $900M-$1.8B worth of customers
2594
+ are moving their data to a new CRM software every year. \n\nToday data migration
2595
+ is done by IT consultants. We automate data migration making it x10 less expensive.
2596
+ \n\nWe charge one time fee of $299-$999 for business and $12-$49 for consumer
2597
+ data migration.\n\n","high_concept":"1-Click Data Migration","follower_count":60,"company_url":"http://www.import2.com","created_at":"2012-06-17T16:23:51Z","updated_at":"2013-02-27T21:03:13Z"}}],"total":344,"per_page":50,"page":1,"last_page":7}'
2598
+ http_version: !!null
2599
+ recorded_at: Thu, 21 Mar 2013 12:46:22 GMT
2600
+ - request:
2601
+ method: get
2602
+ uri: https://api.angel.co/1/startup_roles?user_id=2850&direction=outgoing&v=1
2603
+ body:
2604
+ encoding: US-ASCII
2605
+ string: ''
2606
+ headers:
2607
+ Accept:
2608
+ - application/json
2609
+ User-Agent:
2610
+ - AngellistApi Ruby Gem 1.0.3
2611
+ response:
2612
+ status:
2613
+ code: 200
2614
+ message: !!null
2615
+ headers:
2616
+ cache-control:
2617
+ - private, max-age=0, must-revalidate
2618
+ content-type:
2619
+ - application/json; charset=utf-8
2620
+ date:
2621
+ - Thu, 21 Mar 2013 14:52:56 GMT
2622
+ etag:
2623
+ - ! '"7639abb8e27dd5b5b87d68050078e85b"'
2624
+ server:
2625
+ - nginx
2626
+ status:
2627
+ - 200 OK
2628
+ vary:
2629
+ - Accept-Encoding
2630
+ x-ratelimit-limit:
2631
+ - '1000'
2632
+ x-ratelimit-remaining:
2633
+ - '1000'
2634
+ x-runtime:
2635
+ - '1995'
2636
+ transfer-encoding:
2637
+ - chunked
2638
+ connection:
2639
+ - Close
2640
+ body:
2641
+ encoding: ASCII-8BIT
2642
+ string: ! '{"startup_roles":[{"id":565659,"role":"past_investor","created_at":"2013-03-15T20:19:59Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2643
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2644
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2645
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":132132,"hidden":false,"community_profile":false,"name":"YaSabe","angellist_url":"https://angel.co/yasabe","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/132132-5680ce4205c04b5aa3db3a282de2685c-medium_jpg.jpg?buster=1363379078","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/132132-5680ce4205c04b5aa3db3a282de2685c-thumb_jpg.jpg?buster=1363379078","quality":6,"product_desc":"YaSabe
2646
+ is the premier local search destination for businesses, coupons and jobs that
2647
+ caters to Hispanic consumers. We connect businesses, content publishers, and
2648
+ advertisers to the collective buying power of U.S. Hispanics.\n\nThrough syndicated
2649
+ bilingual content, revenue opportunities, and access to expanded Hispanic
2650
+ audiences, YaSabe helps its partners drive in-depth, lasting cultural and
2651
+ community engagement with one of the nation\u2019s fastest growing, most lucrative
2652
+ markets.","high_concept":"Local search destination catering to US Hispanic
2653
+ consumers.","follower_count":19,"company_url":"http://www.yasabe.com/en","created_at":"2012-10-25T14:13:37Z","updated_at":"2013-03-15T20:24:42Z"}},{"id":560156,"role":"incubator","created_at":"2013-03-12T20:53:53Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2654
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2655
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2656
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":21214,"hidden":false,"community_profile":false,"name":"Babelverse","angellist_url":"https://angel.co/babelverse","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21214-0838287330dca28d837b576df65ec51d-medium_jpg.jpg?buster=1348117539","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21214-0838287330dca28d837b576df65ec51d-thumb_jpg.jpg?buster=1348117539","quality":7,"product_desc":"Babelverse
2657
+ is an award winning startup (LeWeb''11, TheNextWeb''12, TechCrunch Disrupt''12)
2658
+ and seeing great traction. \n\nThe first solution for people-powered real-time
2659
+ interpretation (crowd-sourced & pro).\n\nA platform to enable people in various
2660
+ situations to remotely obtain on-the-spot interpretation, in any language.
2661
+ \n\nThe universal translator we''ve all been waiting for!\n\nhttp://www.fastcompany.com/1798732/translate-this-babelverse-wants-to-put-a-human-interpreter-in-everyones-pocket","high_concept":"On-demand
2662
+ voice translation by pro interpreters & bilinguals, in any language & situation","follower_count":281,"company_url":"http://babelverse.com","created_at":"2011-07-18T23:18:24Z","updated_at":"2013-03-16T01:18:57Z"}},{"id":546944,"role":"past_investor","created_at":"2013-03-05T04:38:17Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2663
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2664
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2665
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":98033,"hidden":false,"community_profile":false,"name":"Manicube","angellist_url":"https://angel.co/manicube","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/98033-d1134b10ba13edec45570fb92f22dfca-medium_jpg.jpg?buster=1348155196","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/98033-d1134b10ba13edec45570fb92f22dfca-thumb_jpg.jpg?buster=1348155196","quality":6,"product_desc":"We
2666
+ offer 15-minute, $15 manicures to professional women at their offices. We
2667
+ liaise with HR managers to bring licensed nail technicians in on a weekly
2668
+ basis. Employees book appointments directly on our website, our payments are
2669
+ cashless, and our service is elevated-- we stock premium nail polish brands,
2670
+ use strict sanitation procedures and provide iPad content at every station.
2671
+ For every manicure, we contribute $1 to a micro loan to a female entrepreneur
2672
+ in the developing world through Kiva. ","high_concept":"Making working professionals''
2673
+ lives easier starting with 15 min manicures at the office.","follower_count":7,"company_url":"http://www.manicube.com","created_at":"2012-06-18T22:00:29Z","updated_at":"2012-09-20T21:54:27Z"}},{"id":531846,"role":"past_investor","created_at":"2013-02-25T23:25:15Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2674
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2675
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2676
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":174290,"hidden":false,"community_profile":false,"name":"Sightly","angellist_url":"https://angel.co/sightly","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/174290-773ab66d1ac41c8302281557e0e5ae7f-medium_jpg.jpg?buster=1362329448","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/174290-773ab66d1ac41c8302281557e0e5ae7f-thumb_jpg.jpg?buster=1362329448","quality":7,"product_desc":"Our
2677
+ local video platform connects consumers & nearby businesses in a faster, more
2678
+ engaging way. Our platform lets consumers experience the business before
2679
+ they go by seeing videos captured by Sightly at no cost to the business. And
2680
+ we help businesses reach local customers by distributing their video via video
2681
+ SEO, SEM, syndicated channels & in-stream YouTube video ads as Google\u2019s
2682
+ only local video partner. Businesses can track views, clicks & conversions
2683
+ via an online account center.","high_concept":"Video platform for local search
2684
+ & discovery","follower_count":170,"company_url":"http://www.sightly.com","created_at":"2013-02-25T23:07:52Z","updated_at":"2013-03-13T22:15:05Z"}},{"id":525663,"role":"past_investor","created_at":"2013-02-22T10:18:21Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2685
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2686
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2687
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":172453,"hidden":false,"community_profile":false,"name":"Snapsheet","angellist_url":"https://angel.co/snapsheet-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/172453-ab54da25eec3eee49e6232ec92ff1295-medium_jpg.jpg?buster=1361497981","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/172453-ab54da25eec3eee49e6232ec92ff1295-thumb_jpg.jpg?buster=1361497981","quality":6,"product_desc":"Snapsheet
2688
+ provides mobile branded apps to help auto insurance carriers settle claims
2689
+ in hours instead of days. Our self-service mobile app enables customers to
2690
+ take photos of their damaged vehicles on their own time without the hassle
2691
+ of scheduling an adjuster or a trip to a body shop. The customer can view
2692
+ their carrier approved estimate, schedule an appointment with a body shop
2693
+ or even take an EFT cash payout all from their carrier''s mobile app. ","high_concept":"Mobile
2694
+ self-service claims solution","follower_count":13,"company_url":"http://www.snapsheetapp.com","created_at":"2013-02-22T01:32:57Z","updated_at":"2013-02-22T01:53:08Z"}},{"id":519118,"role":"past_investor","created_at":"2013-02-19T05:24:45Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2695
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2696
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2697
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":26348,"hidden":false,"community_profile":false,"name":"TapCanvas","angellist_url":"https://angel.co/tapcanvas","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26348-d2b87b0dbf5b2bb3aa61d795993b6f0d-medium_jpg.jpg?buster=1361988829","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26348-d2b87b0dbf5b2bb3aa61d795993b6f0d-thumb_jpg.jpg?buster=1361988829","quality":7,"product_desc":"TapCanvas
2698
+ is a platform for building \"contextual\" HTML5 mobile apps without programming.
2699
+ Contextual apps are tied to a place, time, or object, and they can be built
2700
+ in as little as 60 seconds using beautiful pre-made templates.\n\nAOL uses
2701
+ TapCanvas to create mobile conference apps for their events. Vornado plans
2702
+ to use TapCanvas to create maintenance and warranty guides for the fans and
2703
+ heaters they sell. These apps run on the web, so they can be accessed easily
2704
+ by URL, QR code, or NFC chip.","high_concept":"Contextual mobile apps.","follower_count":130,"company_url":"http://www.tapcanvas.com","created_at":"2011-10-17T05:53:25Z","updated_at":"2013-03-13T17:36:24Z"}},{"id":512935,"role":"past_investor","created_at":"2013-02-14T23:53:46Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2705
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2706
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2707
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":125280,"hidden":false,"community_profile":false,"name":"SupplyHog","angellist_url":"https://angel.co/supplyhog","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/125280-2ec744eae29274d4a260b622d9a3fc81-medium_jpg.jpg?buster=1348494949","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/125280-2ec744eae29274d4a260b622d9a3fc81-thumb_jpg.jpg?buster=1348494949","quality":7,"product_desc":"Our
2708
+ platform brings transparency and efficiency to a market dominated by phone
2709
+ calls, shopping trips, fax machines, endless negotiations and personalized
2710
+ pricing. We throw in free drop shipping and contractor level pricing. In short,
2711
+ our platform takes care of the busy work and provides better value to boot.
2712
+ \n","high_concept":"Amazon/Zappos of Building Supplies.","follower_count":349,"company_url":"http://www.supplyhog.com","created_at":"2012-09-24T13:55:51Z","updated_at":"2013-03-21T04:25:00Z"}},{"id":505140,"role":"past_investor","created_at":"2013-02-11T02:31:45Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2713
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2714
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2715
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":83689,"hidden":false,"community_profile":false,"name":"Cubie","angellist_url":"https://angel.co/cubie","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83689-87d0cfb9e83f54b95f9c79f10047c881-medium_jpg.jpg?buster=1334638926","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83689-87d0cfb9e83f54b95f9c79f10047c881-thumb_jpg.jpg?buster=1334638926","quality":6,"product_desc":"Cubie
2716
+ Messenger (http://cubie.com) is a mobile messaging app launched in Mar ''12
2717
+ on iPhone and Android, which got 5.5 million users within 10 months.\n\nCubie
2718
+ hit Top 1 (total) in 10 Asian and Middle East countries, and No.1 (social)
2719
+ in 16 countries. Cubie also hit No.13 in US and No.10 in Japan (social).\n\nCubie
2720
+ allows to send drawings while chatting, and offers tons of animated emoji,
2721
+ and can share photos, videos and voice.\n","high_concept":"5.5M+ users in
2722
+ 10 months. WhatsApp + drawing + fun.","follower_count":155,"company_url":"http://cubie.com","created_at":"2012-04-17T05:02:06Z","updated_at":"2013-02-06T18:01:49Z"}},{"id":505055,"role":"past_investor","created_at":"2013-02-11T01:51:53Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2723
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2724
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2725
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":165758,"hidden":false,"community_profile":false,"name":"MyTime","angellist_url":"https://angel.co/mytime","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/165758-93d122cf14fda10d1ab1e065f460e016-medium_jpg.jpg?buster=1360597615","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/165758-93d122cf14fda10d1ab1e065f460e016-thumb_jpg.jpg?buster=1360597615","quality":7,"product_desc":"An
2726
+ online destination to allow consumers to conveniently book open appointment
2727
+ times from top local businesses at http://www.mytime.com and through our mobile
2728
+ apps. Consumers can view real-time appointment availability across thousands
2729
+ of businesses and receive instant confirmations when they purchase services
2730
+ through MyTime. \n\nThe product is now available in the Los Angeles area,
2731
+ where it features over 500,000 open appointments available for booking.","high_concept":"Find
2732
+ and book open appointments for nearby local businesses. Book and pay with
2733
+ 1-click.","follower_count":53,"company_url":"http://www.mytime.com","created_at":"2013-02-07T09:08:26Z","updated_at":"2013-02-11T15:46:58Z"}},{"id":504094,"role":"past_investor","created_at":"2013-02-10T01:45:16Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2734
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2735
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2736
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":1693,"hidden":false,"community_profile":false,"name":"GoodPeople","angellist_url":"https://angel.co/goodpeople","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1693-ac0f2dedfbcfcc50808781c3c2a84c19-medium_jpg.jpg?buster=1321913782","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1693-ac0f2dedfbcfcc50808781c3c2a84c19-thumb_jpg.jpg?buster=1321913782","quality":7,"product_desc":"GoodPeople
2737
+ is a social marketplace for the action sports lifestyle.\n\nFounded 3 years
2738
+ ago, GoodPeople was selected as an Endeavor Global Company in 2012 and is
2739
+ currently the largest action sports community in Argentina. They currently
2740
+ have partnerships with the X Games and many of the most well known brands
2741
+ in the industry. Their platform helps brands to promote and sell products
2742
+ to their target market while providing the community a place to share the
2743
+ lifestyle online.","high_concept":"The action sports brand of the future.","follower_count":48,"company_url":"http://www.goodpeople.com","created_at":"2010-12-29T13:20:39Z","updated_at":"2013-03-18T23:43:04Z"}},{"id":501317,"role":"past_investor","created_at":"2013-02-07T22:58:03Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2744
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2745
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2746
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":23140,"hidden":false,"community_profile":false,"name":"Stupeflix","angellist_url":"https://angel.co/stupeflix","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/23140-9d0a0800cdc986d1e5228d4f667b9d61-medium_jpg.jpg?buster=1329297306","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/23140-9d0a0800cdc986d1e5228d4f667b9d61-thumb_jpg.jpg?buster=1329297306","quality":6,"product_desc":"Stupeflix
2747
+ helps people express themselves through video. \nWe believe making a video
2748
+ should be as fast as sharing a photo.\n\nWe''re building a novel experience
2749
+ for iPhone users, turning your camera roll into beautiful videos, instantly.\nVideo
2750
+ creativity on mobile is a huge, open opportunity.\nInstant rendering on the
2751
+ device is our secret weapon.\n\nStupeflix made 10 million videos, for 1 million
2752
+ users of its web app, and the world largest brands (e.g. Coke, Amex, Sprint).","high_concept":"Fast,
2753
+ beautiful video creation","follower_count":259,"company_url":"http://stupeflix.com","created_at":"2011-08-22T16:04:26Z","updated_at":"2012-11-16T19:16:07Z"}},{"id":484797,"role":"past_investor","created_at":"2013-01-29T04:14:15Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2754
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2755
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2756
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":815,"hidden":false,"community_profile":false,"name":"StartupDigest","angellist_url":"https://angel.co/startupdigest","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/815-b42c45292e6591f3a9920ba1de3da2ca-medium_jpg.jpg?buster=1315770812","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/815-b42c45292e6591f3a9920ba1de3da2ca-thumb_jpg.jpg?buster=1315770812","quality":8,"product_desc":"StartupDigest
2757
+ is the largest tech entrepreneurship network in the world, helping people
2758
+ stay connected and learn more in the startup world.\n\nEvery week we serve
2759
+ 300,000 subscribers across 185 cities worldwide.","high_concept":"Meet people
2760
+ and learn more in the startup world","follower_count":122,"company_url":"http://startupdigest.com","created_at":"2010-10-20T01:05:38Z","updated_at":"2013-03-10T20:52:35Z"}},{"id":481656,"role":"past_investor","created_at":"2013-01-26T21:06:25Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2761
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2762
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2763
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":51645,"hidden":false,"community_profile":false,"name":"Jeeran","angellist_url":"https://angel.co/jeeran","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/51645-dbeaa321a8bab060c5c44fffb807495b-medium_jpg.jpg?buster=1326858911","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/51645-dbeaa321a8bab060c5c44fffb807495b-thumb_jpg.jpg?buster=1326858911","quality":7,"product_desc":"An
2764
+ engagement platform between consumers and businesses centered on places and
2765
+ reviews.","high_concept":"Local discovery based on community reviews","follower_count":42,"company_url":"http://www.jeeran.com","created_at":"2012-01-18T03:55:12Z","updated_at":"2012-04-18T06:57:43Z"}},{"id":474026,"role":"past_investor","created_at":"2013-01-21T20:58:14Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2766
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2767
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2768
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":154195,"hidden":false,"community_profile":false,"name":"VERSUS
2769
+ IO","angellist_url":"https://angel.co/versus-io","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/154195-eb46b6471162e568778d8fc2cd13a1f8-medium_jpg.jpg?buster=1358417188","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/154195-eb46b6471162e568778d8fc2cd13a1f8-thumb_jpg.jpg?buster=1358417188","quality":6,"product_desc":"-
2770
+ Growing by 50% per month\n- 2.5M visits/month, 80% unique, 25% mobile\n- World-wide
2771
+ audience, 18 languages, most social activity than any other comparison site\n-
2772
+ $1M seed closed w/500 Startups, JMES, HTGF in 2012\n- Direct competitor: FindTheBest\n","high_concept":"Data-driven
2773
+ comparisons in natural language","follower_count":21,"company_url":"http://versusio.com","created_at":"2013-01-08T17:54:26Z","updated_at":"2013-01-25T23:51:47Z"}},{"id":468982,"role":"incubator","created_at":"2013-01-16T23:32:55Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2774
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2775
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2776
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":157106,"hidden":false,"community_profile":false,"name":"SearchMan","angellist_url":"https://angel.co/searchman","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/157106-9a3d95eae330c84e4ade7ff1ea38f280-medium_jpg.jpg?buster=1358382124","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/157106-9a3d95eae330c84e4ade7ff1ea38f280-thumb_jpg.jpg?buster=1358382124","quality":7,"product_desc":"SearchMan.com
2777
+ (www.SearchMan.com) is seriously committed to enabling search & discovery
2778
+ of the best mobile apps & shopping deals with great technology. \n\nOur first
2779
+ product, SearchMan SEO, enables search engine optimization for Mobile Apps
2780
+ on iPhone, iPad and Google Play (Q1 2013). Our service helps developers (and
2781
+ their stakeholders) track search rankings, analyze keywords, compete for rankings,
2782
+ and optimize everything...so that your App is easier to find. ","high_concept":"Enabling
2783
+ SEO for Mobile Apps","follower_count":206,"company_url":"http://SearchMan.com","created_at":"2013-01-16T23:29:46Z","updated_at":"2013-02-06T02:15:16Z"}},{"id":465835,"role":"past_investor","created_at":"2013-01-15T02:14:22Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2784
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2785
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2786
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":813,"hidden":false,"community_profile":false,"name":"Humanoid
2787
+ (Acquired by CloudFactory)","angellist_url":"https://angel.co/humanoid-acquired-by-cloudfactory","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/813-dee9832dc76814506c31776e335189ab-medium_jpg.jpg?buster=1320945988","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/813-dee9832dc76814506c31776e335189ab-thumb_jpg.jpg?buster=1320945988","quality":9,"product_desc":"Humanoid
2788
+ is a crowdsourcing QA and cost optimization technology built on top of Amazon
2789
+ Mechanical Turk. We use advanced machine learning techniques to model and
2790
+ predict how well individuals will perform different virtual tasks, then assign
2791
+ work to them in a way that optimizes speed, price and quality. \n\nOur engineering
2792
+ team comes from the Carnegie Mellon Robotics Institute and our investors include
2793
+ Google Ventures, 500 Startups and Mitch Kapor. \n","high_concept":"Labor in
2794
+ the Cloud. ","follower_count":226,"company_url":"http://getHumanoid.com","created_at":"2010-01-02T08:00:00Z","updated_at":"2013-03-07T23:50:55Z"}},{"id":462469,"role":"past_investor","created_at":"2013-01-12T03:54:21Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2795
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2796
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2797
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":115616,"hidden":false,"community_profile":false,"name":"NoRedink","angellist_url":"https://angel.co/noredink","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/115616-d46b44dca825cd851aca9d59e8cc1e4d-medium_jpg.jpg?buster=1345548640","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/115616-d46b44dca825cd851aca9d59e8cc1e4d-thumb_jpg.jpg?buster=1345548640","quality":7,"product_desc":"NoRedInk.com
2798
+ helps students improve their grammar/writing skills.\u00a0Our engine generates
2799
+ personalized curriculum from their interests & adapts to them with instant
2800
+ feedback, tutorials, & color-coded heat maps. With no marketing, we''re in
2801
+ 5% of U.S. schools and have revenue in a $9.7B market. We won NBC''s $75K
2802
+ Innovation Challenge and have been featured in\u00a0Mashable,\u00a0USNews,
2803
+ TechCrunch, etc.\u00a0We''re backed by ImagineK12 & led by a former English
2804
+ teacher who decided to use technology to end \"red ink.\"","high_concept":"Adaptive
2805
+ learning tool that helps students improve their grammar/writing skills.","follower_count":344,"company_url":"http://www.noredink.com","created_at":"2012-08-20T02:55:54Z","updated_at":"2013-01-02T21:35:25Z"}},{"id":462086,"role":"past_investor","created_at":"2013-01-11T20:27:24Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2806
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2807
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2808
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":62234,"hidden":false,"community_profile":false,"name":"ZipDial","angellist_url":"https://angel.co/zipdial","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/62234-6f64c1e92fee9ffe2c362899341cf99c-medium_jpg.jpg?buster=1354797690","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/62234-6f64c1e92fee9ffe2c362899341cf99c-thumb_jpg.jpg?buster=1354797690","quality":6,"product_desc":"ZipDial
2809
+ call-to-action platform captures consumer opinions & intent. Every zipdial
2810
+ from a consumer is a ping to the platform activating one of many applications
2811
+ in the marketing suite, from couponing to feedback surveys to friend referrals.
2812
+ \n\nRich data builds as every zipdial enhances the user\u2019s interest and
2813
+ behavioral profile, therefore driving even more value in analytics for advertiser
2814
+ customers.\n\nLarge brands pay $10,000-$40,000/month. Self-service packages
2815
+ at zipdial.com start at $20/month.","high_concept":"\"Smart\" features on
2816
+ Cloud for 100% of mobile users. 400M+ zipdials, 400+ paying customers.","follower_count":61,"company_url":"http://www.zipdial.com","created_at":"2012-01-18T06:41:26Z","updated_at":"2013-01-17T00:45:46Z"}},{"id":457375,"role":"past_investor","created_at":"2013-01-08T03:18:04Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2817
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2818
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2819
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":81354,"hidden":false,"community_profile":false,"name":"Bankons","angellist_url":"https://angel.co/bankons","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/81354-7bd9a31e80851ba71a97850de53117b5-medium_jpg.jpg?buster=1334722441","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/81354-7bd9a31e80851ba71a97850de53117b5-thumb_jpg.jpg?buster=1334722441","quality":6,"product_desc":"Bankons
2820
+ provides a mobile offers service to help consumers get real time rewards that
2821
+ are better targeted via transaction history.\n\nOur mobile offers platform
2822
+ enables financial institution real time influence through geo-located transaction
2823
+ data that can be a powerful tool when married to geo-located offers.\n\nPrimarily
2824
+ a B2B service for financial institutions to increase mobile engagement, create
2825
+ a critical mass of local offers and use our patented offer targeting technology.","high_concept":"Powering
2826
+ a mobile offers service for banks to give users rewards via transaction history.","follower_count":20,"company_url":"http://www.bankons.com","created_at":"2012-04-06T15:27:16Z","updated_at":"2012-04-18T04:14:01Z"}},{"id":456869,"role":"past_investor","created_at":"2013-01-07T20:58:46Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2827
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2828
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2829
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":146025,"hidden":false,"community_profile":false,"name":"Boatbound","angellist_url":"https://angel.co/boatbound","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/146025-33270c516b44cb3a16a469932598747a-medium_jpg.jpg?buster=1355260805","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/146025-33270c516b44cb3a16a469932598747a-thumb_jpg.jpg?buster=1355260805","quality":7,"product_desc":"Boatbound
2830
+ is the first and only fully insured \"pier-to-pier\" marketplace for boat
2831
+ rentals in the US. \n\nEach rental comes equipped with $1,000,000 in insurance
2832
+ coverage, ensuring that both owners and renters are protected on the water.\n\nQuick
2833
+ Facts:\n- There are 13,000,000 registered boats in the US. \n- 75,000,000
2834
+ + people enjoy boating each year. \n- The average boat spends 95% of the
2835
+ year unused \n- Over a combined $10,000,000,000 is spent by boaters each year
2836
+ in storage & maintenance in the US\n","high_concept":"Airbnb for boat rentals","follower_count":871,"company_url":"http://Boatbound.com","created_at":"2012-12-11T20:43:08Z","updated_at":"2013-03-21T14:47:29Z"}},{"id":448399,"role":"past_investor","created_at":"2012-12-30T18:20:10Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2837
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2838
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2839
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":24153,"hidden":false,"community_profile":false,"name":"GoSpotCheck","angellist_url":"https://angel.co/gospotcheck","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24153-a6e0142de36b6329c17b2c8642902519-medium_jpg.jpg?buster=1346337392","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24153-a6e0142de36b6329c17b2c8642902519-thumb_jpg.jpg?buster=1346337392","quality":8,"product_desc":"GoSpotCheck
2840
+ gives brands real time insight to their operations across multiple locations.
2841
+ We enable their field based team members to capture information via our smartphone
2842
+ application and share it via a web-based dashboard in real time. \n\nWe help
2843
+ businesses get better street level information, faster and easier than ever
2844
+ before. ","high_concept":"We help field teams capture and share information
2845
+ via mobile","follower_count":468,"company_url":"http://www.gospotcheck.com","created_at":"2011-09-12T18:10:33Z","updated_at":"2012-12-21T19:50:01Z"}},{"id":447405,"role":"past_investor","created_at":"2012-12-28T16:47:24Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2846
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2847
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2848
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":80042,"hidden":false,"community_profile":false,"name":"Shoptouch","angellist_url":"https://angel.co/shoptouch","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80042-ac5382437f07065bcb756d3eec055816-medium_jpg.jpg?buster=1361831402","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80042-ac5382437f07065bcb756d3eec055816-thumb_jpg.jpg?buster=1361831402","quality":7,"product_desc":"Shoptouch
2849
+ is a mobile shopping and recommendation platform for retailers and brands.
2850
+ Shoptouch apps provide personalized product guidance to consumers via mobile
2851
+ apps, while enabling retailers and brands to reach consumers with relevant
2852
+ communications at the point of purchase. The first Shoptouch platform app,
2853
+ Blush for Wine, is a mobile wine shopping companion that helps you find wines
2854
+ to match your taste, occasion and budget. ","high_concept":"Mobile shopping
2855
+ and recommendation platform for retailers and brands ","follower_count":104,"company_url":"http://www.shoptouch.com","created_at":"2012-04-01T21:32:00Z","updated_at":"2013-02-27T21:35:16Z"}},{"id":439868,"role":"past_investor","created_at":"2012-12-19T23:44:08Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2856
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2857
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2858
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":44559,"hidden":false,"community_profile":false,"name":"15Five","angellist_url":"https://angel.co/15five","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/44559-438942ad75c2ed4fd4c3fd9a9547fca0-medium_jpg.jpg?buster=1326852756","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/44559-438942ad75c2ed4fd4c3fd9a9547fca0-thumb_jpg.jpg?buster=1326852756","quality":7,"product_desc":"When
2859
+ employees spend 15 minutes each week writing a report that takes their manager
2860
+ no more than 5 minutes to read, everyone stays in the loop and focused on
2861
+ what''s most important.\n\nWe help CEOs and executives to know the pulse of
2862
+ their company. With 15Five, they can surface problems, celebrate wins, discover
2863
+ great ideas and stay tuned in to morale.\n\nRecent press - Inc, TechCrunch:
2864
+ https://angel.co/15five?show_comments=true#press\n\nWhat we''re about: http://www.15five.com/philosophy.html","high_concept":"Know
2865
+ the pulse of your company; weekly employee feedback.","follower_count":634,"company_url":"http://www.15five.com","created_at":"2012-01-18T02:12:37Z","updated_at":"2012-09-19T20:43:06Z"}},{"id":439290,"role":"past_investor","created_at":"2012-12-19T20:37:26Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2866
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2867
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2868
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":130,"hidden":false,"community_profile":false,"name":"eVenues","angellist_url":"https://angel.co/evenues","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/130-92877006588603764b3c4ce79e41f7a0-medium_jpg.jpg?buster=1315771002","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/130-92877006588603764b3c4ce79e41f7a0-thumb_jpg.jpg?buster=1315771002","quality":8,"product_desc":"eVenues
2869
+ lets you easily search, compare, and book small meeting and event spaces,
2870
+ similar to Expedia, AirBnB concepts. eVenues aggregates all types of space:
2871
+ boardrooms & conference rooms, classrooms, and small event spaces (theatres,
2872
+ galleries, clubs) into destination marketplace. eVenues incents venues with
2873
+ free listings and use of meeting room manager that integrates with Outlook,
2874
+ Google Calendar, and Apple iCal.","high_concept":"AirBnB for Meeting & Event
2875
+ Space","follower_count":166,"company_url":"http://www.evenues.com","created_at":"2010-08-02T23:26:16Z","updated_at":"2012-09-24T17:21:54Z"}},{"id":439280,"role":"past_investor","created_at":"2012-12-19T20:35:53Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2876
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2877
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2878
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":71679,"hidden":false,"community_profile":false,"name":"Like
2879
+ it!","angellist_url":"https://angel.co/like-it-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/71679-4db7e6ec77e660e8921880ed8a5dad94-medium_jpg.jpg?buster=1363062030","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/71679-4db7e6ec77e660e8921880ed8a5dad94-thumb_jpg.jpg?buster=1363062030","quality":6,"product_desc":"With
2880
+ the consumer market in mind and years of experience on the field we''ve built
2881
+ a factory of high impact mobile apps. Our goal is to create beautiful self
2882
+ funding products that serve millions of people on a monthly basis.\n\nOur
2883
+ first product was instaDM a messaging platform for Instagram users that received
2884
+ over 2M downloads in less than a year.\n\nWe''re currently working on app
2885
+ number two, Like it! where we enable people to discover and share great content.
2886
+ ","high_concept":"A beautiful way to discover & collect Instagram photos.","follower_count":85,"company_url":"http://likeit.co/","created_at":"2012-02-27T00:40:49Z","updated_at":"2013-03-12T04:38:05Z"}},{"id":434425,"role":"past_investor","created_at":"2012-12-16T00:03:41Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2887
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2888
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2889
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":64699,"hidden":false,"community_profile":false,"name":"PayrollHero","angellist_url":"https://angel.co/payrollhero","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/64699-86a6c42b15ab8854593b52350ee2f4c4-medium_jpg.jpg?buster=1333493390","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/64699-86a6c42b15ab8854593b52350ee2f4c4-thumb_jpg.jpg?buster=1333493390","quality":6,"product_desc":"PayrollHero.com
2890
+ - Optimizing Work Productivity with Happiness. \n\nConsumer friendly Time,
2891
+ Attendance, Scheduling and Payroll in the cloud for web and mobile. \n\nWe
2892
+ use your employees face as our primary biometric to avoid buddy punching and
2893
+ ghost employees. These clock-in pics are further given a mood rating to establish
2894
+ an array of business intelligence to your companies corollaries between productivity
2895
+ and mood.","high_concept":"Optimizing Time, Attendance, Scheduling & Work
2896
+ Productivity w/ Happiness via iOS/web.","follower_count":237,"company_url":"http://www.payrollhero.com/","created_at":"2012-01-23T04:08:53Z","updated_at":"2013-02-20T01:26:14Z"}},{"id":429827,"role":"past_investor","created_at":"2012-12-11T18:31:19Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2897
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2898
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2899
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":31833,"hidden":false,"community_profile":false,"name":"Dabee","angellist_url":"https://angel.co/dabee","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31833-74651d8e19e0450bafaea1ee505eece4-medium_jpg.jpg?buster=1326589698","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31833-74651d8e19e0450bafaea1ee505eece4-thumb_jpg.jpg?buster=1326589698","quality":6,"product_desc":"Foreign
2900
+ buyers \u201cdiscover\u201d cool merchants and products not available in their
2901
+ country. They add these products to their storefront on Dabee (aka Hive) and
2902
+ share these discoveries with their friends & followers. \n\nWhen products
2903
+ are sold, hive owners are rewarded and Dabee takes care of the rest. (payment,
2904
+ customs, delivery)\n\nWe are addressing an $80B market (Cross-Border B2C)
2905
+ and our pilot market is Brazil, where we offer a 100% local experience","high_concept":"Destination
2906
+ site for foreign buyers to discover and buy products","follower_count":44,"company_url":"http://www.dabee.com.br","created_at":"2012-01-13T15:31:10Z","updated_at":"2012-12-11T18:57:18Z"}},{"id":419131,"role":"past_investor","created_at":"2012-12-02T08:35:11Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2907
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2908
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2909
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":6328,"hidden":false,"community_profile":false,"name":"LocBox","angellist_url":"https://angel.co/locbox","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/6328-e508e55736816711a213df008551339d-medium_jpg.jpg?buster=1348886102","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/6328-e508e55736816711a213df008551339d-thumb_jpg.jpg?buster=1348886102","quality":8,"product_desc":"LocBox
2910
+ helps high-margin local businesses (plastic surgeons, B&Bs, Benz dealerships,
2911
+ gokart racing tracks, etc.) generate revenue and foot traffic with targeted
2912
+ campaigns that run on multiple channels - Email, FB, Twitter, Text - all from
2913
+ one dashboard. \n\nWe bring businesses from the Dark Ages of unsustainable
2914
+ discounting and spray-and-pray Email Mkting into a sustainable revenue plan.
2915
+ \n\nOur internal targeting technology helps us get customers without a wildly
2916
+ inefficient feet-on-street model.\n\n","high_concept":"Customer Retention
2917
+ And Acquisition For Local Businesses","follower_count":268,"company_url":"http://www.getlocbox.com","created_at":"2011-03-16T07:30:49Z","updated_at":"2012-10-01T18:11:42Z"}},{"id":406528,"role":"past_investor","created_at":"2012-11-20T17:37:21Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2918
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2919
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2920
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":97116,"hidden":false,"community_profile":false,"name":"Cucumbertown","angellist_url":"https://angel.co/cucumbertown","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/97116-83b23a097a3b0703d3c117c9061f6c9e-medium_jpg.jpg?buster=1339682433","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/97116-83b23a097a3b0703d3c117c9061f6c9e-thumb_jpg.jpg?buster=1339682433","quality":8,"product_desc":"Delightfully
2921
+ simple recipe blogging platform that allows amateur cooks to develop devoted
2922
+ followings.\n\nArdent, vocal community built using curation mechanics with
2923
+ over 30 percent contributing, returning over 5 days per week. 75% of users
2924
+ return to the site within 30 days. \n\nHighly User Experience focused. In-depth
2925
+ insights & research project based. \n\n\n","high_concept":"Cucumbertown is
2926
+ a delightfully simple and addictive recipe-blogging-platform","follower_count":166,"company_url":"http://www.cucumbertown.com/","created_at":"2012-06-14T03:42:34Z","updated_at":"2012-11-02T18:38:41Z"}},{"id":404661,"role":"incubator","created_at":"2012-11-19T07:39:39Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2927
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2928
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2929
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":62639,"hidden":false,"community_profile":false,"name":"Chirpme.com","angellist_url":"https://angel.co/chirpme-com","logo_url":"https://angel.co/images/shared/nopic_startup.png","thumb_url":"https://angel.co/images/shared/nopic_startup.png","quality":9,"product_desc":null,"high_concept":null,"follower_count":21,"company_url":null,"created_at":"2012-01-18T06:48:26Z","updated_at":"2012-10-09T17:34:40Z"}},{"id":401391,"role":"past_investor","created_at":"2012-11-15T07:14:03Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2930
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2931
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2932
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":122672,"hidden":false,"community_profile":false,"name":"Forever
2933
+ Snap - Wedding Snap","angellist_url":"https://angel.co/forever-snap-wedding-snap","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122672-874819ef670820c8b5c8b64e54b93f26-medium_jpg.jpg?buster=1355991804","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122672-874819ef670820c8b5c8b64e54b93f26-thumb_jpg.jpg?buster=1355991804","quality":7,"product_desc":"Forever
2934
+ Snap is the fastest and easiest way to collect all your event''s photos and
2935
+ videos in one place. \n\nOver 3000 people have payed more than $100 each to
2936
+ capture all their memories at\n\n- Weddings \n- Birthday Parties\n- Class
2937
+ reunions\n- Family travels\n- Company events\n- etc. \n\nFirst was WeddingSnap.com
2938
+ \n& now due to high demand we are expanding to other verticals:\nForeverSnap.com
2939
+ \n\n\nOur team comes from: Italy, Iran, Chile, Spain, South Africa, Brazil,
2940
+ & the U.S. Everyone lives in the bay area.","high_concept":"Crowd-sourcing
2941
+ your event''s Photos & Videos in ONE place.","follower_count":79,"company_url":"http://www.WeddingSnap.com","created_at":"2012-09-15T07:56:01Z","updated_at":"2013-01-29T07:45:53Z"}},{"id":392469,"role":"past_investor","created_at":"2012-11-06T04:15:10Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2942
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2943
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2944
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":28225,"hidden":false,"community_profile":false,"name":"Microryza","angellist_url":"https://angel.co/microryza","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/28225-74bc140079116a2044af8a7315fbfb0c-medium_jpg.jpg?buster=1348377338","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/28225-74bc140079116a2044af8a7315fbfb0c-thumb_jpg.jpg?buster=1348377338","quality":6,"product_desc":"Every
2945
+ great discovery only happens once. Be there for it. \n\nMicroryza is a crowdfunding
2946
+ platform for scientific research.","high_concept":"Kickstarter for Research","follower_count":89,"company_url":"http://www.microryza.com","created_at":"2011-11-11T01:23:59Z","updated_at":"2013-03-19T06:39:21Z"}},{"id":392285,"role":"incubator","created_at":"2012-11-06T00:01:07Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2947
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2948
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2949
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":123324,"hidden":false,"community_profile":false,"name":"Tapshot,
2950
+ Makers of Videokits","angellist_url":"https://angel.co/tapshot-makers-of-videokits","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/123324-fdccc44628c03fbb78685b5f3cfb0f1a-medium_jpg.jpg?buster=1352428766","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/123324-fdccc44628c03fbb78685b5f3cfb0f1a-thumb_jpg.jpg?buster=1352428766","quality":6,"product_desc":"The
2951
+ Videokits app offers fun and easy mobile video creation for all types of events
2952
+ and activities. Creative kits guide people through shooting and assembling
2953
+ great videos of everything from parties, holidays, and vacations to youth
2954
+ sports events, restaurant reviews, product reviews, and cooking demos. On
2955
+ the surface, our software guides users through the process of capturing events
2956
+ and activities; underneath, it generates structured video data for future
2957
+ aggregation, cataloging, and remixing.","high_concept":"Guided Mobile Video
2958
+ Creation","follower_count":26,"company_url":"http://www.videokits.com","created_at":"2012-09-17T19:14:48Z","updated_at":"2013-02-01T00:11:35Z"}},{"id":387229,"role":"past_investor","created_at":"2012-10-31T17:05:22Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2959
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2960
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2961
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":30767,"hidden":false,"community_profile":false,"name":"Moveline","angellist_url":"https://angel.co/moveline","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30767-92a8ce5acae4318a7e9450a19bae30ff-medium_jpg.jpg?buster=1324652233","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30767-92a8ce5acae4318a7e9450a19bae30ff-thumb_jpg.jpg?buster=1324652233","quality":8,"product_desc":"As
2962
+ seen in Forbes, The New York Times, TechCrunch, Mashable, Lifehacker, CNNmoney...\n\nMoveline
2963
+ lets people take a video of their stuff, and get guaranteed quotes from top
2964
+ moving companies.\n\nFor moving companies, because Moveline does the inventory,
2965
+ long-distance moving companies are no longer tied to their sales regions:
2966
+ any moving company can work with any customer, anywhere.\n\nMoveline is bringing
2967
+ transparency to the moving industry, and using technology to put customers
2968
+ in control.","high_concept":"The best way to move - for the 40M people who
2969
+ spend $25B on moving services","follower_count":259,"company_url":"http://www.moveline.com","created_at":"2011-12-23T14:33:36Z","updated_at":"2013-03-12T14:09:44Z"}},{"id":380857,"role":"past_investor","created_at":"2012-10-23T20:57:28Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2970
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2971
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2972
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":122276,"hidden":false,"community_profile":false,"name":"Nuzzel","angellist_url":"https://angel.co/nuzzel","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122276-2aee84dde7187ace62f25eb8925da16f-medium_jpg.jpg?buster=1348105375","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122276-2aee84dde7187ace62f25eb8925da16f-thumb_jpg.jpg?buster=1348105375","quality":8,"product_desc":"Nuzzel
2973
+ is the super-easy way to see news from your friends.\n\nNuzzel helps you to
2974
+ manage the overload of social sharing, filter out the noise, and make social
2975
+ curation more useful.\n\nNuzzel is simple, social, real-time, and platform
2976
+ agnostic. Nuzzel works on web, mobile, and email, with no signup, setup,
2977
+ or install required. Just login with Twitter or Facebook.\n","high_concept":"The
2978
+ super-easy way to see news from your friends","follower_count":630,"company_url":"http://beta.nuzzel.com/","created_at":"2012-09-13T22:33:15Z","updated_at":"2013-02-05T23:43:37Z"}},{"id":380779,"role":"past_investor","created_at":"2012-10-23T19:34:19Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2979
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2980
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2981
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":2484,"hidden":false,"community_profile":false,"name":"Tip
2982
+ or Skip","angellist_url":"https://angel.co/tip-or-skip","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2484-249d3b3187092919c07d810a3f8bf631-medium_jpg.jpg?buster=1351023317","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2484-249d3b3187092919c07d810a3f8bf631-thumb_jpg.jpg?buster=1351023317","quality":7,"product_desc":"Tip
2983
+ or Skip is the mobile shopping game where you compete to be a top tastemaker
2984
+ by spotting great products. Tip what you like, skip what you don''t. If your
2985
+ followers agree, you earn points called \"sway.\" Players and products with
2986
+ the most sway rise to the top. Coming soon: exchange sway for free products,
2987
+ and buy more sway if you need it. For brands, buy and use sway to increase
2988
+ exposure of your products.\n\nTip or Skip is based in the heart of the fashion
2989
+ district in NYC.","high_concept":"An addictive shopping app and social network","follower_count":95,"company_url":"http://www.tiporskip.com","created_at":"2011-02-09T17:05:53Z","updated_at":"2012-10-23T20:21:46Z"}},{"id":379659,"role":"incubator","created_at":"2012-10-22T20:11:15Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
2990
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
2991
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
2992
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":2269,"hidden":false,"community_profile":false,"name":"Pick1","angellist_url":"https://angel.co/pick1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2269-b04f6feeec62623ae9934337803a3526-medium_jpg.jpg?buster=1327372315","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2269-b04f6feeec62623ae9934337803a3526-thumb_jpg.jpg?buster=1327372315","quality":6,"product_desc":"Know
2993
+ Your Customers\n\nIndividual Opinions meet Real-time Targeted Marketing\n\nPick1
2994
+ merges an individual''s opinions with their entire social media presence,
2995
+ enabling brands to efficiently know, understand, and successfully target their
2996
+ customers.\n\nBased on questions insights actions, engaging in a multi-channel
2997
+ context, collecting multi-dimensional social opinions.\n\nPick1 dynamically
2998
+ aggregates/clusters the collected information to deliver actionable data,
2999
+ to retarget audience and improve ROI.","high_concept":"Know Your Customers
3000
+ - Individual Opinions meet Real-time Targeted Marketing","follower_count":238,"company_url":"http://www.pick1.com","created_at":"2011-02-01T07:59:27Z","updated_at":"2013-02-06T23:13:46Z"}},{"id":379125,"role":"past_investor","created_at":"2012-10-22T05:47:59Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3001
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3002
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3003
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":122643,"hidden":false,"community_profile":false,"name":"everbill","angellist_url":"https://angel.co/everbill","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122643-647f4c35406e9d6e357488e6d1435fb5-medium_jpg.jpg?buster=1348982740","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122643-647f4c35406e9d6e357488e6d1435fb5-thumb_jpg.jpg?buster=1348982740","quality":5,"product_desc":"everbill
3004
+ is a Silicon Valley based startup in the field of online invoicing. At www.everbill.com,
3005
+ startups and SMEs can easily create invoices, estimates, purchase orders,
3006
+ and similar documents via any connected device and exchange them with customers
3007
+ and suppliers. everbill is a SaaS application, therefore everbill\u00b4s users
3008
+ don\u2019t have to install, maintain, or update local software. ","high_concept":"SAP
3009
+ for startups and SMBs","follower_count":149,"company_url":"http://www.everbill.com","created_at":"2012-09-15T03:51:16Z","updated_at":"2013-03-14T15:53:49Z"}},{"id":377605,"role":"past_investor","created_at":"2012-10-19T06:01:41Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3010
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3011
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3012
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":79594,"hidden":false,"community_profile":false,"name":"Maker","angellist_url":"https://angel.co/maker","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/79594-d870281ef95b67595b253329ac452743-medium_jpg.jpg?buster=1333082447","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/79594-d870281ef95b67595b253329ac452743-thumb_jpg.jpg?buster=1333082447","quality":7,"product_desc":"We''re
3013
+ building a platform for makers to showcase their creations, build their personal
3014
+ brand and connect directly with their markets. ","high_concept":"Discover
3015
+ the people side of products.","follower_count":143,"company_url":"http://maker.me/","created_at":"2012-03-30T04:38:21Z","updated_at":"2013-03-21T05:38:47Z"}},{"id":373054,"role":"incubator","created_at":"2012-10-14T07:22:26Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3016
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3017
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3018
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":122262,"hidden":false,"community_profile":false,"name":"wideo","angellist_url":"https://angel.co/wideo","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122262-44c995685c06fbce2ff58f95123176bf-medium_jpg.jpg?buster=1347589499","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122262-44c995685c06fbce2ff58f95123176bf-thumb_jpg.jpg?buster=1347589499","quality":5,"product_desc":"Wideo
3019
+ is a very simple, intuitive online tool that allows anyone to make short animation
3020
+ videos so that they can share their ideas with the world. It\u00b4s like a
3021
+ prezi.com to make animated videos.","high_concept":"Prezi for making animated
3022
+ videos","follower_count":97,"company_url":"http://wideo.co","created_at":"2012-09-13T22:24:32Z","updated_at":"2012-11-06T23:49:30Z"}},{"id":373032,"role":"past_investor","created_at":"2012-10-14T05:54:41Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3023
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3024
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3025
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":82190,"hidden":false,"community_profile":false,"name":"Social
3026
+ Tables","angellist_url":"https://angel.co/social-tables","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/82190-268c07b6ad1f7af924c6a7ecca582568-medium_jpg.jpg?buster=1334078880","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/82190-268c07b6ad1f7af924c6a7ecca582568-thumb_jpg.jpg?buster=1334078880","quality":7,"product_desc":"An
3027
+ event planning and community building platform with the world''s first social
3028
+ seating chart. We''re reinventing the way events are planned and attended!","high_concept":"Event
3029
+ planning and community building platform","follower_count":145,"company_url":"http://www.socialtables.com/","created_at":"2012-04-10T16:17:14Z","updated_at":"2012-12-01T23:28:51Z"}},{"id":372317,"role":"incubator","created_at":"2012-10-12T20:18:36Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3030
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3031
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3032
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":74754,"hidden":false,"community_profile":false,"name":"Instamojo","angellist_url":"https://angel.co/instamojo-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/74754-25c89bc8083780838916c9fbc5d2d4a5-medium_jpg.jpg?buster=1362816398","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/74754-25c89bc8083780838916c9fbc5d2d4a5-thumb_jpg.jpg?buster=1362816398","quality":6,"product_desc":"We
3033
+ are reinventing horizontal & vertical e-commerce platforms from the viewpoint
3034
+ of design (dead simple UI/UX), fulfillment (proprietary digital goods delivery
3035
+ system) & distribution (peer to peer) with a proven team of 20+ yrs of experience,
3036
+ market knowledge & deep technical know-how in similar domain.\n\nWith that,
3037
+ folks are selling their digital creations like ebooks, reports, comic books,
3038
+ music, software, templates etc by simply sharing a link to make $$$ instantly.\n\n","high_concept":"Reinventing
3039
+ e-commerce platforms; starting with digital goods ($36B industry)","follower_count":175,"company_url":"http://instamojo.com","created_at":"2012-03-07T22:03:14Z","updated_at":"2013-03-09T08:06:40Z"}},{"id":369421,"role":"incubator","created_at":"2012-10-09T18:28:57Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3040
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3041
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3042
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":122184,"hidden":false,"community_profile":false,"name":"iDreamBooks","angellist_url":"https://angel.co/idreambooks","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122184-0b31a130de066de38a2e377e90369fd9-medium_jpg.jpg?buster=1354150294","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/122184-0b31a130de066de38a2e377e90369fd9-thumb_jpg.jpg?buster=1354150294","quality":6,"product_desc":"RottenTomatoes
3043
+ for books. We aggregate editorial or critic reviews from sources like NYTimes
3044
+ or WashingtonPost to create an authentic book recommendation. Our goal is
3045
+ to become the industry standard for book ratings across the internet.","high_concept":"RottenTomatoes
3046
+ for Books","follower_count":125,"company_url":"http://idreambooks.com","created_at":"2012-09-13T19:44:57Z","updated_at":"2013-03-19T06:37:05Z"}},{"id":367682,"role":"incubator","created_at":"2012-10-07T23:39:37Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3047
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3048
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3049
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":26411,"hidden":false,"community_profile":false,"name":"Club
3050
+ W","angellist_url":"https://angel.co/club-w","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26411-2fdb8af3f3ac8ad2cbb1c51bdf36863a-medium_jpg.jpg?buster=1318898466","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26411-2fdb8af3f3ac8ad2cbb1c51bdf36863a-thumb_jpg.jpg?buster=1318898466","quality":7,"product_desc":"Club
3051
+ W is an entirely new culture of intrepid, unassuming wine drinkers. Blending
3052
+ the ideas of traditional wine club with a tech-focused business model, Club
3053
+ W is breathing new life into the wine industry by focusing on high-quality
3054
+ online content and interactive social media. Featuring the hottest wines on
3055
+ the market, Club W reaches customers in a way that feels friendly, relatable
3056
+ and accessible while maintaing enough authority to be a respected voice within
3057
+ the wine community. \n\n","high_concept":"eWinery ","follower_count":141,"company_url":"http://www.clubw.com","created_at":"2011-10-17T23:15:41Z","updated_at":"2013-01-29T16:27:47Z"}},{"id":367346,"role":"past_investor","created_at":"2012-10-07T10:16:37Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3058
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3059
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3060
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":127726,"hidden":false,"community_profile":false,"name":"femeninas","angellist_url":"https://angel.co/femeninas","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127726-4709d3fcbad5db0e711823528fc26879-medium_jpg.jpg?buster=1358572561","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127726-4709d3fcbad5db0e711823528fc26879-thumb_jpg.jpg?buster=1358572561","quality":6,"product_desc":"femeninas.com
3061
+ is a women and fashion destination brand\nMoving into a social engagement
3062
+ platform for women and user generated content,where designers and brands can
3063
+ interact with the community. \nDelivering high quality personalized content\nContent
3064
+ creation is on demand, based on real time research out of internet searches
3065
+ and social information\nMaking the connection between brands and consumers
3066
+ more efficient and powerful","high_concept":"Fashion and women scalable content
3067
+ generation model. Brands to consumer SEO and Social","follower_count":121,"company_url":"http://www.femeninas.com","created_at":"2012-10-04T17:33:41Z","updated_at":"2013-03-02T07:07:37Z"}},{"id":366902,"role":"past_investor","created_at":"2012-10-06T00:40:50Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3068
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3069
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3070
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":32654,"hidden":false,"community_profile":false,"name":"Crocodoc","angellist_url":"https://angel.co/crocodoc","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32654-72300d16cb85a6cd165f3f3d3fac9ee1-medium_jpg.jpg?buster=1335898926","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/32654-72300d16cb85a6cd165f3f3d3fac9ee1-thumb_jpg.jpg?buster=1335898926","quality":8,"product_desc":"Crocodoc
3071
+ converts Microsoft Office and PDF documents to HTML5 so your users can view
3072
+ and collaborate right in your web app. \n\nWe''ve developed the world''s most
3073
+ advanced web-based document viewing and collaboration technology for Microsoft
3074
+ Office and PDF files, built on open standards such as HTML5 and CSS3. We make
3075
+ it easy for companies to create amazing experiences for their users with technology
3076
+ that is secure, scalable, and trusted by top brands in the consumer and enterprise
3077
+ space. ","high_concept":"Easy document embedding and collaboration using HTML5","follower_count":71,"company_url":"http://www.crocodoc.com","created_at":"2012-01-17T23:28:21Z","updated_at":"2012-11-28T18:35:15Z"}},{"id":366065,"role":"incubator","created_at":"2012-10-05T00:29:09Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3078
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3079
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3080
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":127824,"hidden":false,"community_profile":false,"name":"Qual
3081
+ Canal","angellist_url":"https://angel.co/qual-canal","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127824-e99695ed223a5dbb08be5644ba56fed3-medium_jpg.jpg?buster=1349395147","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127824-e99695ed223a5dbb08be5644ba56fed3-thumb_jpg.jpg?buster=1349395147","quality":4,"product_desc":"Qual
3082
+ Canal helps broadcasters increase their shows ratings by increasing buzz about
3083
+ them in social media. \n\nFor brands and agencies, we help them adjust their
3084
+ strategies to get stronger engagement with their brand through the course
3085
+ of the TV program, and subsequently adjust their media buying strategies to
3086
+ optimize their ROI.","high_concept":"Social TV ratings and engagement plataform","follower_count":92,"company_url":"http://qualcanal.tv","created_at":"2012-10-04T23:59:09Z","updated_at":"2013-01-28T01:57:24Z"}},{"id":366034,"role":"incubator","created_at":"2012-10-04T23:58:13Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3087
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3088
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3089
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":127821,"hidden":false,"community_profile":false,"name":"UniPay","angellist_url":"https://angel.co/unipay","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127821-aba5821eaa65ce72025f6291ac3f3a94-medium_jpg.jpg?buster=1349918868","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/127821-aba5821eaa65ce72025f6291ac3f3a94-thumb_jpg.jpg?buster=1349918868","quality":5,"product_desc":"UniPay
3090
+ allows anyone to accept credit cards in just a few steps by using their mobile
3091
+ devices. No merchant account needed, no big fees. Getting paid in Brazil is
3092
+ a pain and we''re making it simple and safe.\n\nNo hardware is required: just
3093
+ download our app, sign up and you''re ready to receive payments from your
3094
+ customers.","high_concept":"We take the hassle out of accepting credit cards
3095
+ in Brazil through mobile payment.","follower_count":147,"company_url":"http://www.unipay.com.br","created_at":"2012-10-04T23:55:42Z","updated_at":"2012-11-01T18:26:37Z"}},{"id":365869,"role":"incubator","created_at":"2012-10-04T22:47:17Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3096
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3097
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3098
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":30557,"hidden":false,"community_profile":false,"name":"Chewse","angellist_url":"https://angel.co/chewse","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30557-0e21e57c124019b44185d06a1158d379-medium_jpg.jpg?buster=1356033558","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30557-0e21e57c124019b44185d06a1158d379-thumb_jpg.jpg?buster=1356033558","quality":7,"product_desc":"We''ve
3099
+ already fed 20,000 hungry employees...\n\nChewse is a B2B marketplace for
3100
+ corporate meals. In 2 test territories, we feed employees from companies like
3101
+ PwC, USC, and Wells Fargo. We''ve got a waiting list of 700 companies ready
3102
+ for us to expand.\n\nChewse understands admins, who control a $33B market
3103
+ of group meals.\n\nIt''s time to delight admins to order easily for groups.
3104
+ \nIt''s time to empower restaurants with untapped revenue.\nLet''s take a
3105
+ big bite out of a big market.\n\n\n\n","high_concept":"Big groups. Big meals.
3106
+ Thousands fed.","follower_count":412,"company_url":"http://www.chewse.com/","created_at":"2011-12-19T19:54:49Z","updated_at":"2013-02-26T06:58:34Z"}},{"id":365713,"role":"incubator","created_at":"2012-10-04T21:18:39Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"500
3107
+ Startups","id":2850,"bio":"Silicon Valley seed fund & accelerator. 500 team
3108
+ has worked @paypal, @google, AOL, @rackspace, @yahoo, @youtube, @mint-com-1,
3109
+ @facebook fbFund, Founders Fund.","follower_count":9853,"angellist_url":"https://angel.co/500startups","image":"https://s3.amazonaws.com/photos.angel.co/users/2850-medium_jpg?1294804197"},"startup":{"id":97716,"hidden":false,"community_profile":false,"name":"Import2","angellist_url":"https://angel.co/import2","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/97716-9c61a8e12236a6b2d3f99a68c336f0d3-medium_jpg.jpg?buster=1352251766","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/97716-9c61a8e12236a6b2d3f99a68c336f0d3-thumb_jpg.jpg?buster=1352251766","quality":7,"product_desc":"Import2
3110
+ is an automated online data migration service. \n\n500+ migrations, customers
3111
+ including Zillow, Disqus, MediaSpike \n\nAnnual churn for average SaaS software
3112
+ service is 5%-10%. E.g in CRM market it means $900M-$1.8B worth of customers
3113
+ are moving their data to a new CRM software every year. \n\nToday data migration
3114
+ is done by IT consultants. We automate data migration making it x10 less expensive.
3115
+ \n\nWe charge one time fee of $299-$999 for business and $12-$49 for consumer
3116
+ data migration.\n\n","high_concept":"1-Click Data Migration","follower_count":60,"company_url":"http://www.import2.com","created_at":"2012-06-17T16:23:51Z","updated_at":"2013-02-27T21:03:13Z"}}],"total":344,"per_page":50,"page":1,"last_page":7}'
3117
+ http_version: !!null
3118
+ recorded_at: Thu, 21 Mar 2013 14:52:59 GMT
3119
+ - request:
3120
+ method: get
3121
+ uri: https://api.angel.co/1/startup_roles?startup_id=1124&direction=outgoing&v=1
3122
+ body:
3123
+ encoding: US-ASCII
3124
+ string: ''
3125
+ headers:
3126
+ Accept:
3127
+ - application/json
3128
+ User-Agent:
3129
+ - AngellistApi Ruby Gem 1.0.3
3130
+ response:
3131
+ status:
3132
+ code: 200
3133
+ message: !!null
3134
+ headers:
3135
+ cache-control:
3136
+ - private, max-age=0, must-revalidate
3137
+ content-type:
3138
+ - application/json; charset=utf-8
3139
+ date:
3140
+ - Thu, 21 Mar 2013 14:53:12 GMT
3141
+ etag:
3142
+ - ! '"0f90a230c0d63d88f7db0f0bc707c8df"'
3143
+ server:
3144
+ - nginx
3145
+ status:
3146
+ - 200 OK
3147
+ vary:
3148
+ - Accept-Encoding
3149
+ x-ratelimit-limit:
3150
+ - '1000'
3151
+ x-ratelimit-remaining:
3152
+ - '999'
3153
+ x-runtime:
3154
+ - '47'
3155
+ content-length:
3156
+ - '1139'
3157
+ connection:
3158
+ - Close
3159
+ body:
3160
+ encoding: ASCII-8BIT
3161
+ string: ! '{"startup_roles":[{"id":564292,"role":"customer","created_at":"2013-03-15T00:42:58Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"Startup","id":1124,"hidden":false,"community_profile":false,"name":"500
3162
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3163
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3164
+ We invest in internet startups on search, social, & mobile platforms. We run
3165
+ an incubation and accelerator program emphasizing design & user experience,
3166
+ distribution & customer acquisition, and lean startup practices & metrics.
3167
+ Our investment team and mentor network has operational experience at companies
3168
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3169
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3170
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"},"startup":{"id":18863,"hidden":false,"community_profile":false,"name":"Pipedrive","angellist_url":"https://angel.co/pipedrive","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18863-1dd604e70d8d5dfba942263fc48f3082-medium_jpg.jpg?buster=1363302487","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18863-1dd604e70d8d5dfba942263fc48f3082-thumb_jpg.jpg?buster=1363302487","quality":7,"product_desc":"Pipedrive
3171
+ is a CRM-replacing deal management tool. It is built for active deal makers,
3172
+ not only salespeople. It helps people be super organized and close their deals
3173
+ in less time.\n \nPipedrive is most useful for small teams up to 15 members.
3174
+ Half of our customers are greenfield, not knowing they needed Pipedrive until
3175
+ they used it. The other half of our customers abandon their existing CRM or
3176
+ sales management tool for a better product.","high_concept":"Pipeline Tool
3177
+ for Active Dealmakers","follower_count":646,"company_url":"http://www.pipedrive.com/","created_at":"2011-05-20T20:52:50Z","updated_at":"2013-03-20T07:59:29Z"}}],"total":1,"per_page":50,"page":1,"last_page":1}'
3178
+ http_version: !!null
3179
+ recorded_at: Thu, 21 Mar 2013 14:53:14 GMT
3180
+ - request:
3181
+ method: get
3182
+ uri: https://api.angel.co/1/startup_roles?startup_id=1124&direction=incoming&v=1
3183
+ body:
3184
+ encoding: US-ASCII
3185
+ string: ''
3186
+ headers:
3187
+ Accept:
3188
+ - application/json
3189
+ User-Agent:
3190
+ - AngellistApi Ruby Gem 1.0.3
3191
+ response:
3192
+ status:
3193
+ code: 200
3194
+ message: !!null
3195
+ headers:
3196
+ cache-control:
3197
+ - private, max-age=0, must-revalidate
3198
+ content-type:
3199
+ - application/json; charset=utf-8
3200
+ date:
3201
+ - Thu, 21 Mar 2013 14:55:48 GMT
3202
+ etag:
3203
+ - ! '"65f79593409c2134cbaa6f621046f6a8"'
3204
+ server:
3205
+ - nginx
3206
+ status:
3207
+ - 200 OK
3208
+ vary:
3209
+ - Accept-Encoding
3210
+ x-ratelimit-limit:
3211
+ - '1000'
3212
+ x-ratelimit-remaining:
3213
+ - '998'
3214
+ x-runtime:
3215
+ - '717'
3216
+ transfer-encoding:
3217
+ - chunked
3218
+ connection:
3219
+ - Close
3220
+ body:
3221
+ encoding: ASCII-8BIT
3222
+ string: ! '{"startup_roles":[{"id":564810,"role":"past_investor","created_at":"2013-03-15T11:58:07Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Saurabh
3223
+ Goel","id":163211,"bio":"Founder startt \u2022 Investor @500-startups-fund-ii","follower_count":4,"angellist_url":"https://angel.co/saurgoel","image":"https://s3.amazonaws.com/photos.angel.co/users/163211-medium_jpg?1359116657"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3224
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3225
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3226
+ We invest in internet startups on search, social, & mobile platforms. We run
3227
+ an incubation and accelerator program emphasizing design & user experience,
3228
+ distribution & customer acquisition, and lean startup practices & metrics.
3229
+ Our investment team and mentor network has operational experience at companies
3230
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3231
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3232
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":562745,"role":"employee","created_at":"2013-03-14T05:18:53Z","started_at":"2013-03-01","ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Matthew
3233
+ Berman","id":57540,"bio":"Distribution Hacker @500startups, Entrepreneur,
3234
+ User Acquisition Expert, Rails Hacker, Technology Enthusiast. Previously co-founder
3235
+ at @teamly Inc.","follower_count":66,"angellist_url":"https://angel.co/matthew-berman-1","image":"https://s3.amazonaws.com/photos.angel.co/users/57540-medium_jpg?1362511079"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3236
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3237
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3238
+ We invest in internet startups on search, social, & mobile platforms. We run
3239
+ an incubation and accelerator program emphasizing design & user experience,
3240
+ distribution & customer acquisition, and lean startup practices & metrics.
3241
+ Our investment team and mentor network has operational experience at companies
3242
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3243
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3244
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":549601,"role":"employee","created_at":"2013-03-06T08:02:09Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Parker
3245
+ Thompson","id":90916,"bio":"Venture Partner @500startups. Early @pivotal-labs
3246
+ engineering & BD. Co-founder/CTO @placesite. Big Data @internet-archive. Copyright
3247
+ law @uc-berkeley iSchool.","follower_count":184,"angellist_url":"https://angel.co/pt","image":"https://s3.amazonaws.com/photos.angel.co/users/90916-medium_jpg?1362373483"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3248
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3249
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3250
+ We invest in internet startups on search, social, & mobile platforms. We run
3251
+ an incubation and accelerator program emphasizing design & user experience,
3252
+ distribution & customer acquisition, and lean startup practices & metrics.
3253
+ Our investment team and mentor network has operational experience at companies
3254
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3255
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3256
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":548922,"role":"past_investor","created_at":"2013-03-05T23:05:20Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"Startup","id":38066,"hidden":false,"community_profile":false,"name":"Venture51","angellist_url":"https://angel.co/venture51","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/38066-f57ccdc7011c1934b89f28fe8c91cb49-medium_jpg.jpg?buster=1351621929","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/38066-f57ccdc7011c1934b89f28fe8c91cb49-thumb_jpg.jpg?buster=1351621929","quality":7,"product_desc":"Venture51
3257
+ is a modern early-stage VC firm uniquely focused on investing in the most
3258
+ promising founders in high-growth markets at the \u201cTraction Gap\u201d
3259
+ growth stage. Venture51 is creating a new type of investment vehicle for early
3260
+ stage startups by bridging the gap between initial seed money and the traditional
3261
+ venture capitalists. Founded in 2010, the firm invests in high technology
3262
+ companies and has made 40 investments to date, including: Betabe, Life360,
3263
+ eToro, Space Monkey, and Getaround.\n\n","high_concept":"A modern venture
3264
+ capital firm investing in the remarkable companies of today and tomorrow.","follower_count":112,"company_url":"http://www.venture51.com","created_at":"2012-01-18T00:40:08Z","updated_at":"2013-03-05T23:19:53Z"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3265
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3266
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3267
+ We invest in internet startups on search, social, & mobile platforms. We run
3268
+ an incubation and accelerator program emphasizing design & user experience,
3269
+ distribution & customer acquisition, and lean startup practices & metrics.
3270
+ Our investment team and mentor network has operational experience at companies
3271
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3272
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3273
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":533124,"role":"past_investor","created_at":"2013-02-26T11:43:17Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Rob
3274
+ de Heus","id":93662,"bio":"Venture Capitalist and CEO of DHG Communications
3275
+ Network BV and member Investment Committee @peakcapital .","follower_count":141,"angellist_url":"https://angel.co/rob-de-heus","image":"https://s3.amazonaws.com/photos.angel.co/users/93662-medium_jpg?1328533268"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3276
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3277
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3278
+ We invest in internet startups on search, social, & mobile platforms. We run
3279
+ an incubation and accelerator program emphasizing design & user experience,
3280
+ distribution & customer acquisition, and lean startup practices & metrics.
3281
+ Our investment team and mentor network has operational experience at companies
3282
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3283
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3284
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":531121,"role":"past_investor","created_at":"2013-02-25T19:07:34Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Thijs
3285
+ Gitmans","id":42607,"bio":"Fund manager @peakcapital, early stage VC fund
3286
+ investing in The Netherlands. Angel investor, investing outside Netherlands
3287
+ w @rob-de-heus. Coaching startups","follower_count":113,"angellist_url":"https://angel.co/thijsgitmans","image":"https://s3.amazonaws.com/photos.angel.co/users/42607-medium_jpg?1347374657"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3288
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3289
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3290
+ We invest in internet startups on search, social, & mobile platforms. We run
3291
+ an incubation and accelerator program emphasizing design & user experience,
3292
+ distribution & customer acquisition, and lean startup practices & metrics.
3293
+ Our investment team and mentor network has operational experience at companies
3294
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3295
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3296
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":527152,"role":"past_investor","created_at":"2013-02-22T23:56:08Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Tim
3297
+ Fong","id":94288,"bio":"Investor @500-startups-fund-ii, @fundersclub","follower_count":39,"angellist_url":"https://angel.co/tfong","image":"https://s3.amazonaws.com/photos.angel.co/users/94288-medium_jpg?1333861063"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3298
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3299
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3300
+ We invest in internet startups on search, social, & mobile platforms. We run
3301
+ an incubation and accelerator program emphasizing design & user experience,
3302
+ distribution & customer acquisition, and lean startup practices & metrics.
3303
+ Our investment team and mentor network has operational experience at companies
3304
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3305
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3306
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":514732,"role":"past_investor","created_at":"2013-02-16T07:36:45Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Eric
3307
+ Kwan","id":8836,"bio":"Software engineer at @facebook, former @yahoo, @oracle-corporation \u2022
3308
+ Studied at @stanford-university, @carnegie-mellon-university","follower_count":198,"angellist_url":"https://angel.co/eric-kwan","image":"https://s3.amazonaws.com/photos.angel.co/users/8836-medium_jpg?1298389828"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3309
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3310
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3311
+ We invest in internet startups on search, social, & mobile platforms. We run
3312
+ an incubation and accelerator program emphasizing design & user experience,
3313
+ distribution & customer acquisition, and lean startup practices & metrics.
3314
+ Our investment team and mentor network has operational experience at companies
3315
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3316
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3317
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":513842,"role":"past_investor","created_at":"2013-02-15T18:33:58Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Gene
3318
+ Alston","id":243284,"bio":"Formerly @paypal & @Concentric Networks. Currently
3319
+ @groupon leading merchant mobile payments.","follower_count":24,"angellist_url":"https://angel.co/gene-alston","image":"https://s3.amazonaws.com/photos.angel.co/users/243284-medium_jpg?1360700617"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3320
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3321
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3322
+ We invest in internet startups on search, social, & mobile platforms. We run
3323
+ an incubation and accelerator program emphasizing design & user experience,
3324
+ distribution & customer acquisition, and lean startup practices & metrics.
3325
+ Our investment team and mentor network has operational experience at companies
3326
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3327
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3328
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":513349,"role":"past_investor","created_at":"2013-02-15T08:59:26Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Rupesh
3329
+ Chatwani","id":179598,"bio":"Technology VC, Studied at @london-business-school","follower_count":94,"angellist_url":"https://angel.co/rupechat","image":"https://s3.amazonaws.com/photos.angel.co/users/179598-medium_jpg?1348672228"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3330
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3331
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3332
+ We invest in internet startups on search, social, & mobile platforms. We run
3333
+ an incubation and accelerator program emphasizing design & user experience,
3334
+ distribution & customer acquisition, and lean startup practices & metrics.
3335
+ Our investment team and mentor network has operational experience at companies
3336
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3337
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3338
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":512260,"role":"past_investor","created_at":"2013-02-14T17:55:39Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"Startup","id":112652,"hidden":false,"community_profile":false,"name":"Promus
3339
+ Ventures","angellist_url":"https://angel.co/promus-ventures","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/112652-b6f9a3e79e6835fbd4710c49c4bfb291-medium_jpg.jpg?buster=1360864320","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/112652-b6f9a3e79e6835fbd4710c49c4bfb291-thumb_jpg.jpg?buster=1360864320","quality":6,"product_desc":null,"high_concept":"Investing
3340
+ in early stage software companies that are changing the world.","follower_count":34,"company_url":"http://www.promusventures.com","created_at":"2012-08-10T21:55:24Z","updated_at":"2013-02-20T23:52:02Z"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3341
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3342
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3343
+ We invest in internet startups on search, social, & mobile platforms. We run
3344
+ an incubation and accelerator program emphasizing design & user experience,
3345
+ distribution & customer acquisition, and lean startup practices & metrics.
3346
+ Our investment team and mentor network has operational experience at companies
3347
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3348
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3349
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":505594,"role":"past_investor","created_at":"2013-02-11T11:38:39Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"Startup","id":146194,"hidden":false,"community_profile":false,"name":"Innovation
3350
+ Nest","angellist_url":"https://angel.co/innovation-nest","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/146194-49a6f28bb0a975ed44398c5578f0e2b9-medium_jpg.jpg?buster=1355944843","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/146194-49a6f28bb0a975ed44398c5578f0e2b9-thumb_jpg.jpg?buster=1355944843","quality":4,"product_desc":null,"high_concept":"Seed
3351
+ fund supporting high-tech entrepreneurs","follower_count":21,"company_url":"http://www.innovationnest.co","created_at":"2012-12-12T11:21:15Z","updated_at":"2013-02-18T14:14:16Z"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3352
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3353
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3354
+ We invest in internet startups on search, social, & mobile platforms. We run
3355
+ an incubation and accelerator program emphasizing design & user experience,
3356
+ distribution & customer acquisition, and lean startup practices & metrics.
3357
+ Our investment team and mentor network has operational experience at companies
3358
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3359
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3360
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":505591,"role":"past_investor","created_at":"2013-02-11T11:34:54Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Piotr
3361
+ Wilam","id":115812,"bio":"Founder, investor and managing partner @innovation-nest
3362
+ ","follower_count":150,"angellist_url":"https://angel.co/piotrwilam","image":"https://s3.amazonaws.com/photos.angel.co/users/115812-medium_jpg?1334049346"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3363
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3364
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3365
+ We invest in internet startups on search, social, & mobile platforms. We run
3366
+ an incubation and accelerator program emphasizing design & user experience,
3367
+ distribution & customer acquisition, and lean startup practices & metrics.
3368
+ Our investment team and mentor network has operational experience at companies
3369
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3370
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3371
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":501488,"role":"advisor","created_at":"2013-02-08T01:01:41Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Hans
3372
+ Yeakel","id":182471,"bio":"Mentor @500startups. Lead sales & operations @appsumo.
3373
+ Previously founder and COO of ToneRite.","follower_count":14,"angellist_url":"https://angel.co/hansyeakel","image":"https://s3.amazonaws.com/photos.angel.co/users/182471-medium_jpg?1355261832"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3374
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3375
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3376
+ We invest in internet startups on search, social, & mobile platforms. We run
3377
+ an incubation and accelerator program emphasizing design & user experience,
3378
+ distribution & customer acquisition, and lean startup practices & metrics.
3379
+ Our investment team and mentor network has operational experience at companies
3380
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3381
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3382
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":497989,"role":"past_investor","created_at":"2013-02-06T04:57:24Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"Startup","id":56200,"hidden":false,"community_profile":true,"name":"Siemer
3383
+ Ventures","angellist_url":"https://angel.co/siemer-ventures","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/56200-f2f49d7eaa89e32c4d4cff0e3f10b7bd-medium_jpg.jpg?buster=1352514854","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/56200-f2f49d7eaa89e32c4d4cff0e3f10b7bd-thumb_jpg.jpg?buster=1352514854","quality":6,"product_desc":null,"high_concept":"Dedicated
3384
+ to helping entrepreneurs build sustainable technology-related businesses","follower_count":50,"company_url":"http://www.siemervc.com","created_at":"2012-01-18T05:02:42Z","updated_at":"2013-02-06T05:06:19Z"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3385
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3386
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3387
+ We invest in internet startups on search, social, & mobile platforms. We run
3388
+ an incubation and accelerator program emphasizing design & user experience,
3389
+ distribution & customer acquisition, and lean startup practices & metrics.
3390
+ Our investment team and mentor network has operational experience at companies
3391
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3392
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3393
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":491231,"role":"past_investor","created_at":"2013-02-01T21:46:34Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Mike
3394
+ Collett","id":118741,"bio":"Founding Partner @promus-ventures, @masters-capital-nanotechnology-1
3395
+ \u2022 Worked @Masters Capital (hedge fund), @merrill-lynch (M&A)","follower_count":215,"angellist_url":"https://angel.co/mlcollett","image":"https://s3.amazonaws.com/photos.angel.co/users/118741-medium_jpg?1344954222"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3396
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3397
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3398
+ We invest in internet startups on search, social, & mobile platforms. We run
3399
+ an incubation and accelerator program emphasizing design & user experience,
3400
+ distribution & customer acquisition, and lean startup practices & metrics.
3401
+ Our investment team and mentor network has operational experience at companies
3402
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3403
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3404
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":484587,"role":"past_investor","created_at":"2013-01-29T01:39:16Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Fay
3405
+ Rotenberg","id":6666,"bio":"VC Investor, operating around the table - startups,
3406
+ entrepreneurship, and investing - w/a focus on clean energy/education/finance
3407
+ + tech ","follower_count":323,"angellist_url":"https://angel.co/fyietc","image":"https://s3.amazonaws.com/photos.angel.co/users/6666-medium_jpg?1309833256"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3408
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3409
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3410
+ We invest in internet startups on search, social, & mobile platforms. We run
3411
+ an incubation and accelerator program emphasizing design & user experience,
3412
+ distribution & customer acquisition, and lean startup practices & metrics.
3413
+ Our investment team and mentor network has operational experience at companies
3414
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3415
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3416
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":478530,"role":"past_investor","created_at":"2013-01-24T15:09:03Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"salim
3417
+ jabr","id":229404,"bio":null,"follower_count":6,"angellist_url":"https://angel.co/salim-jabr","image":"https://angel.co/images/shared/nopic.png"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3418
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3419
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3420
+ We invest in internet startups on search, social, & mobile platforms. We run
3421
+ an incubation and accelerator program emphasizing design & user experience,
3422
+ distribution & customer acquisition, and lean startup practices & metrics.
3423
+ Our investment team and mentor network has operational experience at companies
3424
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3425
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3426
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":476058,"role":"employee","created_at":"2013-01-23T00:10:04Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Mike
3427
+ Greenfield","id":1219,"bio":"Founded @circle-of-moms, @team-rankings. Early
3428
+ at @linkedin (analytics), @paypal (fraud detection).","follower_count":819,"angellist_url":"https://angel.co/mike_greenfield","image":"https://s3.amazonaws.com/photos.angel.co/users/1219-medium_jpg?1294803869"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3429
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3430
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3431
+ We invest in internet startups on search, social, & mobile platforms. We run
3432
+ an incubation and accelerator program emphasizing design & user experience,
3433
+ distribution & customer acquisition, and lean startup practices & metrics.
3434
+ Our investment team and mentor network has operational experience at companies
3435
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3436
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3437
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":474622,"role":"past_investor","created_at":"2013-01-22T03:28:09Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Corey
3438
+ Hoffstein","id":17264,"bio":"Co-Founder & CIO @ Newfound, where we use quantitatively-enabled
3439
+ solutions to promote behavior-driven investment strategies over chasing performance","follower_count":62,"angellist_url":"https://angel.co/choffstein","image":"https://s3.amazonaws.com/photos.angel.co/users/17264-medium_jpg?1337811027"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3440
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3441
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3442
+ We invest in internet startups on search, social, & mobile platforms. We run
3443
+ an incubation and accelerator program emphasizing design & user experience,
3444
+ distribution & customer acquisition, and lean startup practices & metrics.
3445
+ Our investment team and mentor network has operational experience at companies
3446
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3447
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3448
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":470066,"role":"advisor","created_at":"2013-01-17T21:59:44Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Malcolm
3449
+ Ong","id":38849,"bio":"Co-founder of @skillshare. @500startups Mentor. @djz
3450
+ Advisor & Consultant. @sxsw Panel Liaison. Previously: @omgpop, @razorfish,
3451
+ @ibm & Extreme Blue. CMU ''05","follower_count":183,"angellist_url":"https://angel.co/malcolmong","image":"https://s3.amazonaws.com/photos.angel.co/users/38849-medium_jpg?1322769860"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3452
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3453
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3454
+ We invest in internet startups on search, social, & mobile platforms. We run
3455
+ an incubation and accelerator program emphasizing design & user experience,
3456
+ distribution & customer acquisition, and lean startup practices & metrics.
3457
+ Our investment team and mentor network has operational experience at companies
3458
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3459
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3460
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":463049,"role":"past_investor","created_at":"2013-01-13T00:18:37Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Sten
3461
+ Tamkivi","id":5444,"bio":"Entrepreneur turned @skype leader (products; 400+
3462
+ ppl site). Advisor to President of Estonia. @stanford-graduate-school-of-business
3463
+ ''13. Founded Halo Interactive at 18 (sold to DDB).","follower_count":705,"angellist_url":"https://angel.co/sten","image":"https://s3.amazonaws.com/photos.angel.co/users/5444-medium_jpg?1296327950"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3464
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3465
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3466
+ We invest in internet startups on search, social, & mobile platforms. We run
3467
+ an incubation and accelerator program emphasizing design & user experience,
3468
+ distribution & customer acquisition, and lean startup practices & metrics.
3469
+ Our investment team and mentor network has operational experience at companies
3470
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3471
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3472
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":461454,"role":"past_investor","created_at":"2013-01-11T04:27:37Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Eric
3473
+ Friedman","id":2477,"bio":"Director of Business Development at @foursquare,
3474
+ prevously analyst at @union-square-ventures, Founded @eat-ly (sold to @foodspotting-part-of-opentable)","follower_count":1041,"angellist_url":"https://angel.co/ericfriedman","image":"https://s3.amazonaws.com/photos.angel.co/users/2477-medium_jpg?1311264057"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3475
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3476
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3477
+ We invest in internet startups on search, social, & mobile platforms. We run
3478
+ an incubation and accelerator program emphasizing design & user experience,
3479
+ distribution & customer acquisition, and lean startup practices & metrics.
3480
+ Our investment team and mentor network has operational experience at companies
3481
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3482
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3483
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":460085,"role":"employee","created_at":"2013-01-09T23:25:16Z","started_at":"2013-01-01","ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Mark
3484
+ Saldana","id":222318,"bio":"Marketing manager @500startups. ","follower_count":19,"angellist_url":"https://angel.co/markjsaldana","image":"https://s3.amazonaws.com/photos.angel.co/users/222318-medium_jpg?1357773869"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3485
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3486
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3487
+ We invest in internet startups on search, social, & mobile platforms. We run
3488
+ an incubation and accelerator program emphasizing design & user experience,
3489
+ distribution & customer acquisition, and lean startup practices & metrics.
3490
+ Our investment team and mentor network has operational experience at companies
3491
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3492
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3493
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":443628,"role":"employee","created_at":"2012-12-22T21:45:44Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Rui
3494
+ Ma","id":4753,"bio":"Worked at @merrill-lynch, @morgan-stanley \u2022 Studied
3495
+ at @university-of-california-berkeley, @university-of-illinois-urbana-champaign","follower_count":84,"angellist_url":"https://angel.co/ruima","image":"https://s3.amazonaws.com/photos.angel.co/users/4753-medium_jpg?1362617485"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3496
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3497
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3498
+ We invest in internet startups on search, social, & mobile platforms. We run
3499
+ an incubation and accelerator program emphasizing design & user experience,
3500
+ distribution & customer acquisition, and lean startup practices & metrics.
3501
+ Our investment team and mentor network has operational experience at companies
3502
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3503
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3504
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":438352,"role":"past_investor","created_at":"2012-12-19T05:17:08Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Steven
3505
+ Cheng","id":29760,"bio":"Founder @pengpengtao \u2022 Worked at @mixi-america
3506
+ \u2022 Studied at @williams-college, @tsinghua-university @tuck-school-of-business","follower_count":35,"angellist_url":"https://angel.co/steven-cheng","image":"https://s3.amazonaws.com/photos.angel.co/users/29760-medium_jpg?1354214811"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3507
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3508
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3509
+ We invest in internet startups on search, social, & mobile platforms. We run
3510
+ an incubation and accelerator program emphasizing design & user experience,
3511
+ distribution & customer acquisition, and lean startup practices & metrics.
3512
+ Our investment team and mentor network has operational experience at companies
3513
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3514
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3515
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":433641,"role":"past_investor","created_at":"2012-12-15T01:38:38Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Tak
3516
+ Miyata","id":75008,"bio":"Founder of Scrum Ventures, early stage-focused fund;
3517
+ and CEO of mixi America. Serial entrepreneur background ( J-Magic(mobile),
3518
+ Neven Vision(software))","follower_count":493,"angellist_url":"https://angel.co/tak-miyata","image":"https://s3.amazonaws.com/photos.angel.co/users/75008-medium_jpg?1324344876"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3519
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3520
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3521
+ We invest in internet startups on search, social, & mobile platforms. We run
3522
+ an incubation and accelerator program emphasizing design & user experience,
3523
+ distribution & customer acquisition, and lean startup practices & metrics.
3524
+ Our investment team and mentor network has operational experience at companies
3525
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3526
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3527
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":430483,"role":"employee","created_at":"2012-12-12T02:59:01Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Khailee
3528
+ Ng","id":47719,"bio":"Entrepreneur-in-Residence, 500 Startups. Co-founder:
3529
+ Groupsmore (acquired by Groupon) + SAYS.com, a profitable social news network
3530
+ in Southeast Asia. ","follower_count":137,"angellist_url":"https://angel.co/khailee","image":"https://s3.amazonaws.com/photos.angel.co/users/47719-medium_jpg?1352833107"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3531
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3532
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3533
+ We invest in internet startups on search, social, & mobile platforms. We run
3534
+ an incubation and accelerator program emphasizing design & user experience,
3535
+ distribution & customer acquisition, and lean startup practices & metrics.
3536
+ Our investment team and mentor network has operational experience at companies
3537
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3538
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3539
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":429327,"role":"past_investor","created_at":"2012-12-11T08:12:45Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"David
3540
+ Lyman","id":123825,"bio":"Entrepreneur and Angel. Co-Founder of @nutshellmail
3541
+ which sold to @constant-contact where I now build new products and businesses
3542
+ internally.","follower_count":81,"angellist_url":"https://angel.co/davidlyman","image":"https://s3.amazonaws.com/photos.angel.co/users/123825-medium_jpg?1335907288"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3543
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3544
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3545
+ We invest in internet startups on search, social, & mobile platforms. We run
3546
+ an incubation and accelerator program emphasizing design & user experience,
3547
+ distribution & customer acquisition, and lean startup practices & metrics.
3548
+ Our investment team and mentor network has operational experience at companies
3549
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3550
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3551
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":428823,"role":"advisor","created_at":"2012-12-10T22:05:11Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Nick
3552
+ Ellis","id":4790,"bio":"Founder @job-rooster \u2022 Studied at @stanford-university,
3553
+ @london-school-of-economics","follower_count":146,"angellist_url":"https://angel.co/nellis","image":"https://s3.amazonaws.com/photos.angel.co/users/4790-medium_jpg?1307398538"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3554
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3555
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3556
+ We invest in internet startups on search, social, & mobile platforms. We run
3557
+ an incubation and accelerator program emphasizing design & user experience,
3558
+ distribution & customer acquisition, and lean startup practices & metrics.
3559
+ Our investment team and mentor network has operational experience at companies
3560
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3561
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3562
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":427697,"role":"past_investor","created_at":"2012-12-10T07:20:28Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Matt
3563
+ Monahan","id":65547,"bio":"Without sales, you have no business to manage.
3564
+ @stanford-university Grad, @alphaboost-1 Founder, @500startups Trifecta --
3565
+ Mentor, Company, LP #hustler\n\n","follower_count":451,"angellist_url":"https://angel.co/gomattymo","image":"https://s3.amazonaws.com/photos.angel.co/users/65547-medium_jpg?1344897415"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3566
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3567
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3568
+ We invest in internet startups on search, social, & mobile platforms. We run
3569
+ an incubation and accelerator program emphasizing design & user experience,
3570
+ distribution & customer acquisition, and lean startup practices & metrics.
3571
+ Our investment team and mentor network has operational experience at companies
3572
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3573
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3574
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":424140,"role":"advisor","created_at":"2012-12-05T23:02:49Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Andy
3575
+ Johns","id":65926,"bio":"Formerly worked on User Growth at @facebook and @twitter.
3576
+ Currently PM of User Growth at @quora. I advise startups on how to grow.","follower_count":305,"angellist_url":"https://angel.co/andyjohns","image":"https://s3.amazonaws.com/photos.angel.co/users/65926-medium_jpg?1335397720"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3577
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3578
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3579
+ We invest in internet startups on search, social, & mobile platforms. We run
3580
+ an incubation and accelerator program emphasizing design & user experience,
3581
+ distribution & customer acquisition, and lean startup practices & metrics.
3582
+ Our investment team and mentor network has operational experience at companies
3583
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3584
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3585
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":416491,"role":"past_investor","created_at":"2012-11-29T19:35:51Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Shai
3586
+ Goldman","id":570,"bio":"Venture Partner at 500 Startups - based in NYC","follower_count":1172,"angellist_url":"https://angel.co/shaig","image":"https://s3.amazonaws.com/photos.angel.co/users/570-medium_jpg?1349383724"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3587
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3588
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3589
+ We invest in internet startups on search, social, & mobile platforms. We run
3590
+ an incubation and accelerator program emphasizing design & user experience,
3591
+ distribution & customer acquisition, and lean startup practices & metrics.
3592
+ Our investment team and mentor network has operational experience at companies
3593
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3594
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3595
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":390859,"role":"advisor","created_at":"2012-11-05T00:53:55Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Vitaly
3596
+ M. Golomb","id":4089,"bio":"CEO @keen-systems // CEO @europe Venture Summit //
3597
+ Mentor @500startups @happy-farm @innovation-nest // Award-winning designer
3598
+ // Speaker","follower_count":364,"angellist_url":"https://angel.co/vitalyg","image":"https://s3.amazonaws.com/photos.angel.co/users/4089-medium_jpg?1340302283"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3599
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3600
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3601
+ We invest in internet startups on search, social, & mobile platforms. We run
3602
+ an incubation and accelerator program emphasizing design & user experience,
3603
+ distribution & customer acquisition, and lean startup practices & metrics.
3604
+ Our investment team and mentor network has operational experience at companies
3605
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3606
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3607
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":384351,"role":"employee","created_at":"2012-10-28T17:26:00Z","started_at":"2012-10-01","ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Bruna
3608
+ Maia","id":182478,"bio":"Events & Content Director","follower_count":31,"angellist_url":"https://angel.co/bru_maia","image":"https://s3.amazonaws.com/photos.angel.co/users/182478-medium_jpg?1351447734"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3609
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3610
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3611
+ We invest in internet startups on search, social, & mobile platforms. We run
3612
+ an incubation and accelerator program emphasizing design & user experience,
3613
+ distribution & customer acquisition, and lean startup practices & metrics.
3614
+ Our investment team and mentor network has operational experience at companies
3615
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3616
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3617
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":384350,"role":"employee","created_at":"2012-10-28T17:25:18Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Sheila
3618
+ Goodman","id":111677,"bio":"Business Development & Events Manager","follower_count":52,"angellist_url":"https://angel.co/sheila-goodman","image":"https://s3.amazonaws.com/photos.angel.co/users/111677-medium_jpg?1333065452"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3619
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3620
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3621
+ We invest in internet startups on search, social, & mobile platforms. We run
3622
+ an incubation and accelerator program emphasizing design & user experience,
3623
+ distribution & customer acquisition, and lean startup practices & metrics.
3624
+ Our investment team and mentor network has operational experience at companies
3625
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3626
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3627
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":380401,"role":"past_investor","created_at":"2012-10-23T13:43:14Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Raj
3628
+ Bhaskar","id":100380,"bio":"Software Entrepreneur","follower_count":98,"angellist_url":"https://angel.co/raj-bhaskar","image":"https://s3.amazonaws.com/photos.angel.co/users/100380-medium_jpg?1330435502"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3629
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3630
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3631
+ We invest in internet startups on search, social, & mobile platforms. We run
3632
+ an incubation and accelerator program emphasizing design & user experience,
3633
+ distribution & customer acquisition, and lean startup practices & metrics.
3634
+ Our investment team and mentor network has operational experience at companies
3635
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3636
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3637
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":369024,"role":"advisor","created_at":"2012-10-09T06:34:20Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Sergei
3638
+ Burkov","id":15876,"bio":"3x entrepreneur (Bilbo, Invincible, @dulance), sold
3639
+ a company to @google, became the first head of its Moscow R&D Center. PhD
3640
+ in Physics","follower_count":563,"angellist_url":"https://angel.co/burkov","image":"https://s3.amazonaws.com/photos.angel.co/users/15876-medium_jpg?1311188772"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3641
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3642
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3643
+ We invest in internet startups on search, social, & mobile platforms. We run
3644
+ an incubation and accelerator program emphasizing design & user experience,
3645
+ distribution & customer acquisition, and lean startup practices & metrics.
3646
+ Our investment team and mentor network has operational experience at companies
3647
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3648
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3649
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":365845,"role":"employee","created_at":"2012-10-04T22:29:38Z","started_at":"2012-10-01","ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Pankaj
3650
+ Jain","id":35540,"bio":"Venture Partner at @500-startups-fund-ii, Country
3651
+ Coordinator @startup-weekend India","follower_count":1189,"angellist_url":"https://angel.co/pjain","image":"https://s3.amazonaws.com/photos.angel.co/users/35540-medium_jpg?1311880896"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3652
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3653
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3654
+ We invest in internet startups on search, social, & mobile platforms. We run
3655
+ an incubation and accelerator program emphasizing design & user experience,
3656
+ distribution & customer acquisition, and lean startup practices & metrics.
3657
+ Our investment team and mentor network has operational experience at companies
3658
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3659
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3660
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":365672,"role":"employee","created_at":"2012-10-04T20:48:30Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Shai
3661
+ Goldman","id":570,"bio":"Venture Partner at 500 Startups - based in NYC","follower_count":1172,"angellist_url":"https://angel.co/shaig","image":"https://s3.amazonaws.com/photos.angel.co/users/570-medium_jpg?1349383724"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3662
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3663
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3664
+ We invest in internet startups on search, social, & mobile platforms. We run
3665
+ an incubation and accelerator program emphasizing design & user experience,
3666
+ distribution & customer acquisition, and lean startup practices & metrics.
3667
+ Our investment team and mentor network has operational experience at companies
3668
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3669
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3670
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":350278,"role":"past_investor","created_at":"2012-09-19T01:11:42Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Massimo
3671
+ Agostinelli","id":176181,"bio":"Worked at @rhone-group-l-l-c \u2022 Studied
3672
+ at @webster-university, @european-business-school-london","follower_count":22,"angellist_url":"https://angel.co/agosmas","image":"https://s3.amazonaws.com/photos.angel.co/users/176181-medium_jpg?1348017650"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3673
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3674
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3675
+ We invest in internet startups on search, social, & mobile platforms. We run
3676
+ an incubation and accelerator program emphasizing design & user experience,
3677
+ distribution & customer acquisition, and lean startup practices & metrics.
3678
+ Our investment team and mentor network has operational experience at companies
3679
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3680
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3681
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":344294,"role":"past_investor","created_at":"2012-09-13T21:18:50Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Robert
3682
+ Wong","id":173826,"bio":null,"follower_count":22,"angellist_url":"https://angel.co/robert-wong-2","image":"https://s3.amazonaws.com/photos.angel.co/users/173826-medium_jpg?1347571012"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3683
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3684
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3685
+ We invest in internet startups on search, social, & mobile platforms. We run
3686
+ an incubation and accelerator program emphasizing design & user experience,
3687
+ distribution & customer acquisition, and lean startup practices & metrics.
3688
+ Our investment team and mentor network has operational experience at companies
3689
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3690
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3691
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":341445,"role":"employee","created_at":"2012-09-11T14:40:17Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"C\u00e9sar
3692
+ Salazar","id":50147,"bio":"Venture Partner at @500startups. Leading key efforts
3693
+ to empower the hackers & founders from our Mexico City Hub.","follower_count":375,"angellist_url":"https://angel.co/cesarsalazar","image":"https://s3.amazonaws.com/photos.angel.co/users/50147-medium_jpg?1354059060"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3694
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3695
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3696
+ We invest in internet startups on search, social, & mobile platforms. We run
3697
+ an incubation and accelerator program emphasizing design & user experience,
3698
+ distribution & customer acquisition, and lean startup practices & metrics.
3699
+ Our investment team and mentor network has operational experience at companies
3700
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3701
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3702
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":341443,"role":"employee","created_at":"2012-09-11T14:37:07Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Santiago
3703
+ Zavala","id":73494,"bio":"Founder Mexican.vc, Super Happy Dev House Mexico
3704
+ City, Startup Weekend Mexico City, Co-Curate Startup Digest SV, Passionate
3705
+ hacker, thinker, photographer. ","follower_count":169,"angellist_url":"https://angel.co/dfectuoso","image":"https://s3.amazonaws.com/photos.angel.co/users/73494-medium_jpg?1321315090"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3706
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3707
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3708
+ We invest in internet startups on search, social, & mobile platforms. We run
3709
+ an incubation and accelerator program emphasizing design & user experience,
3710
+ distribution & customer acquisition, and lean startup practices & metrics.
3711
+ Our investment team and mentor network has operational experience at companies
3712
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3713
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3714
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":330608,"role":"past_investor","created_at":"2012-08-30T21:12:22Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Shin
3715
+ Nagakura","id":168191,"bio":null,"follower_count":26,"angellist_url":"https://angel.co/nagakura","image":"https://graph.facebook.com/nagakura/picture?type=square"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3716
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3717
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3718
+ We invest in internet startups on search, social, & mobile platforms. We run
3719
+ an incubation and accelerator program emphasizing design & user experience,
3720
+ distribution & customer acquisition, and lean startup practices & metrics.
3721
+ Our investment team and mentor network has operational experience at companies
3722
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3723
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3724
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":323560,"role":"past_investor","created_at":"2012-08-23T17:50:30Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Lori
3725
+ Anne Wardi","id":99520,"bio":"Attorney, Investor, Entrepreneur, Co-founder
3726
+ of .CO ","follower_count":171,"angellist_url":"https://angel.co/domaindiva","image":"https://s3.amazonaws.com/photos.angel.co/users/99520-medium_jpg?1330290210"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3727
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3728
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3729
+ We invest in internet startups on search, social, & mobile platforms. We run
3730
+ an incubation and accelerator program emphasizing design & user experience,
3731
+ distribution & customer acquisition, and lean startup practices & metrics.
3732
+ Our investment team and mentor network has operational experience at companies
3733
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3734
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3735
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":322805,"role":"advisor","created_at":"2012-08-23T01:42:57Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Roger
3736
+ Dickey","id":1078,"bio":"Mafia Wars founder ( @zynga ), Serial entrepreneur
3737
+ (3 startups), Angel investor (20+ companies)","follower_count":2465,"angellist_url":"https://angel.co/rogerdickey","image":"https://s3.amazonaws.com/photos.angel.co/users/1078-medium_jpg?1334979511"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3738
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3739
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3740
+ We invest in internet startups on search, social, & mobile platforms. We run
3741
+ an incubation and accelerator program emphasizing design & user experience,
3742
+ distribution & customer acquisition, and lean startup practices & metrics.
3743
+ Our investment team and mentor network has operational experience at companies
3744
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3745
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3746
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":318286,"role":"advisor","created_at":"2012-08-19T18:57:47Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Joe
3747
+ Hyrkin","id":163551,"bio":null,"follower_count":114,"angellist_url":"https://angel.co/joe-hyrkin","image":"https://s3.amazonaws.com/photos.angel.co/users/163551-medium_jpg?1345402021"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3748
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3749
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3750
+ We invest in internet startups on search, social, & mobile platforms. We run
3751
+ an incubation and accelerator program emphasizing design & user experience,
3752
+ distribution & customer acquisition, and lean startup practices & metrics.
3753
+ Our investment team and mentor network has operational experience at companies
3754
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3755
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3756
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":313384,"role":"employee","created_at":"2012-08-16T18:16:57Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Sabrina
3757
+ Ilich","id":162365,"bio":"Worked at @500 Startups (Fund II) \u2022 Studied
3758
+ at @SCU","follower_count":17,"angellist_url":"https://angel.co/sabrinailich","image":"https://s3.amazonaws.com/photos.angel.co/users/162365-medium_jpg?1361833611"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3759
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3760
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3761
+ We invest in internet startups on search, social, & mobile platforms. We run
3762
+ an incubation and accelerator program emphasizing design & user experience,
3763
+ distribution & customer acquisition, and lean startup practices & metrics.
3764
+ Our investment team and mentor network has operational experience at companies
3765
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3766
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3767
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}},{"id":309070,"role":"past_investor","created_at":"2012-08-13T05:10:05Z","started_at":null,"ended_at":null,"confirmed":true,"tagged":{"type":"User","name":"Ben
3768
+ Li","id":160600,"bio":"angel investor with focus on enterprise software. ","follower_count":29,"angellist_url":"https://angel.co/ben-li-7927","image":"https://s3.amazonaws.com/photos.angel.co/users/160600-medium_jpg?1344834760"},"startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
3769
+ Startups (Fund II)","angellist_url":"https://angel.co/500-startups-fund-ii","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium_jpg.jpg?buster=1333564428","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb_jpg.jpg?buster=1333564428","quality":7,"product_desc":"500
3770
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
3771
+ We invest in internet startups on search, social, & mobile platforms. We run
3772
+ an incubation and accelerator program emphasizing design & user experience,
3773
+ distribution & customer acquisition, and lean startup practices & metrics.
3774
+ Our investment team and mentor network has operational experience at companies
3775
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
3776
+ & Facebook.","high_concept":"Silicon Valley seed fund & internet accelerator
3777
+ founded by PayPal, Google, YouTube alums.","follower_count":6304,"company_url":"http://500.co","created_at":"2010-11-16T01:50:25Z","updated_at":"2012-12-30T19:44:51Z"}}],"total":188,"per_page":50,"page":1,"last_page":4}'
3778
+ http_version: !!null
3779
+ recorded_at: Thu, 21 Mar 2013 14:55:50 GMT
3780
+ recorded_with: VCR 2.4.0