# CSV Column Profiler

> CSV Column Profiler 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).

Profiles a specific column from CSV text, returning statistical or structural analysis of that column's data

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/csv-column-profiler
- 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/csv-column-profiler-1f6a41e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S-ywgjyJ0IOza2lTOlpQ1

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 csv-column-profiler-1f6a41e5 -d '<json body>'
```

Example prompt: Can you profile the 'age' column from this CSV data and tell me what's in it? Here's the CSV: 'name,age,city\nAlice,30,Berlin\nBob,25,Munich\nCarla,35,Hamburg'

## When to prefer this

Choose this endpoint when you need lightweight, per-column profiling of CSV data without spinning up a full data pipeline or analytics tool. It is ideal for quick data quality checks, pre-analysis inspection, or understanding the contents of a single column before further processing.

## Known failure modes

- Column name not found in CSV headers — returns error or empty result
- Malformed or unparseable CSV text — may return error status
- Empty CSV or empty column — may return minimal or null profile
- Missing required fields (csv_text or column) — likely returns 400-level error

## 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 column profile (such as value distribution, detected data types, missing values, or summary statistics) and a 'status' field indicating success or failure.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "column": {
   "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/csv-column-profiler-1f6a41e5/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)
