Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Data Enrichment / Interzoid / Interzoid Get Full Name Parsed Match Similarity Key API
Interzoid Get Full Name Parsed Match Similarity Key API logo

Interzoid Get Full Name Parsed Match Similarity Key API

Browse all Interzoid APIs
★ Only Publicly Available OpenAPI DocumentData EnrichmentData TransformationapiKey1 EndpointsREST

For Agents

Generate a similarity key for a person's name when first and last name are in separate fields. One GET endpoint, license-key auth.

Use for: Generate a similarity key from firstname=John lastname=Smith, Match 'Jon Smyth' and 'John Smith' as the same person, Deduplicate a contacts table on first and last name columns, Get a fuzzy match key for parsed person name fields

Not supported: Does not enrich contacts with demographics, validate that a person exists, or combine first and last name back into a single string - use for fuzzy-match key generation on parsed first and last name inputs only.

The Interzoid Get Full Name Parsed Match Similarity Key API returns an algorithmic similarity key for a person's name when first and last name are stored in separate fields. Variants such as 'John' / 'Smith' and 'Jon' / 'Smyth' typically produce the same key, so deduplication and contact-merging jobs can join on the key without recombining the components first. The single GET /getfullnameparsedmatch endpoint authenticates with a license key passed as a query parameter and returns the similarity key as JSON. Use the Full Name Similarity Key API when the name lives in a single field.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Interzoid Get Full Name Parsed Match Similarity Key API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Interzoid Get Full Name Parsed 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.

1

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-parsed-match-similarity-ke" | sh
2

Step 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-parsed-match-similarity-ke" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic 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.

Capabilities

What an agent can do with Interzoid Get Full Name Parsed Match Similarity Key API.

Generate a deterministic similarity key from separate first-name and last-name inputs

Collapse contact records that store the same person under spelling variants in either field

Join two contact lists on parsed name components by hashing both sides to a similarity key

Cluster engagement events by person despite typos in either name field

Build match keys for contact tables where given and family names are in distinct columns

Use Cases

Patterns agents use Interzoid Get Full Name Parsed Match Similarity Key API for, with concrete tasks.

★ Contact dedup with parsed name fields

CRMs that store given and family name in separate columns call the Interzoid Get Full Name Parsed Match Similarity Key API for each contact and group rows by the returned key. Variants like 'Jon'/'Smith' and 'John'/'Smyth' typically collapse to one cluster, so reps no longer call the same person twice from differently-spelled records.

Iterate the contacts table, call /getfullnameparsedmatch with firstname and lastname set to the row's values, and group by the returned key.

B2B lead-list cross-reference on parsed names

When a B2B lead list lands with first and last name pre-parsed, marketing computes the Interzoid parsed-name similarity key on both the inbound list and the existing CRM and joins on the key. The fuzzy join captures matches that exact-string compare misses across both name fields.

Compute /getfullnameparsedmatch keys for the firstname and lastname columns in both the inbound list and the existing CRM, then suppress leads whose key already exists.

MDM contact-name normalization

Master data management pipelines call the Interzoid Get Full Name Parsed Match Similarity Key API on every customer record at ingest to attach a stable person cluster ID. Reporting layers aggregate engagement and revenue by cluster ID rather than raw name strings, removing duplicate-name distortion in dashboards.

On every insert into the contacts staging table, call /getfullnameparsedmatch and persist the returned key as person_match_key for downstream BI.

AI agent parsed-name dedup

An AI agent assisting an analyst with a contact cleanup discovers the Interzoid Get Full Name Parsed Match Similarity Key API through Jentic and uses it to flag near-duplicates when the dataset has parsed first and last names. 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 parsed first and last name', load the Interzoid Get Full Name Parsed Match operation, and execute it for each contact's firstname and lastname pair.

Key Endpoints

1 endpoints — the interzoid get full name parsed match similarity key api returns an algorithmic similarity key for a person's name when first and last name are stored in separate fields.

METHOD

PATH

DESCRIPTION

GET

/getfullnameparsedmatch

Return a similarity key for parsed first and last name inputs

GET

/getfullnameparsedmatch

Return a similarity key for parsed first and last name inputs

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Interzoid Get Full Name Parsed Match Similarity Key API by hand means obtaining a license key, appending it as a license query parameter on each call to /getfullnameparsedmatch, 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

Permission scoping

This API exposes a single read-only GET /getfullnameparsedmatch operation that takes parsed first and last name fields 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 management

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

Intent-based discovery

Agents search Jentic by intent such as 'similarity key for parsed first and last name', and Jentic returns the Get Full Name Parsed Match operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Interzoid Get Full Name Parsed Match Similarity Key API

→

Functionally equivalent slug variant for the same /getfullnameparsedmatch endpoint

Choose between the slug variants based on which one is wired into your existing tooling - both call the same operation.

Alternative

Interzoid Get Full Name Match Similarity Key API

→

Same similarity-key approach but takes a single combined full-name string

Choose this when your dataset stores name in a single field rather than parsed first/last columns.

Complementary

Interzoid Get Company Name Match Similarity Key API

→

Same similarity-key approach applied to company names; pair with parsed name for B2B contact dedup

Use alongside the parsed-name match API when both contact name and company need fuzzy matching.

FAQs

Specific to using Interzoid Get Full Name Parsed Match Similarity Key API through Jentic.

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

The API uses a license key passed as the license query parameter on every call to /getfullnameparsedmatch. 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 stores the full name in a single field instead of separate first and last name columns?

Use the Interzoid Get Full Name Match Similarity Key API instead - it accepts the combined name as a single fullname parameter. The /getfullnameparsedmatch endpoint expects firstname and lastname to be passed separately.

What are the rate limits for the Interzoid Get Full Name Parsed 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 parsed name fields through Jentic?

Install the SDK with pip install jentic, search for 'similarity key for parsed first and last name', load the Interzoid Get Full Name Parsed Match operation, and execute it for each row's firstname and lastname pair.

Does the API handle middle names or initials?

The endpoint operates on firstname and lastname inputs. Middle names and initials are typically dropped or appended to the first name in calling code before the API is invoked, so the similarity key reflects the primary given and family names.

GET STARTED

Start building with Interzoid Get Full Name Parsed Match Similarity Key API

Explore with Jentic
View OpenAPI Document