← back

Influencers Club vs Nyne.ai

People Search

VS
Nyne.ai
85
Nyne.ai
Metric Influencers Club Nyne.ai
Category People Search People Search
Pricing Subscription Freemium
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. Not publicly documented. Async API pattern — POST to submit, poll GET for results.
Score Component Influencers Club Nyne.ai
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 Nyne.ai
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
  • + Extremely broad data coverage across 250M+ websites including niche sources (Strava, SoundCloud, GitHub, forums, government records) — agents get a unified person profile from scattered digital footprints
  • + Multiple input types accepted (email, phone, LinkedIn URL, name) with confidence scoring and timestamps on every signal, letting agents assess data freshness and reliability
  • + Purpose-built for AI agents with structured JSON responses, identity graph resolution, and intent signals (life events, buying signals, brand affinities) that enable sophisticated reasoning
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
  • - Async enrichment flow (POST then poll GET with request_id) adds complexity for agents compared to synchronous APIs — requires polling logic or webhook handling
  • - Credit-based pricing with variable costs per feature (lite vs standard vs social posts) makes budget tracking complex for autonomous agents
Badges
API KeySubscriptionJSONBot Blocking: NoneNo CCcreator-discoveryinfluencer-marketingdata-enrichmentinstagramyoutubetiktoktwittertwitchsocial-mediaemail-finder
API KeyFreemiumJSONBot Blocking: NoneNo CCpeople-searchpeople-enrichmentcompany-enrichmentsocial-mediacontact-dataidentity-resolutionintent-dataevent-attendeesb2b-data

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)

Nyne.ai Integration

example.py
import requestsimport time
headers = {    "X-API-Key": "YOUR_API_KEY",    "X-API-Secret": "YOUR_API_SECRET",    "Content-Type": "application/json"}
# Submit person enrichment requestresp = requests.post(    "https://api.nyne.ai/person/enrichment",    headers=headers,    json={"linkedin_url": "https://linkedin.com/in/example"})request_id = resp.json()["request_id"]
# Poll for resultswhile True:    result = requests.get(        f"https://api.nyne.ai/person/enrichment?request_id={request_id}",        headers=headers    ).json()    if result.get("status") == "complete":        print(result["data"])        break    time.sleep(2)