# KiHustle Data Anonymizer

> KiHustle Data Anonymizer 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).

Anonymizes specified columns in a CSV text payload, removing or masking personally identifiable information

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/data-anonymizer
- 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-data-anonymizer-157d7eed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1w05OEJWIAPJa3i4NMja6

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-data-anonymizer-157d7eed -d '<json body>'
```

Example prompt: Can you anonymize my CSV data by masking the 'name', 'email', and 'phone' columns? Here's the CSV text: 'name,email,phone\nJohn Doe,john@example.com,555-1234'

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call CSV anonymization service that accepts raw CSV text and a list of column names to redact, without needing to set up a local data pipeline or privacy library. Useful for quick one-off anonymization tasks in an automated workflow where GDPR or data-sharing compliance is required.

## Known failure modes

- Malformed CSV text causes parsing failure
- Column names specified do not exist in the CSV header — silently skipped or error returned
- Empty csv_text or missing columns array returns an error
- Very large CSV payloads may hit size or timeout limits
- Ambiguous column names or encoding issues may cause partial anonymization

## 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

A JSON object with a 'result' field (e.g. 'processed') and a 'status' field (e.g. 'success'), confirming the anonymization was applied. The actual anonymized data would be contained within the result payload.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "columns": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "csv_text": {
   "type": "string"
  }
 }
}
```

## 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-data-anonymizer-157d7eed/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)
