# 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-13).

Filters rows from a CSV dataset based on a specified column name and condition value, returning only matching rows.

## Facts

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

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-c962809b -d '<json body>'
```

Example prompt: Filter this CSV data and give me only the rows where the 'Country' column equals 'Germany': [paste CSV text here].

## When to prefer this

Choose this endpoint when you need a simple, low-cost programmatic filter on CSV text data by a single column equality condition. It is best for lightweight row-selection tasks where you already have CSV text in memory and need to narrow it down without spinning up a full data processing pipeline.

## Known failure modes

- Column name not found in CSV header — returns error or empty result
- CSV text is malformed or unparseable — may return error status
- Condition value has no matching rows — returns empty result set
- Missing required fields (csv_text, column_name, condition_value) — returns error
- Very large CSV inputs may time out or be truncated

## 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 response containing the filtered CSV rows that match the given column/value condition, along with a result and status field indicating success or failure of the operation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "csv_text": {
   "type": "string"
  },
  "column_name": {
   "type": "string"
  },
  "condition_value": {
   "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-c962809b/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)
