# TinyOps Automation Integration Preflight

> TinyOps Automation Integration Preflight is a paid API for AI agents from x402-preflight.tinyopsstudio.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Audits an exported n8n workflow object for automation readiness, surfaces findings, assigns a readiness grade, and returns a structured report with a score.

## Facts

- Endpoint: POST https://x402-preflight.tinyopsstudio.com/workflow-audit
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tinyops-automation-integration-preflight-2ba8e01c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5mkGz4v3zafEnMnh6DLzZ

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 tinyops-automation-integration-preflight-2ba8e01c -d '<json body>'
```

Example prompt: Can you run a preflight audit on my exported n8n workflow and tell me if it's ready for production — I want to see the readiness grade, score, and any findings?

## When to prefer this

Choose this endpoint when you need a structured, scored readiness assessment of an exported n8n workflow before deployment or handoff, especially when you want objective grading (A–F), a findings list, and a node-level summary in a single paid API call rather than manual review.

## Known failure modes

- Missing or malformed 'workflow' object in request body returns a validation error
- Workflow with unsupported node types may produce incomplete findings
- Payment failure via x402 protocol results in a 402 response and no audit is performed
- Very large workflows may hit processing limits or timeout

## How this service works

Paid automation readiness analysis, acceptance evidence, exported n8n workflow auditing, private in-memory text-to-PDF conversion, and sensitive-text redaction with a newly generated PDF.

## Output

Returns a JSON object with an 'ok' boolean, a 'findings' array listing any detected issues or warnings, a 'workflow' summary including name and node count, and a 'readiness' object containing a letter grade (e.g. 'A') and a numeric score out of 100.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "workflow": {
   "type": "object",
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "findings": [],
  "workflow": {
   "name": "Example workflow",
   "node_count": 0
  },
  "readiness": {
   "grade": "A",
   "score": 100
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tinyops-automation-integration-preflight-2ba8e01c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-preflight.tinyopsstudio.com](https://www.zero.xyz/host/x402-preflight.tinyopsstudio.com/llms.txt)
