canonical: https://jentic.com/apis/interzoid.com/interzoid-get-full-name-match-similarity-key-api

# Interzoid Get Full Name Match Similarity Key API

The Interzoid Get Full Name Match Similarity Key API returns an algorithmic similarity key for a person's full name held in a single field. Variants such as 'John A. Smith', 'Smith, John', and 'Jon Smith' typically produce the same key, so deduplication and contact-merging jobs can join on the key instead of brittle string-equality logic. The single GET /getfullnamematch endpoint authenticates with a license key passed as a query parameter and returns the similarity key as JSON. Use the Full Name Parsed Similarity Key API for first and last name data held in separate fields.

## For AI agents

Generate a similarity key for a person's full name in a single field for contact deduplication. One GET endpoint, license-key auth.

## Scope

Does not parse names into first and last components, validate that a person exists, or enrich with demographics - use for fuzzy-match key generation on single-field full-name strings only.

## Capabilities

- Generate a deterministic similarity key for a full-name string in a single field
- Collapse contact records that store the same person under different spellings or word orders
- Join two contact lists by hashing the full-name column to a similarity key first
- Cluster engagement events by person despite typos in the captured name
- Build match keys for full-name columns in MDM and contact-deduplication pipelines

## Use cases

### Contact-table deduplication

CRM admins call the Interzoid Get Full Name Match Similarity Key API for every contact's full-name field and group records that return the same key. Variants like 'John Smith', 'Smith, John', and 'J. Smith' collapse into one cluster so reps no longer call the same person twice from duplicate contact rows.

Example prompt: Iterate the contacts table, call /getfullnamematch with fullname set to each row's name, and group rows by the returned similarity key.

### Lead-list cross-reference for B2B contacts

Marketing imports a third-party B2B list and joins it against the existing CRM by computing the Interzoid full-name similarity key on both sides. The similarity-key join captures matches that exact-string compare misses, suppressing duplicate outreach to people already in the database.

Example prompt: Compute /getfullnamematch keys for the name column in the inbound lead list and the existing CRM, then suppress leads whose key already exists in CRM.

### Engagement attribution across spellings

Event tracking systems often capture the same person under slightly different name spellings across sessions. Storing the Interzoid full-name similarity key alongside each event lets attribution roll up engagement to a single person, producing accurate per-contact funnel metrics.

Example prompt: On every event ingest, call /getfullnamematch with the captured fullname and store the key as person_match_key for downstream aggregation.

### AI agent contact list cleanup

An AI agent assisting with a contact-list cleanup discovers the Interzoid Get Full Name Match Similarity Key API through Jentic and uses it to flag near-duplicate contacts during the sweep. Jentic stores the Interzoid license key in the credential vault and injects it as the license query parameter at execution time, so the agent never sees the raw key.

Example prompt: Search Jentic for 'similarity key for full name', load the Interzoid Get Full Name Match operation, and execute it for each contact's full name, then surface clusters of more than one contact sharing a key.

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | `/getfullnamematch` | Return a similarity key for a single-field full name |

## Key resources

- **Full name match similarity key** — Single GET operation that accepts a single-field full name and returns an algorithmic similarity key for fuzzy matching.

## Why Jentic

- **Setup:** Wiring the Interzoid Get Full Name Match Similarity Key API by hand means obtaining a license key, appending it as a license query parameter on each call to /getfullnamematch, and handling the request plumbing yourself. Through Jentic you install once, import this API from the API Directory, store the license key once, and your agent calls it.
- **Permission scoping:** This API exposes a single read-only GET /getfullnamematch operation that takes a full-name string in the query, with no resource id in the URL path, so scoping is at the operation level: you limit the agent to the similarity-key lookup it needs. It only computes a match key and writes nothing, so there is no destructive operation to include.
- **Credential handling:** Your Interzoid license key is stored once, encrypted, by your own Jentic One instance and injected as the license parameter at execution time. It never enters the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'similarity key for a full name' or 'match duplicate contact names', and Jentic returns the Get Full Name Match operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Interzoid Get Full Name Parsed Match Similarity Key API** — Same similarity-key approach but accepts first and last name in separate fields
- **Interzoid Get Company Name Match Similarity Key API** — Same similarity-key approach applied to company names; pair with full name for B2B contact dedup
- **Interzoid Get Address Match Similarity Key API** — Generates a similarity key for a full street address, useful as a tie-breaker for ambiguous name matches

## FAQ

### What authentication does the Interzoid Get Full Name Match Similarity Key API use?

The API uses a license key passed as the license query parameter on every call to /getfullnamematch. Through Jentic the license key is held in the credential vault and injected at execution time, so the agent never handles the raw key.

### What if my data has first and last name in separate fields?

Use the Interzoid Get Full Name Parsed Match Similarity Key API instead - it accepts firstname and lastname as separate parameters. The /getfullnamematch endpoint expects the full name combined into a single string.

### What are the rate limits for the Interzoid Get Full Name Match Similarity Key API?

The OpenAPI spec does not publish a numeric rate limit. Interzoid enforces per-license-tier quotas on the account dashboard, so check your account before running batch dedup jobs.

### How do I deduplicate names through Jentic?

Install the SDK with pip install jentic, search for 'similarity key for full name', load the Interzoid Get Full Name Match operation, and execute it for each name string, then group rows by the returned key.

### Does the API handle 'Last, First' formatting?

Yes. The similarity algorithm tolerates common reorderings, so 'John Smith' and 'Smith, John' typically produce the same key. Records with extreme transliteration differences may still need pre-normalization.

### Can I limit what my agent is allowed to do with the Interzoid Get Full Name Match Similarity Key API?

Yes. Because you run Jentic One yourself, your own rules decide which operations and credentials your agent may use, and this API exposes only the single read-only GET /getfullnamematch call. You can allow the agent that one similarity-key lookup and nothing else, since it accepts a full-name string, returns a match key, and writes no data. That keeps the agent scoped to computing match keys with your stored license key, with no destructive or account-changing operation available to it.
