# Interzoid Product Match Similarity Key Generator

> Interzoid Product Match Similarity Key Generator 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-13).

Generates an AI-powered similarity key (SimKey) for a product name, description, or model number to enable fuzzy matching and deduplication across product data

## Facts

- Endpoint: GET https://api.interzoid.com/getproductmatch
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-product-match-similarity-key-generator-03927e29
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ix19G5Jb3AI_PmIxSeCB0

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-product-match-similarity-key-generator-03927e29
```

Example prompt: Generate a SmartMatchAI similarity key for the product 'Samsung Galaxy S23 Ultra 256GB Phantom Black' so I can match it against variants in my product catalog.

## When to prefer this

Use this endpoint when you need to deduplicate, match, or cluster product records that may have spelling variations, abbreviations, or inconsistent formatting — particularly for MDM, CRM, ERP, or analytics pipelines. Best when the input is a product name, model number, or short description and you need a stable hash to group similar items together.

## Known failure modes

- Missing 'product' query parameter returns an error code
- Empty or whitespace-only product string may return a degenerate SimKey
- Invalid API key or insufficient credits returns an authorization or credits error
- Network timeout if the product string is extremely long

## How this service works

Generate an AI-powered similarity key for product name matching. Handles variations in product names, model numbers, and descriptions to identify the same product across datasets.

## Output

Returns a JSON object with a SimKey string (the computed similarity hash for matching), a Code field indicating success or failure, and a Credits field showing remaining API credits. The SimKey can be compared across multiple product records to find near-duplicates or canonical matches.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "product": "Apple iPhone 15 Pro Max 256GB Space Black"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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": [
      "product"
     ],
     "properties": {
      "product": {
       "type": "string",
       "description": "Product name, description, or model to generate a similarity key for"
      }
     }
    }
   },
   "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": "sT6uVw8xYz1aB3cD",
  "Credits": "0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-product-match-similarity-key-generator-03927e29/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)
