# KiHustle Record Linkage API

> KiHustle Record Linkage API is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Matches and links records from two datasets using a specified key field to identify corresponding entries across both sets.

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/record-linkage
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-record-linkage-api-8c97cda6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AxtKULNCOpiCvgeIfHYl1

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 kihustle-record-linkage-api-8c97cda6 -d '<json body>'
```

Example prompt: I have two lists of customer records — one from our CRM and one from our billing system — and I want to link them together using the 'email' field as the key. Can you match them up and tell me which records correspond to each other?

## When to prefer this

Choose this endpoint when you need to programmatically match or reconcile two separate datasets using a common key field, especially in automated pipelines where entity resolution or record deduplication is required. It is suitable for lightweight, per-call record linkage tasks rather than bulk batch processing of massive datasets.

## Known failure modes

- Missing or invalid key_field causes linkage to fail or return no matches
- Empty records_a or records_b arrays result in no linkage output
- Mismatched data types on the key field across the two record sets may prevent matches
- Malformed record objects in either array may cause a processing error
- Very large record sets may time out or exceed payload limits

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object with a 'result' field indicating the outcome of the record linkage operation and a 'status' field confirming success or failure. The response indicates whether the two record sets were processed and linked successfully, though detailed matched pairs may be embedded in the result field.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "key_field": {
   "type": "string"
  },
  "records_a": {
   "type": "array",
   "items": {
    "type": "object",
    "additionalProperties": true
   }
  },
  "records_b": {
   "type": "array",
   "items": {
    "type": "object",
    "additionalProperties": true
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-record-linkage-api-8c97cda6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
