For Agents
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Interzoid Get Address 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.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | 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 Address Match Similarity Key API API.
Generate a similarity key for a free-text street address that survives common variations
Drive higher match rates than raw-string comparison when joining or deduplicating address data
Return a result code and remaining-credit count alongside the similarity key
Authenticate with an Interzoid licence key passed as a query parameter
GET STARTED
Generate a similarity key for a street address so variant spellings dedupe to the same key for fuzzy matching and merging.
Use for: I need a similarity key for the address '123 Main St, Springfield IL', Generate match keys for two variant addresses to check whether they collapse, Get the dedupe key for an address before merging two CRM records, Standardise address matching for an ETL pipeline
Not supported: Does not validate that an address exists, geocode to coordinates, or normalise to a postal standard — use for generating fuzzy-match similarity keys for street-address deduplication and merging only.
Jentic publishes the only available OpenAPI document for Interzoid Get Address Match Similarity Key API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for the Interzoid Get Address Match Similarity Key API, keeping it validated and agent-ready. The single GET endpoint takes a street address and returns an algorithmically generated similarity key, designed so that variant address strings collapse to the same key for fuzzy matching, deduplication, and dataset merging. Authentication is an Interzoid licence key passed as the 'license' query parameter alongside the address to key.
Patterns agents use Interzoid Get Address Match Similarity Key API API for, with concrete tasks.
★ Customer Database Deduplication
Data teams generate the similarity key for each address in a customer table, then group records that share a key into duplicate clusters for review or automatic merge. The similarity key handles common abbreviation, casing, and ordering variations that defeat raw string comparison. Dedupe runs that previously needed manual review of borderline matches become deterministic.
For each row in a 100,000-record customer table, call /getaddressmatch and emit the returned SimKey alongside the original address
Cross-System Dataset Merge
When merging customer or location data from two systems, generating the similarity key on both sides aligns rows that refer to the same physical address despite different data-entry conventions. The match key is stable across systems because it is computed by the same algorithm. End-to-end this turns a soft-match heuristic problem into a hash join.
Compute the similarity key for addresses in System A and System B and join records where the keys match exactly
Marketing Suppression List Matching
Marketing teams suppress addresses on opt-out or do-not-contact lists by matching incoming campaign records against the suppression set on similarity key. Variant spellings of the same street address still suppress correctly because both sides resolve to the same key. Compliance posture improves without an expensive matching engine.
Generate similarity keys for the latest campaign addresses and reject any that match a key on the suppression list
Agent-Driven Record Linkage
An AI agent consolidating customer records calls the Interzoid endpoint to compute a similarity key for each candidate match's address, then merges records when keys agree. Jentic stores the licence key in MAXsystem and injects it as the 'license' query parameter, so the agent never sees the raw key. Record linkage that needed a custom service becomes a Jentic operation call.
Given two candidate customer records, call /getaddressmatch for each address and merge the records when the SimKey values match
1 endpoints — jentic publishes the only available openapi specification for the interzoid get address match similarity key api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/getaddressmatch
Return the similarity key for a given street address
/getaddressmatch
Return the similarity key for a given street address
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Interzoid licence key is stored encrypted in the Jentic MAXsystem vault and injected as the 'license' query parameter at execution time. The agent never sees the raw licence key.
Intent-based discovery
Agents search Jentic by intent (e.g., 'address similarity key for dedupe') and Jentic returns the GET /getaddressmatch operation with the address query parameter, so the agent doesn't have to remember the endpoint name.
Time to first call
Direct Interzoid integration: under an hour for a single endpoint plus credit management. Through Jentic: a few minutes once the licence key is vaulted.
Alternatives and complements available in the Jentic catalogue.
Interzoid City Data Standardization API
Standardises the city component of an address that pairs with the address similarity key
Use the city standardiser alongside the address similarity key when cleaning the city field separately before generating the address match key.
Interzoid Zip Code Detailed Info API
Enriches addresses with detailed ZIP code information complementing the match key
Use the zip-code detail API alongside the similarity key when enrichment requires both deduplication and ZIP-derived metadata.
Abstract API
Multi-purpose data API including address validation versus Interzoid's similarity-key focus
Choose Abstract when the workflow needs validation, geocoding, and enrichment from one vendor; choose Interzoid when the goal is purely fuzzy matching via similarity keys.
Specific to using Interzoid Get Address Match Similarity Key API API through Jentic.
Why is there no official OpenAPI spec for the Interzoid Get Address Match Similarity Key API?
Interzoid does not publish OpenAPI specifications for its endpoints. Jentic generates and maintains this spec so that AI agents and developers can call the Interzoid Get Address Match Similarity Key API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Interzoid Get Address Match Similarity Key API use?
Authentication is a licence key passed as the 'license' query parameter on GET /getaddressmatch. Register at www.interzoid.com/register to obtain a key. Through Jentic, the key is stored in the MAXsystem vault and injected at execution time so it never enters the agent's prompt.
How does the similarity key actually help with matching?
The endpoint returns an algorithmically derived key that collapses common variations — abbreviations, casing differences, punctuation, and minor reordering — into a stable identifier. Two addresses that look different but refer to the same place produce the same key, so a hash-style join finds the match where raw-string comparison fails.
What are the rate limits for the Interzoid Get Address Match Similarity Key API?
Interzoid runs on a credit-per-call model rather than a hard rate limit. Each successful response includes a 'Credits' field, and HTTP 402 is returned when credits are exhausted. The licence tier purchased determines the credit pool.
How do I generate a similarity key through Jentic?
Search Jentic for 'address similarity key'. The SDK returns the GET /getaddressmatch operation with the address query parameter. Run pip install jentic, await client.search('address similarity key'), then await client.execute(...) with the address string.
Does this API validate or geocode the address?
No. The endpoint does not validate that the address exists, normalise it to a postal standard, or return coordinates — it produces a similarity key for matching only. For validation or geocoding, pair it with a postal-validation or geocoding service.