← back

Influencers Club vs Sixtyfour

People Search

VS
Metric Influencers Club Sixtyfour
Category People Search People Search
Pricing Subscription Pay-as-you-go
Auth API Key API Key
Format JSON JSON
Bot Blocking None None
OpenAPI Spec No No
Credit Card Not required Not required
Rate Limit Plan-dependent; contact support for specific limits. Community reports suggest ~5 req/sec throughput. 500 req/min per API key
Score Component Influencers Club Sixtyfour
Base +50 +50
OpenAPI Spec 0 (No) 0 (No)
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 85
Influencers Club Sixtyfour
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
  • + Flexible struct parameter lets agents define exactly which fields to return in natural language — no rigid schema to map
  • + Async endpoints with polling prevent timeout issues on long-running enrichment (P95 ~5 min), critical for agent orchestration
  • + Significantly higher enrichment coverage than Apollo/BuiltWith — surfaces data on even tiny businesses with a few employees
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
  • - No public pricing or free tier — agents can't self-provision, requires sales contact to get started
  • - Sync enrichment calls can take up to 15 minutes; agents must use async+polling pattern or risk HTTP timeouts
Badges
API KeySubscriptionJSONBot Blocking: NoneNo CCcreator-discoveryinfluencer-marketingdata-enrichmentinstagramyoutubetiktoktwittertwitchsocial-mediaemail-finder
API KeyPay-as-you-goJSONBot Blocking: NoneNo CCpeople-searchcompany-enrichmentlead-enrichmentemail-finderphone-finderasync-apiai-agents

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": "[email protected]"})profile = resp.json()print(profile)

Sixtyfour Integration

example.py
import requests
headers = {    "x-api-key": "YOUR_API_KEY",    "Content-Type": "application/json"}
# Enrich a leadresp = requests.post("https://api.sixtyfour.ai/enrich-lead", headers=headers, json={    "lead_info": {        "name": "Jane Smith",        "company": "Acme Corp",        "linkedin": "https://linkedin.com/in/janesmith"    },    "struct": {        "email": "Work email address",        "phone": "Direct phone number",        "title": "Current job title"    }})print(resp.json()["structured_data"])