← back
Nyne.ai

Nyne.ai

85

People intelligence API with 28 endpoints — enrich persons by email/phone/LinkedIn, get social media activity, contacts, company data, event attendees, and intent signals across 250M+ public web sources.

API KeyFreemiumJSONBot Blocking: NoneNo CCpeople-searchpeople-enrichmentcompany-enrichmentsocial-mediacontact-dataidentity-resolutionintent-dataevent-attendeesb2b-data

Pros

  • + 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

  • - 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

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)

Details

Category
People Search
Pricing
Freemium
Free Tier
Free trial available. Credit-based pricing: standard enrichment costs 6 credits when data found, lite mode costs 3 credits. Social posts fetching adds +6 credits when data found.
Rate Limit
Not publicly documented. Async API pattern — POST to submit, poll GET for results.
Verified
2026-03-31

Score Breakdown

Base +50
OpenAPI Spec (No) 0
Auth Complexity (API Key) +10
Response Format (JSON) +10
Bot Blocking (None) +10
No Credit Card (Yes) +5
Completely Free (No) 0
Total 85

Related APIs in People Search