| Metric | Fundable | Openmart |
|---|---|---|
| Category | Company Search | Company Search |
| Pricing | Freemium | Freemium |
| Auth | API Key | API Key |
| Format | JSON | JSON |
| Bot Blocking | None | None |
| OpenAPI Spec | No | Yes |
| Credit Card | Not required | Not required |
| Rate Limit | Not publicly documented; contact sales for Enterprise API limits | 100 results per request (pagination supported). Plan-specific rate limits — contact Openmart for details. |
| Score Component | Fundable | Openmart |
|---|---|---|
| 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) | +5 (Yes) |
| Free | 0 (No) | 0 (No) |
| Total | 85 | 100 |
| Fundable | Openmart | |
|---|---|---|
| Pros |
|
|
| Cons |
|
|
| Badges | API KeyFreemiumJSONBot Blocking: NoneNo CCvc-dealsstartup-datainvestor-searchfunding-roundscompany-searchsemantic-searchmcpcrunchbase-alternative | OpenAPI SpecAPI KeyFreemiumJSONBot Blocking: NoneNo CClocal-businessbusiness-searchlead-generationdecision-makerstech-stackdata-enrichmentb2b-datagoogle-maps |
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", ""))Openmart Integration
example.py
import requests
headers = { "x-api-key": "YOUR_API_KEY", "Content-Type": "application/json"}
# Search for local businessesresp = requests.post( "https://api.openmart.ai/api/v1/search", headers=headers, json={ "query": "plumbers", "location": [{"city": "Los Angeles", "state": "CA"}], "limit": 100 })businesses = resp.json()for biz in businesses.get("results", []): print(biz["name"], biz.get("phone"), biz.get("email"))