Entity Resolution

Parallel Resolver

Map any initial data about a person to their digital profiles across platforms

Authentication

🔐 Connect your Parallel API key to start resolving entities

API Reference

POST /resolve

Submit person data for entity resolution

// Request curl -X POST /resolve \ -H "Content-Type: application/json" \ -H "x-api-key: YOUR_API_KEY" \ -d '{"input": "John Smith, Software Engineer at Google, @johnsmith on Twitter"}' // Response { "trun_id": "trun_abc123def456" }

GET /resolve/{trun_id}

Get resolution results

// Response when ready { "profiles": [ { "platform_slug": "twitter", "profile_url": "https://twitter.com/johnsmith", "is_self_proclaimed": true, "is_self_referring": false, "match_reasoning": "Direct mention in input", "profile_snippet": "Software Engineer @Google..." } ] }