---
name: api.interzoid.com
description: api.interzoid.com provides a name similarity key (SimKey) generation service for full names. Given a full name string, it returns a normalized key that can be used to group or deduplicate records where names are spelled differently but refer to the same person.
host: api.interzoid.com
---

# api.interzoid.com

Interzoid is a data quality API provider. This particular endpoint serves data engineers and developers who need to match or deduplicate person records by full name — for example, consolidating CRM entries where the same individual appears under slight name variations. It returns a deterministic SimKey that acts as a fuzzy-match fingerprint for the input name.

## When to use this host

Use this host when an agent needs to deduplicate or cluster person records by full name — generate a SimKey per record and group identical keys as likely matches. Do not use it for matching partial names, usernames, email addresses, company names, or address fields; Interzoid offers separate field-specific endpoints for those use cases. If the task requires fuzzy string matching on arbitrary text (not names), use a general-purpose string similarity library or a dedicated record linkage service instead.

## Capabilities

### Name Deduplication

Generates a SimKey for a full name string, enabling grouping and deduplication of records that share the same or phonetically similar full names.

- **`fetch-full-name-match-key`** — Returns a similarity key for a full name that can be used to match or deduplicate records sharing the same or similar full names.

## Skill reference

### `fetch-full-name-match-key`

**Full Name Match Key** — Returns a similarity key for a full name that can be used to match or deduplicate records sharing the same or similar full names.

*Use when:* Use when an agent needs to compare, deduplicate, or cluster records by full name — generate a SimKey for each name and group records with identical keys as likely matches.

*Not for:* Do not use for matching partial names, email addresses, or other non-name fields; use a dedicated field-specific match key endpoint instead.

**Inputs:**

- `fullname` (string, required) — The full name (first and last, or full name string) for which to generate a similarity match key.

**Returns:** Returns a SimKey string for the provided full name, a Code of 'Success', and a Credits balance.

**Example:** `GET https://api.interzoid.com/getfullnamematch?fullname=Robert%20Smith`

---
