canonical: https://jentic.com/apis/interzoid.com/interzoid-get-company-name-match-similarity-key-ap

# Interzoid Get Company Name Match Similarity Key API

The Interzoid Get Company Name Match Similarity Key API returns an algorithmic similarity key for a company name string. Variants such as 'IBM', 'I.B.M.', and 'International Business Machines Corp' produce the same key, so deduplication and account-merging jobs can join on the key instead of brittle string-equality logic. The single GET /getcompanymatch endpoint authenticates with a license key passed as a query parameter and returns the similarity key as JSON.

## For AI agents

Generate a similarity key for a company name to deduplicate accounts and join lead lists. One GET endpoint, license-key auth.

## Scope

Does not provide firmographic data, parent-subsidiary relationships, or canonical company name standardisation - use for fuzzy-match key generation on company name strings only.

## Capabilities

- Generate a deterministic similarity key for a company or organization name
- Collapse account records that store the same company under different legal-entity suffixes
- Join two lead lists by hashing the company column to a similarity key first
- Cluster opportunity records under a single account despite naming variations
- Build match keys for company columns in MDM and account-deduplication pipelines

## Use cases

### Account-table deduplication in CRM

Sales operations teams call the Interzoid Get Company Name Match Similarity Key API for every account name and group accounts that return the same key. Variants like 'IBM', 'IBM Corp', and 'International Business Machines' collapse to one cluster so reps no longer pursue the same prospect across multiple records.

Example prompt: Iterate the accounts table, call /getcompanymatch with company set to each row's name, and group rows by the returned similarity key.

### Lead-list cross-reference

When marketing imports a third-party lead list, exact-match joins on company name miss many overlaps with the existing CRM. Computing the Interzoid similarity key on both sides and joining on the key surfaces overlapping accounts so duplicate outreach is suppressed.

Example prompt: Compute /getcompanymatch keys for the company column in both the inbound lead list and the existing CRM, then suppress leads whose key already exists in CRM.

### MDM company-name normalization layer

Master data management pipelines call the Interzoid Get Company Name Match Similarity Key API on every customer record to attach a stable company cluster ID. Reporting layers aggregate revenue and pipeline by cluster ID rather than raw company string, eliminating duplicate-name distortion in dashboards.

Example prompt: On every insert into the accounts staging table, call /getcompanymatch and persist the returned key as company_match_key for downstream BI.

### AI agent CRM cleanup

An AI agent assisting a RevOps analyst discovers the Interzoid Get Company Name Match Similarity Key API through Jentic and uses it to flag near-duplicate accounts during a CRM hygiene 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.

Example prompt: Search Jentic for 'similarity key for company name', load the Interzoid Get Company Match operation, and execute it for each account name, then surface clusters of more than one account sharing a key.

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | `/getcompanymatch` | Return a similarity key for a company name |

## Key resources

- **Company match similarity key** — Single GET operation that accepts a company name and returns an algorithmic similarity key for fuzzy matching.

## Why Jentic

- **Setup:** Wiring the Interzoid Get Company Name Match Similarity Key API by hand means passing your licence key as a query parameter on every call and remembering the single /getcompanymatch endpoint. Through Jentic you install once, import the Interzoid Get Company Name Match Similarity Key API from the API Directory, store the licence key once, and your agent calls it.
- **Permission scoping:** This API exposes one read-only operation, GET /getcompanymatch, with the company name string in the query, so limit the agent to that operation. It performs no writes or deletes, so there is nothing destructive to add.
- **Credential handling:** Your Interzoid licence key is stored once, encrypted, by your own Jentic One instance and injected as the license query parameter at execution time. It never enters the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'similarity key for a company name' or 'dedupe CRM accounts', and Jentic returns the GET /getcompanymatch operation with its parameter schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Interzoid Get Company Name Match Similarity Key API** — Functionally equivalent slug variant for the same /getcompanymatch endpoint
- **Interzoid Get Full Name Match Similarity Key API** — Same similarity-key approach applied to person full-name fields; pair with company for B2B contact dedup
- **Interzoid Get Address Match Similarity Key API** — Generates a similarity key for a full street address, useful as a tie-breaker when company names alone are ambiguous

## FAQ

### What authentication does the Interzoid Get Company Name Match Similarity Key API use?

The API uses a license key passed as the license query parameter on every call to /getcompanymatch. Through Jentic the license key is held in the credential vault and injected at execution time, so the agent never handles the raw key.

### Can I match company names that include legal suffixes like 'Inc' or 'GmbH'?

Yes. The similarity algorithm tolerates common legal-entity suffixes, so 'Acme Inc', 'Acme Corp', and 'Acme GmbH' typically collapse to a single key when the underlying name matches.

### What are the rate limits for the Interzoid Get Company 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 company names through Jentic?

Install the SDK with pip install jentic, search for 'similarity key for company name', load the Interzoid Get Company Match operation, and execute it for each company string, then group records by the returned key.

### Does the API distinguish between subsidiaries and parent companies?

No. The /getcompanymatch endpoint produces a similarity key based on the literal company string. Subsidiary relationships are not part of the response and need a firmographic data source to resolve.

### Can I limit what my agent is allowed to do with the Interzoid Get Company Name Match Similarity Key API?

Yes. Because you run Jentic One yourself, your own rules decide which operations and credentials the agent can use, and this API exposes only one read-only operation, GET /getcompanymatch, which takes a company name in the query and returns a similarity key. You can scope the agent to that single operation, and since it performs no writes or deletes there is nothing destructive it can reach. Your Interzoid license key stays with your instance and is injected as the license query parameter at call time, so the agent never handles the raw key.
