# 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 from a CSV text input based on a specified column name and condition value, returning only matching rows.

## Facts

- Endpoint: POST https://kihustle.tech/agents/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-4eb6d5eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__MBcKEDtBMdOMpV8zT_F2

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

Example prompt: Filter this CSV data and keep only the rows where the 'status' column equals 'active': [paste CSV text here].

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call solution to filter CSV rows by a single column equality condition without standing up your own data processing infrastructure. It is ideal for quick automation tasks where you have CSV text in memory and need a subset of rows returned instantly.

## Known failure modes

- Missing or malformed csv_text may return a generic error or empty result
- Invalid column_name not present in CSV headers may return no rows or an error
- Empty CSV text produces no output rows
- Condition value with no matches returns an empty result set
- Oversized CSV payloads may fail or time out

## 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 filtered CSV rows and a 'status' field confirming success. Only rows where the specified column matches the condition value are included.

## 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-4eb6d5eb/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)
