Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wilddima/fedger_api
Ruby library for fedger.io api
https://github.com/wilddima/fedger_api
Last synced: about 1 month ago
JSON representation
Ruby library for fedger.io api
- Host: GitHub
- URL: https://github.com/wilddima/fedger_api
- Owner: wilddima
- License: mit
- Created: 2016-03-26T18:06:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-05T15:32:34.000Z (almost 8 years ago)
- Last Synced: 2024-09-19T20:15:11.957Z (about 2 months ago)
- Language: Ruby
- Homepage:
- Size: 99.6 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- License: LICENSE.txt
Awesome Lists containing this project
README
== Fedger_api
{}[https://travis-ci.org/WildDima/fedger_api]
Ruby library for https://fedger.io api.
------------
=== Installation
------------
Add this to your application's Gemfile:gem 'fedger_api'
And then execute:
$ bundle
Or install it yourself as:
$ gem install fedger_api
------------
=== Example
------------
More information about API on https://dev.fedger.io/docsclient = FedgerAPI::Client.new(api key)
==== Company
company_domain = 'google.com'#Returns a detailed funding history collection.
client.funding_details(company_domain)#Returns Total funding amount and current stage.
client.funding_status(company_domain)#Returns a detailed funding history collection.
client.fundings(company_domain)#Returns nodes connected to a company.
client.company_insights(company_domain)#Returns a list of investors in a company.
client.investors(company_domain)#Returns a list with city/country for operative sites of a company.
client.locations(company_domain)#Returns company peers.
client.peers(company_domain)#List of company names, an investor has invested in.
client.portfolio_companies(company_domain)#Returns details of a company profile.
client.company_snapshot(company_domain)#Returns team profiles for a company.
client.team_details(company_domain)==== Discover
# Returns a graph of vertices and edges matching the search query.
client.discovery(query)# Returns detailed corresponding companies matching the search query.
client.discovery_companies(query)# Returns detailed corresponding vertices matching the search query.
client.discovery_vertices(query)==== Geo
# Returns companies by region.
client.geo_located_companies(country_code)# Returns fundings by region.
client.geo_located_fundings(country_code)==== News
# Returns a collection of the most recent fundings covered.
client.latest_fundings==== Stats
client.stats_fundings(year, query)
==== Tagged
# Returns companies associated with tags.
client.tagged_companies(query)
# Returns fundings associated with tags.
client.tagged_fundings(query)