# Interzoid Company and Full Name Match (SmartMatchAI)

> Interzoid Company and Full Name Match (SmartMatchAI) is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Generates a similarity key for matching a company name combined with a full person name, enabling deduplication and fuzzy matching across datasets

## Facts

- Endpoint: GET https://api.interzoid.com/getcompanyandfullnamematch
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-company-and-full-name-match-smartmatchai-866eb504
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oMBeTEHp4me7m1LfOl3Fp

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability interzoid-company-and-full-name-match-smartmatchai-866eb504
```

Example prompt: I have two records — one says 'Acme Corp, John Smith' and another says 'ACME Corporation, Jon Smith' — can you use Interzoid's company-and-full-name match to generate similarity keys for both so I can tell if they're the same person at the same company?

## When to prefer this

Use this endpoint when you need to match or deduplicate records that contain BOTH a company name and a full person name as a combined entity — for example, matching sales contacts across CRM and ERP where both the organization name and the individual's name may vary in spelling, abbreviation, or formatting. Prefer this over separate company-only or name-only match endpoints when the combined company+person identity is the unit of comparison.

## Known failure modes

- Missing or empty name/company input returns an error Code
- Invalid or expired API key returns authentication failure
- Malformed request parameters return a non-Success Code
- Insufficient credits returns a credits-exhausted error
- Network timeout on the GET request

## How this service works

Generate a single combined AI-powered similarity key from a company/organization name plus an individual's full name. Records with the same combined key likely share both a similar company and a similar person. Ideal for contact-level deduplication within CRM, marketing, and sales datasets.

## Output

Returns a SimKey (similarity key string) that can be compared against keys generated for other company+name combinations — identical or very similar SimKeys indicate likely matches. Also returns a Code indicating success or failure and the remaining Credits on the account.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "company",
      "fullname"
     ],
     "properties": {
      "company": {
       "type": "string",
       "description": "Company or organization name"
      },
      "fullname": {
       "type": "string",
       "description": "Full individual name"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "SimKey": "Xk7pR9vLmQ2wYdN1Ai4RfV0SRJf2dJwDO0C",
  "Credits": "0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-company-and-full-name-match-smartmatchai-866eb504/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
