| Metric | Openmart | PredictLeads |
|---|---|---|
| Category | Company Search | Company Search |
| Pricing | Freemium | Freemium |
| Auth | API Key | API Key |
| Format | JSON | JSON |
| Bot Blocking | None | None |
| OpenAPI Spec | Yes | Yes |
| Credit Card | Not required | Not required |
| Rate Limit | 100 results per request (pagination supported). Plan-specific rate limits — contact Openmart for details. | Credit-based — 100 free req/month, then pay-as-you-go with volume discounts |
| Score Component | Openmart | 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 | +5 (Yes) | +5 (Yes) |
| Free | 0 (No) | 0 (No) |
| Total | 100 | 100 |
| Openmart | PredictLeads | |
|---|---|---|
| Pros |
|
|
| Cons |
|
|
| Badges | OpenAPI SpecAPI KeyFreemiumJSONBot Blocking: NoneNo CClocal-businessbusiness-searchlead-generationdecision-makerstech-stackdata-enrichmentb2b-datagoogle-maps | OpenAPI SpecAPI KeyFreemiumJSONBot Blocking: NoneNo CCcompany-datajob-openingsnews-eventsfinancingtechnographicscompany-intelligencemcp-serverb2b-data |
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"))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())