Retrieving Full Profiles via Email
Most enrichment APIs start with a single email address. By querying the endpoint below, you can return a JSON object containing the target's full name, current employer, and role.
// Request
GET https://api.enrichment.test/v1/person?email=jane@example.com
// Response Preview
{
"full_name": "Jane Doe",
"company": "Tech Solutions Inc.",
"seniority": "Director",
"linkedin_url": "..."
}