| Metric | Ocean.io | PredictLeads |
|---|---|---|
| Category | Company Search | Company Search |
| Pricing | Subscription | Freemium |
| Auth | API Key | API Key |
| Format | JSON | JSON |
| Bot Blocking | None | None |
| OpenAPI Spec | Yes | Yes |
| Credit Card | Required | Not required |
| Rate Limit | 60 req/min default across most endpoints. Returns Retry-After and X-RateLimit-Limit headers when exceeded. Higher limits available on request. | Credit-based — 100 free req/month, then pay-as-you-go with volume discounts |
| Score Component | Ocean.io | PredictLeads |
|---|---|---|
| Base | +50 | +50 |
| OpenAPI Spec | +15 (Yes) | +15 (Yes) |
| Auth | +10 (API Key) | +10 (API Key) |
| Format | +10 (JSON) | +10 (JSON) |
| Bot Blocking | +10 (None) | +10 (None) |
| No CC | 0 (No) | +5 (Yes) |
| Free | 0 (No) | 0 (No) |
| Total | 95 | 100 |
| Ocean.io | PredictLeads | |
|---|---|---|
| Pros |
|
|
| Cons |
|
|
| Badges | OpenAPI SpecAPI KeySubscriptionJSONBot Blocking: Nonecompany-searchpeople-searchcompany-enrichmentpeople-enrichmentlookalike-searchemail-finderphone-finderb2b-datalead-generation | OpenAPI SpecAPI KeyFreemiumJSONBot Blocking: NoneNo CCcompany-datajob-openingsnews-eventsfinancingtechnographicscompany-intelligencemcp-serverb2b-data |
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"])PredictLeads Integration
example.py
import requests
BASE = "https://predictleads.com/api/v3"headers = { "X-Api-Key": "YOUR_API_KEY", "X-Api-Token": "YOUR_API_TOKEN"}
# Get job openings for a company by domainresp = requests.get( f"{BASE}/companies/stripe.com/job_openings", headers=headers)print(resp.json())
# Get technology detections for a companyresp = requests.get( f"{BASE}/companies/stripe.com/technology_detections", headers=headers)print(resp.json())