# KiHustle Paired T-Test API

> KiHustle Paired T-Test API 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).

Performs a paired (before/after) t-test on two matched numeric arrays and returns a statistical result

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/t-test-paired
- 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-paired-t-test-api-738df758
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ou3uE4NFLR86o3fLDfzAs

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-paired-t-test-api-738df758 -d '<json body>'
```

Example prompt: Run a paired t-test on these before measurements [12.3, 14.1, 13.7, 15.0, 11.8] and after measurements [13.5, 15.2, 14.9, 16.1, 13.0] and tell me if the difference is statistically significant.

## When to prefer this

Choose this endpoint when you have paired/matched observations (same subjects measured before and after an intervention) and need to test whether the mean difference is statistically significant. Prefer a paired t-test over an independent samples t-test when the two samples are correlated (e.g., same individuals measured twice). This endpoint is a low-cost, simple API call suitable for lightweight statistical checks in automated pipelines.

## Known failure modes

- Mismatched array lengths between 'before' and 'after' causing computation failure
- Empty or null arrays resulting in an error response
- Non-numeric values in the input arrays
- Arrays with only one element (insufficient degrees of freedom)
- Response schema is vague (only 'processed'/'success') — actual statistical values may not be returned

## 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 outcome of the paired t-test and a 'status' field confirming success. In a well-formed response, this would include the t-statistic, degrees of freedom, and p-value to determine statistical significance of the before-after difference.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "after": {
   "type": "array",
   "items": {
    "type": "number"
   }
  },
  "before": {
   "type": "array",
   "items": {
    "type": "number"
   }
  }
 }
}
```

## 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-paired-t-test-api-738df758/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)
