# Pipe0 Pipes Request Validator

> Pipe0 Pipes Request Validator is a paid API for AI agents from pipe0.withzero.xyz, paid per call via MPP, metered — billed by usage, status unknown (last checked 2026-09-13, last successful call 2026-07-06).

Validates a Pipe0 pipes request payload against Pipe0 before execution, with no charge.

## Facts

- Endpoint: POST https://pipe0.withzero.xyz/api/v1/pipes/validate
- Price: metered — billed by usage
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-13
- Last successful call: 2026-07-06
- Success rate: 63% of calls made through Zero
- Rating: 4.7 / 5 from 2 reviews
- Activations on Zero: 8
- Provider: pipe0.withzero.xyz
- Website: https://pipe0.withzero.xyz
- Canonical page: https://www.zero.xyz/c/pipe0-withzero-xyz-pipe0-pipes-request-validator-d7b53fab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P31uJBkLbzWU5GRVuPwRc

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 pipe0-withzero-xyz-pipe0-pipes-request-validator-d7b53fab -d '<json body>'
```

Example prompt: Before I actually run my Pipe0 workflow, can you validate this pipes request payload against Pipe0 to make sure it's correctly structured and won't fail — no charge needed, just a proof check?

## When to prefer this

Use this endpoint to pre-flight validate a Pipe0 pipes request before committing to a paid workflow execution. Ideal when building or debugging Pipe0 workflow payloads, or when you want to confirm request structure is correct at zero cost before running the actual pipe.

## Known failure modes

- Invalid or malformed request body returns a Pipe0 validation error in the data field
- Pipe0 service unavailable results in a non-200 response
- Unrecognized pipe fields may cause Pipe0 to reject the payload
- Missing required Pipe0-native fields result in validation failure response

## How this service works

Validate a Pipe0 pipes request against Pipe0. Proof route; no Zero charge.

## Output

Returns a raw JSON response from Pipe0 wrapped in a 'data' field, indicating whether the pipes request payload is valid and accepted by Pipe0.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "description": "Provider-native Pipe0 request object.",
 "propertyNames": {
  "type": "string"
 },
 "additionalProperties": {}
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "data"
 ],
 "properties": {
  "data": {
   "description": "Raw JSON response returned by Pipe0."
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pipe0-withzero-xyz-pipe0-pipes-request-validator-d7b53fab/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pipe0.withzero.xyz](https://www.zero.xyz/host/pipe0.withzero.xyz/llms.txt)
