# Trixie Lasagne Statistical Analysis

> Trixie Lasagne Statistical Analysis is a paid API for AI agents from trixielasagne-api.purplewater-b02e2643.eastus.azurecontainerapps.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Performs deterministic statistical analysis (describe, percentiles, correlation, outlier detection, time-series) over caller-supplied tabular data

## Facts

- Endpoint: POST https://trixielasagne-api.purplewater-b02e2643.eastus.azurecontainerapps.io/stats/analyse
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trixie-lasagne-statistical-analysis-598ca8c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6fJKGsaXl4piDmUL14Ev3

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 trixie-lasagne-statistical-analysis-598ca8c9 -d '<json body>'
```

Example prompt: Run a full statistical analysis on this dataset — I need descriptive stats, percentiles, any outliers, and the correlation between the 'revenue' and 'cost' columns.

## When to prefer this

Choose this endpoint when you need deterministic, reproducible statistical analysis on data you already hold — especially for describe, percentile, correlation, outlier, or time-series methods — and want a lightweight per-call cost model at $0.01 USDC rather than spinning up a full analytics environment. Prefer it over general code-execution endpoints when you want structured JSON statistical output without managing a runtime.

## Known failure modes

- Missing or malformed 'input' field returns a validation error
- Non-numeric columns passed to numeric methods cause computation errors
- Empty dataset body results in an empty or error response
- Unsupported method name returns an unknown method error
- Payment not included or insufficient causes a 402 Payment Required response

## How this service works

Deterministic statistical analysis (describe, percentiles, correlation, outliers, time-series) over caller-supplied data

## Output

Returns structured statistical results depending on the method requested: descriptive statistics (mean, median, std dev, min, max), percentile breakdowns, pairwise correlation coefficients, flagged outlier rows, or time-series decomposition metrics — all computed deterministically from the supplied data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trixie-lasagne-statistical-analysis-598ca8c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trixielasagne-api.purplewater-b02e2643.eastus.azurecontainerapps.io](https://www.zero.xyz/host/trixielasagne-api.purplewater-b02e2643.eastus.azurecontainerapps.io/llms.txt)
