Overview
The V2 Resolve endpoint provides enhanced identity resolution with two powerful matching modes: traditional fuzzy matching and reverse lookup. This version improves flexibility and adds LinkedIn URL to the response.Key Enhancements in V2
- Reverse Lookup: Resolve by single email or phone without requiring a name
- LinkedIn URL: Returns LinkedIn profile URL in addition to Minerva PID
- Match Condition Filters: Ensure matched records have specific data fields
- Flexible Name Requirements: Name is optional when contact information is provided
- Optional Record ID: Record ID is now optional for V2
Request
Headers
Your API key for authentication
application/json
Request Body
An array of person records to resolve. Maximum 1000 records per request.
New in V2: Optional list of fields that must be present in the matched record for it to be returned as a match. This filters results to only include matches that have these data fields available.Valid options:
minerva_pid, linkedin_urlExample: ["linkedin_url"] will only return matches that have a LinkedIn profileExample: ["minerva_pid", "linkedin_url"] will only return matches that have bothRequest Examples
Standard Fuzzy Matching
Reverse Lookup (Email Only, No Name)
Reverse Lookup (Phone Only, No Name)
With Match Condition Filter
Response
Response Structure
Unique identifier for this API request
Array of resolution results, one per input record
ISO 8601 timestamp when the request was completed
Result Object
Your identifier from the request (may be null if not provided)
Whether a match was found in the Minerva database
Minerva person identifier (only present if is_match is true)
New in V2: LinkedIn profile URL (only present if is_match is true and LinkedIn data is available)
Confidence score for the match (0-100 scale, only present if is_match is true)
Whether the input record had sufficient valid data to attempt resolution
Object containing any validation errors encountered with the input data
Error Responses
Common Errors
400- Bad Request: Invalid input format or missing required fields401- Unauthorized: Invalid or missing API key413- Payload Too Large: More than 1000 records in request422- Unprocessable Entity: Invalid data format or invalidmatch_condition_fields500- Internal Server Error: Server error occurred
Notes
Matching Modes
V2 supports two distinct matching modes:1. Fuzzy Matching Mode
- Provide name information (first/last OR full_name) and/or contact information (emails/phones)
- At least one of name or contact info must be provided
- Uses advanced fuzzy matching algorithm
- Returns match scores based on confidence (typically 0-100)
2. Reverse Lookup Mode
- Activated when: No name provided AND exactly one email OR exactly one phone
- Performs direct lookup in unique matching database
- Faster than fuzzy matching
- Returns match score of 50.0 for reverse lookup matches
- Does not support multiple emails or phones simultaneously
Input Requirements
For Fuzzy Matching:- Provide either name OR contact information (or both)
- If providing name, must include both first_name and last_name (or full_name)
- Can provide multiple emails and/or phones
- Provide exactly ONE email OR exactly ONE phone
- Do NOT provide name information
- Cannot provide both email and phone
Match Condition Fields
Usematch_condition_fields to filter results based on data availability:
minerva_pid- Only return matches where we have a Minerva PIDlinkedin_url- Only return matches where we have LinkedIn profile data
Response Fields
record_idis optional in requests and may be null in responseslinkedin_urlis new in V2 and only returned when availablematch_scorefor reverse lookups is fixed at 50.0match_scorefor fuzzy matches ranges from 0-100, with scores above 80 indicating high confidence
Validation
- Phone numbers must be valid US phone numbers
- Email addresses must be valid email format
- Names must have at least first and last name components
- Records that fail validation will have
is_resolvable_record: falseand details invalidation_errors
Migration from V1
If you’re upgrading from V1:- URL changes from
/v1/resolveto/v2/resolve record_idis now optional (was required in V1)- Name is now optional if you provide contact information
- New
linkedin_urlfield in response - Use reverse lookup for faster email/phone-only matching
- Use
match_condition_fieldsto filter results by data availability - Match scores may differ slightly due to improved algorithm

