# KiHustle CSV Row Filter

> KiHustle CSV Row Filter is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Filters rows in a CSV dataset based on specified criteria and returns matching results as JSON

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/csv-row-filter
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-csv-row-filter-5d844f34
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K_gk_GPEt9VPq9xGRgYS3

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-csv-row-filter-5d844f34 -d '<json body>'
```

Example prompt: I have a CSV with customer records and I only want rows where the 'country' column equals 'Germany' — can you filter it down to just those rows for me?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call CSV row filtering service via x402 micropayments without setting up your own data pipeline infrastructure. Useful for one-off or automated filtering tasks on tabular CSV data where you want a simple REST API interface.

## Known failure modes

- Invalid or malformed CSV input returns an error status
- Filter criteria referencing non-existent column names may return empty results or error
- Oversized CSV payloads may be rejected or time out
- Missing required fields in the POST body result in a processing failure
- Malformed filter expressions may cause unexpected empty or full result sets

## 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 containing the processed filtered data and a 'status' field indicating success or failure of the filtering operation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "tags": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "csv_text",
      "column_name",
      "condition_value"
     ],
     "properties": {
      "csv_text": {
       "type": "string"
      },
      "column_name": {
       "type": "string"
      },
      "condition_value": {
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  },
  "category": {
   "type": "string"
  },
  "toolName": {
   "type": "string"
  },
  "description": {
   "type": "string"
  },
  "serviceName": {
   "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-csv-row-filter-5d844f34/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)
