For Agents
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Interzoid City Data Standardization 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 City Data Standardization API API.
Convert variant city-name spellings into Interzoid's canonical standardised form
Cover both US and international cities through the same endpoint
Return a result code and remaining-credit count alongside the standardised city
Authenticate with an Interzoid license key passed as a query parameter
GET STARTED
Standardise a free-text city name into Interzoid's canonical form ahead of deduplication, joins, or analytics.
Use for: I need to standardise the city 'Saint Louis' to its canonical form, Convert 'NYC' to its standardised city name, Get the canonical version of an international city name like 'Munchen', Standardise a column of messy city values before deduplication
Not supported: Does not handle geocoding, postal validation, full address parsing, or country-name standardisation — use for canonicalising US and international city-name strings only.
Jentic publishes the only available OpenAPI document for Interzoid City Data Standardization API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for the Interzoid City Data Standardization API, keeping it validated and agent-ready. The single endpoint takes a city name (US or international) and returns a pre-selected standardised version of that city, intended to fix common variant spellings, casing, and abbreviations before deduplication, joining, or analytics. Authentication is an Interzoid license key passed as the 'license' query parameter alongside the city to standardise.
Patterns agents use Interzoid City Data Standardization API API for, with concrete tasks.
★ CRM Deduplication Pre-Processing
Data teams standardise the city field across CRM records before deduplication so that variants like 'St. Louis', 'Saint Louis', and 'St Louis' collapse into one canonical key. The API returns the standardised city name in a single GET call per record. Match rates on subsequent dedupe passes rise materially compared with raw-string matching.
Call GET /getcitystandard with city='St. Louis' and return the CityStandard value to use as the merge key
Analytics ETL Cleanup
Analytics pipelines normalise city dimensions before loading into a warehouse so that dashboards group consistently. Calling /getcitystandard during the transform step replaces a hand-maintained synonym table with a maintained service. The result includes a remaining-credit indicator so the pipeline can alert before the licence runs out.
Standardise the city values in a 50,000-row customer table by calling GET /getcitystandard for each unique input and caching the result
Form-Submission Canonicalisation
Web forms collect free-text city values from users; canonicalising at submission time avoids dirty data ever reaching the database. A small server-side hook calls /getcitystandard, stores the standardised name, and keeps the original for audit. The end-to-end change is a few lines of code per form.
On form submit, call GET /getcitystandard with the user-entered city and persist both the original and standardised values
Agent-Driven Data Enrichment
An AI agent enriching a customer record asks Jentic for 'standardise a city name', receives the Interzoid operation schema, and returns the canonical form alongside the original. Jentic stores the Interzoid licence key in MAXsystem and injects it as the query parameter at execution time, so the agent never sees the raw key. Enrichment that previously required a custom integration becomes a one-shot agent capability.
Given a customer record with city='SF', call /getcitystandard and update the record with the canonical CityStandard value
1 endpoints — jentic publishes the only available openapi specification for the interzoid city data standardization api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/getcitystandard
Return the standardised city name for a given input
/getcitystandard
Return the standardised city name for a given input
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. Raw licence keys never enter the agent's prompt or logs.
Intent-based discovery
Agents search Jentic by intent (e.g., 'standardise a city name') and Jentic returns the GET /getcitystandard operation with its city query parameter, so the agent doesn't need to remember the specific 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 State Data Standardization API
Companion endpoint that standardises US state names alongside the city standardiser
Use the state standardiser alongside the city standardiser when cleaning a full address dimension where both city and state need canonical forms.
Interzoid Get Address Match Similarity Key API
Generates a similarity key for full street addresses where the city standardiser handles the city component
Use the address match similarity API when the goal is to dedupe by full address; use the city standardiser when only the city field needs canonicalisation.
Abstract API Geolocation
Geolocation and IP-based location data versus Interzoid's pure name-standardisation focus
Choose Abstract when the workflow needs lat/long or IP-derived location; choose Interzoid when the goal is canonicalising a known city name string.
Specific to using Interzoid City Data Standardization API API through Jentic.
Why is there no official OpenAPI spec for the Interzoid City Data Standardization 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 City Data Standardization 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 City Data Standardization API use?
Authentication is a license key passed as the 'license' query parameter on the GET /getcitystandard request. Register at www.interzoid.com/register to obtain a key. Through Jentic, the key is stored in the MAXsystem vault and injected into the query string at execution time so it never enters the agent's prompt.
Can the API handle international city names?
Yes. The endpoint handles both US and international cities through the same /getcitystandard call — the input is a free-text city string regardless of locale. The standardised output reflects Interzoid's canonical form for that city.
What are the rate limits for the Interzoid City Data Standardization API?
Interzoid runs on a credit-per-call model rather than a hard rate limit. Each successful response includes a 'Credits' field showing the remaining balance, and HTTP 402 is returned when credits are exhausted. The license tier purchased determines the credit pool.
How do I standardise a city through Jentic?
Search Jentic for 'standardise a city name'. The SDK returns the GET /getcitystandard operation with the city query parameter. Run pip install jentic, await client.search('standardise a city name'), then await client.execute(...) with the city value.
Is the Interzoid City Data Standardization API free?
Interzoid offers a free tier with limited credits to register and test, then paid tiers measured in API credits. See www.interzoid.com for current pricing. The 'Credits' field on each response shows the remaining balance for the calling licence.