Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Interzoid Get Country 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-country-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-country-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 Country Match Similarity Key API.
Generate a deterministic similarity key for a country name string
Collapse country aliases like 'USA', 'United States', and 'America' into a single key
Join two datasets on country by hashing each side to a similarity key first
GET STARTED
For Agents
Generate a similarity key for a country name to deduplicate or fuzzy-match country columns across datasets. One GET endpoint, license-key auth.
Use for: Generate a similarity key for the country 'United States of America', Match 'USA' and 'United States' as the same country, Deduplicate a customer table on country, Get a fuzzy match key for a country name
Not supported: Does not return ISO country codes, geocode locations, or standardise country names to a canonical form - use for fuzzy-match key generation on country name strings only.
The Interzoid Get Country Match Similarity Key API returns an algorithmic similarity key for a country name string. Variants like 'United States', 'USA', 'U.S.A.', and 'America' produce the same key, so deduplication and dataset-merge jobs can join on the key instead of maintaining a country-alias lookup table. The single GET /getcountrymatch endpoint authenticates with a license key passed as a query parameter and returns the similarity key as JSON.
Cluster customer records by country despite formatting variations
Build match keys for country columns in MDM and reporting pipelines
Patterns agents use Interzoid Get Country Match Similarity Key API for, with concrete tasks.
★ Country-column deduplication
Data engineers run every record's country value through the Interzoid Get Country Match Similarity Key API and group records by the returned key to consolidate aliases. 'USA', 'United States', and 'United States of America' collapse to one cluster, producing accurate per-country totals in dashboards.
Iterate the customers table, call /getcountrymatch with country set to each row's value, and group rows by the returned key.
Cross-dataset country merge
Two systems often store country names differently - one as ISO names, another as informal aliases. Computing the Interzoid similarity key on both sides lets the merge join on the key and capture matches that exact-string compare would miss.
Compute /getcountrymatch keys for the country column in two exports and join on the key to produce a unified view.
Reporting normalization for global revenue
BI dashboards aggregating revenue by country mis-count when 'UK', 'United Kingdom', and 'Britain' appear as separate rows. Storing the Interzoid similarity key alongside the raw value lets aggregations group by the key, producing one accurate row per country.
On insert into the orders staging table, call /getcountrymatch and store the returned key as country_match_key for downstream BI grouping.
AI agent dataset reconciliation
An AI agent reconciling two customer datasets discovers the Interzoid Get Country Match Similarity Key API through Jentic and uses it to align country columns before merging. 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 country name', load the Interzoid Get Country Match operation, and execute it for each unique country string in both datasets.
1 endpoints — the interzoid get country match similarity key api returns an algorithmic similarity key for a country name string.
METHOD
PATH
DESCRIPTION
/getcountrymatch
Return a similarity key for a country name
/getcountrymatch
Return a similarity key for a country name
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Interzoid Get Country Match Similarity Key API by hand means obtaining a license key, appending it as a license query parameter on each call to /getcountrymatch, 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 /getcountrymatch operation that takes a country 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 country name' or 'match inconsistent country strings', and Jentic returns the Get Country 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 Country Match Similarity Key API through Jentic.
What authentication does the Interzoid Get Country Match Similarity Key API use?
The API uses a license key passed as the license query parameter on every call to /getcountrymatch. Through Jentic the license key is held in the credential vault and injected at execution time, so the agent never handles the raw key.
Does the Interzoid Get Country Match Similarity Key API match ISO country codes?
The endpoint operates on country name strings rather than ISO codes. If your data contains ISO 3166 codes, expand them to country names before calling /getcountrymatch, or use a code-to-name lookup as a preprocessing step.
What are the rate limits for the Interzoid Get Country 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 jobs.
How do I deduplicate a country column through Jentic?
Install the SDK with pip install jentic, search for 'similarity key for country name', load the Interzoid Get Country Match operation, and execute it for each country string, then group rows by the returned key.
Does the API match country names in non-English languages?
The similarity algorithm targets common English-language variations and aliases. For names in other languages or non-Latin scripts, normalize to an English equivalent before calling /getcountrymatch for best results.
Can I limit what my agent is allowed to do with the Interzoid Get Country Match Similarity Key API?
Yes. Because you run Jentic One yourself, your own rules decide which operations and credentials the agent may use, and this API exposes only a single read-only GET /getcountrymatch operation, so you scope the agent at the operation level to just the similarity-key lookup it needs. That call takes a country name string in the query and has no resource id in the URL path, and it only computes a match key while writing nothing, so there is no destructive operation to grant. You keep the agent restricted to this one country-match lookup and withhold every other operation and credential.