| Metric | Fundable | Ocean.io |
|---|---|---|
| Category | Company Search | Company Search |
| Pricing | Freemium | Subscription |
| Auth | API Key | API Key |
| Format | JSON | JSON |
| Bot Blocking | None | None |
| OpenAPI Spec | No | Yes |
| Credit Card | Not required | Required |
| Rate Limit | Not publicly documented; contact sales for Enterprise API limits | 60 req/min default across most endpoints. Returns Retry-After and X-RateLimit-Limit headers when exceeded. Higher limits available on request. |
| Score Component | Fundable | Ocean.io |
|---|---|---|
| Base | +50 | +50 |
| OpenAPI Spec | 0 (No) | +15 (Yes) |
| Auth | +10 (API Key) | +10 (API Key) |
| Format | +10 (JSON) | +10 (JSON) |
| Bot Blocking | +10 (None) | +10 (None) |
| No CC | +5 (Yes) | 0 (No) |
| Free | 0 (No) | 0 (No) |
| Total | 85 | 95 |
| Fundable | Ocean.io | |
|---|---|---|
| Pros |
|
|
| Cons |
|
|
| Badges | API KeyFreemiumJSONBot Blocking: NoneNo CCvc-dealsstartup-datainvestor-searchfunding-roundscompany-searchsemantic-searchmcpcrunchbase-alternative | OpenAPI SpecAPI KeySubscriptionJSONBot Blocking: Nonecompany-searchpeople-searchcompany-enrichmentpeople-enrichmentlookalike-searchemail-finderphone-finderb2b-datalead-generation |
Fundable Integration
example.py
import requests
headers = { "Authorization": "Bearer YOUR_API_KEY", "Content-Type": "application/json"}
# Search investors by nameresp = requests.get( "https://tryfundable.ai/api/v1/investor/search", headers=headers, params={"query": "Sequoia Capital"})investors = resp.json()for inv in investors.get("results", []): print(inv["name"], inv.get("domain", ""))Ocean.io Integration
example.py
import requests
API_TOKEN = "YOUR_API_TOKEN"BASE = "https://api.ocean.io/v2"
# Enrich a company by domainresp = requests.post( f"{BASE}/enrich/company", params={"apiToken": API_TOKEN}, json={"domain": "stripe.com"})company = resp.json()print(company["name"], company["size"], company["industry"])