← back

Influencers Club vs People Data Labs

People Search

VS
Metric Influencers Club People Data Labs
Category People Search People Search
Pricing Subscription 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 Plan-dependent; contact support for specific limits. Community reports suggest ~5 req/sec throughput. 100 req/min (free) to 1,000 req/min (paid) for enrichment; 10 req/min for search endpoints
Score Component Influencers Club People Data Labs
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
Influencers Club People Data Labs
Pros
  • + Broadest platform coverage (47 platforms, 340M+ profiles) with cross-platform linking -- agents can resolve a single email or handle into a full multi-platform creator profile in one call
  • + Simple API Key auth with no OAuth or per-platform approvals -- one key unlocks enrichment and discovery across all supported platforms
  • + Rich structured data (40+ metrics per profile including audience demographics, engagement rates, and verified emails) reduces the need for agents to call multiple APIs
  • + Massive dataset — 3B+ person profiles and 70M+ companies with broad coverage across enrichment, search, identify, and IP endpoints
  • + Official OpenAPI spec on GitHub and SDKs for Python, JS, Ruby, and Go with clean REST design and predictable JSON responses
  • + Generous free tier with no credit card required, and Autocomplete/Cleaner APIs are completely free with only rate limits
Cons
  • - No free tier for ongoing use -- the 10 free credits are one-time trial only, and the $249/month API plan is a high floor for experimentation
  • - No public OpenAPI spec and limited public code samples -- agents need manual endpoint configuration rather than auto-discovery
  • - Free tier is very limited at 100 lookups/month — Pro starts at $98/mo for only 350 person credits, making serious usage expensive
  • - Search API rate limit is tight at 10 req/min even on paid plans, which can bottleneck agent workflows doing bulk lookups
Badges
API KeySubscriptionJSONBot Blocking: NoneNo CCcreator-discoveryinfluencer-marketingdata-enrichmentinstagramyoutubetiktoktwittertwitchsocial-mediaemail-finder
OpenAPI SpecAPI KeyFreemiumJSONBot Blocking: NoneNo CCpeople-datacompany-dataenrichmentb2b-dataperson-searchip-enrichmentdata-cleaning

Influencers Club Integration

example.py
import requests
headers = {    "x-api-key": "YOUR_API_KEY",    "Content-Type": "application/json"}
# Enrich a creator by emailresp = requests.post(    "https://api.influencers.club/v1/enrich/email",    headers=headers,    json={"email": "creator@example.com"})profile = resp.json()print(profile)

People Data Labs Integration

example.py
import requests
API_KEY = "your-api-key"BASE = "https://api.peopledatalabs.com/v5"headers = {"X-Api-Key": API_KEY}
# Person Enrichmentresp = requests.get(f"{BASE}/person/enrich", headers=headers,    params={"profile": "linkedin.com/in/seanthorne"})print(resp.json())
# Company Enrichmentresp = requests.get(f"{BASE}/company/enrich", headers=headers,    params={"website": "peopledatalabs.com"})print(resp.json())