| Metric | Nyne.ai | Sixtyfour |
|---|---|---|
| Category | People Search | People Search |
| Pricing | Freemium | 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 | Not publicly documented. Async API pattern — POST to submit, poll GET for results. | 500 req/min per API key |
| Score Component | Nyne.ai | 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 |
| Nyne.ai | Sixtyfour | |
|---|---|---|
| Pros |
|
|
| Cons |
|
|
| Badges | API KeyFreemiumJSONBot Blocking: NoneNo CCpeople-searchpeople-enrichmentcompany-enrichmentsocial-mediacontact-dataidentity-resolutionintent-dataevent-attendeesb2b-data | API KeyPay-as-you-goJSONBot Blocking: NoneNo CCpeople-searchcompany-enrichmentlead-enrichmentemail-finderphone-finderasync-apiai-agents |
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)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"])