# KiHustle Correlation Matrix Builder

> KiHustle Correlation Matrix Builder 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).

Computes a correlation matrix from submitted datasets to reveal statistical relationships between variables

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/correlation-matrix-builder
- 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-correlation-matrix-builder-66fea911
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ij7CB2YAOye0x3cpJEF4W

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-correlation-matrix-builder-66fea911 -d '<json body>'
```

Example prompt: Can you build a correlation matrix for my dataset — I have columns for revenue, ad spend, user count, and churn rate across 12 months and want to see how they all relate to each other?

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.002 per call) correlation matrix computation over multiple numerical variables. It suits lightweight statistical analysis workflows where you need pairwise correlation coefficients without spinning up a full data science environment. Prefer alternatives if you need advanced statistical outputs (p-values, confidence intervals), large-scale batch processing, or detailed schema validation on inputs.

## Known failure modes

- Malformed or empty datasets object returns a generic error response
- Non-numeric data in datasets may cause computation failure or silent errors
- Missing required 'datasets' field results in processing failure
- Very large datasets may time out or produce incomplete results
- Sparse or misaligned datasets may yield unreliable correlation values

## 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 indicating the processed correlation matrix and a 'status' field confirming success. The correlation matrix contains pairwise correlation coefficients between all input dataset variables, typically in the range of -1 to 1.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "datasets": {
   "type": "object"
  }
 }
}
```

## 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-correlation-matrix-builder-66fea911/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)
