# 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.1/call, status unknown (last checked 2026-09-16).

Analyzes a public webpage for automation readiness and returns acceptance criteria and evidence requirements for integration.

## Facts

- Endpoint: POST https://x402-preflight.tinyopsstudio.com/acceptance-pack
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tinyops-automation-integration-preflight-de1a123d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XO4wSHTvGjQcksLZ19sTH

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-de1a123d -d '<json body>'
```

Example prompt: Can you run an automation preflight check on https://example.com and tell me what acceptance criteria and evidence requirements I'd need to meet before automating it?

## When to prefer this

Choose this endpoint when you need a structured preflight analysis of a public webpage before committing to building an automation or integration workflow. It is especially valuable when you need to understand robots policy, form structures, integration links, and what evidence or acceptance criteria must be satisfied — rather than doing a generic HTML scrape or manual inspection.

## Known failure modes

- Invalid or unreachable URL returns an error or ok:false
- Private or authenticated pages may not be analyzable
- Paywalled or login-gated pages may return incomplete criteria
- Payment failure (insufficient USDC) blocks the call
- Rate limiting or network timeouts on the target URL

## 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

A JSON object containing a boolean readiness flag, the target URL that was analyzed, a list of acceptance criteria the page or service requires for automation, and a list of evidence requirements that must be met to prove compliance or eligibility for automated access.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "target": "https://example.com",
  "acceptance_criteria": [],
  "evidence_requirements": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tinyops-automation-integration-preflight-de1a123d/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)
