Crunchbase
Crunchbase API v3.1 - Ruby Library CrunchBase Data Hub.
How to installation
Add this line to your application's Gemfile:
gem 'crunchbase-ruby-library'
And then execute:
$ bundle
Or install it yourself as:
$ gem install crunchbase-ruby-library
Certificate (User Key)
cCeate the file config/initializers/crunchbase.rb in your rails project and add user_key.
require 'crunchbase'
Crunchbase::API.key = 'user_key'
Crunchbase::API.debug = false
Creating request client
client = Crunchbase::Client.new
Searchable items
- Organization
- Person
- Product
- IPO
- Acquisitions
- Funding Rounds
Searching...
* client.search({query: "Google"}, 'organizations') # Full text search of an Organization's name, aliases
* client.search({name: "Google"}, 'organizations') # Full text search limited to name and aliases
* client.search({domain_name: "google.com"}, 'organizations') # Text search of an Organization's domain_name
* client.search({name: "encore"}, 'people') # A full-text query of name only
* client.search({query: "encore"}, 'people') # A full-text query of name, title, and company
* client.search({types: "investor"}, 'people') # Filter by type (currently, either this is empty, or is simply "investor")
* client.search({}, 'products')
* client.search({}, 'ipos')
* client.search({}, 'acquisitions')
* client.search({}, 'funding-rounds')
returned response included data on below:
* results
* total_items
* per_page
* pages
* current_page
Get Organization && RelationShips by the permalink
response = client.get('Organization', 'facebook')
Relationship objects [ primary_image founders current_team investors owned_by sub_organizations headquarters offices products categories customers competitors members memberships funding_rounds investments acquisitions acquired_by ipo funds websites images videos news ]
# Methods - Get Organization with one relationship data
1. response = client.get('Organization', 'facebook', 'PastTeam')
past_team.results.collect { |p| [p.title, p.person.first_name] }
....
Get Person by the permalink
person = client.get('Person', permalink)
#<Crunchbase::Model::Person:0x007fc185215f68 @type_name="Person", @uuid="a578dcf9859ec8b52182e3aa3c383b13", ...>
people = client.list('Person', page)
people.results
[ #<Crunchbase::Model::PersonSummary:...>,
#<Crunchbase::Model::PersonSummary: ...>,
#<Crunchbase::Model::PersonSummary: ...>,
#<Crunchbase::Model::PersonSummary: ...>
...... ]
Contributing
- Fork it ( https://github.com/encoreshao/crunchbase-ruby-library/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
Copyright
Copyright © 2015-05 Encore Shao. See LICENSE for details.