Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Interzoid Get Full Name Match Similarity Key API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Finterzoid.com%2Finterzoid-get-full-name-match-similarity-key-api" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Finterzoid.com%2Finterzoid-get-full-name-match-similarity-key-api" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Interzoid Get Full Name Match Similarity Key API.
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
GET STARTED
Build match keys for full-name columns in MDM and contact-deduplication pipelines
Patterns agents use Interzoid Get Full Name Match Similarity Key API for, with concrete tasks.
★ 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.
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.
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.
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.
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.
1 endpoints — 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.
METHOD
PATH
DESCRIPTION
/getfullnamematch
Return a similarity key for a single-field full name
/getfullnamematch
Return a similarity key for a single-field full name
What agents get from Jentic-routed access to this vendor.
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 isolation
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.
Intent-based discovery
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.
Alternatives and complements available in the Jentic catalogue.
Specific to using Interzoid Get Full Name Match Similarity Key API through Jentic.
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.
Know of an official OpenAPI document? Contribute it →
For Agents
Generate a similarity key for a person's full name in a single field for contact deduplication. One GET endpoint, license-key auth.
Use for: Generate a similarity key for the name 'John A. Smith', Match 'John Smith' and 'Smith, John' as the same person, Deduplicate a contacts table on full name, Get a fuzzy match key for a person's name
Not supported: 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.
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.