# Attestify OS Orchestrated Run

> Attestify OS Orchestrated Run is a paid API for AI agents from attestify-os.vercel.app, paid per call via x402, $0.030000/call, status unknown (last checked 2026-09-14).

Executes a paid, orchestrated AI agent run with integrated routing, persistent memory, execution, receipt generation, and cryptographic verification

## Facts

- Endpoint: POST https://attestify-os.vercel.app/api/run
- Price: $0.030000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/attestify-os-vercel-app-a1dc4454
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TVgeGrWaENcTYD_oK-23b

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 attestify-os-vercel-app-a1dc4454 -d '<json body>'
```

Example prompt: Run an orchestrated task through Attestify OS: 'Summarize the latest developments in quantum computing' — I need routing, memory, execution, a payment receipt, and a verifiable attestation of the result all in one call.

## When to prefer this

Choose this endpoint when you need a single, end-to-end orchestrated agent execution that combines routing intelligence, persistent memory, on-chain-style receipt generation, and cryptographic verification of results — especially when you need a verifiable audit trail of what the agent did and that payment was made. Prefer over raw LLM calls when accountability, receipts, or downstream trust verification of the agent run are required.

## Known failure modes

- Insufficient USDC balance or payment failure returns payment error
- Malformed request body returns 400 validation error
- Routing failure if no suitable execution backend is available
- Memory retrieval failure if prior context is corrupted or unavailable
- Timeout if execution step exceeds allowed duration
- Verification signing failure if attestation service is unavailable

## How this service works

Attestify OS — Orchestrated paid run: routing + memory + execution + receipt + verification

## Output

Returns the output of the orchestrated agent run along with a cryptographic receipt, execution metadata, and a verification attestation confirming the run occurred and was paid for — suitable for audit or downstream trust verification.

## Example request

```json
{
 "task": "Summarize the latest developments in artificial intelligence",
 "memory": {
  "enabled": true,
  "context_window": 5
 },
 "notify": {
  "email": "zero-qa@agentmail.to"
 },
 "payment": {
  "amount": "5.00",
  "currency": "USDC"
 },
 "routing": {
  "backend": "auto"
 },
 "execution": {
  "timeout_seconds": 30
 },
 "session_id": "qa-test-session-001",
 "attestation": {
  "enabled": true,
  "include_receipt": true
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "session_id",
  "task",
  "memory",
  "notify",
  "payment",
  "routing",
  "execution",
  "attestation"
 ],
 "properties": {
  "task": {
   "type": "string"
  },
  "memory": {
   "type": "object",
   "required": [
    "enabled",
    "context_window"
   ],
   "properties": {
    "enabled": {
     "type": "boolean"
    },
    "context_window": {
     "type": "number"
    }
   }
  },
  "notify": {
   "type": "object",
   "required": [
    "email"
   ],
   "properties": {
    "email": {
     "type": "string"
    }
   }
  },
  "payment": {
   "type": "object",
   "required": [
    "amount",
    "currency"
   ],
   "properties": {
    "amount": {
     "type": "string"
    },
    "currency": {
     "type": "string"
    }
   }
  },
  "routing": {
   "type": "object",
   "required": [
    "backend"
   ],
   "properties": {
    "backend": {
     "type": "string"
    }
   }
  },
  "execution": {
   "type": "object",
   "required": [
    "timeout_seconds"
   ],
   "properties": {
    "timeout_seconds": {
     "type": "number"
    }
   }
  },
  "session_id": {
   "type": "string"
  },
  "attestation": {
   "type": "object",
   "required": [
    "enabled",
    "include_receipt"
   ],
   "properties": {
    "enabled": {
     "type": "boolean"
    },
    "include_receipt": {
     "type": "boolean"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "cost",
  "paid",
  "agent",
  "price",
  "route",
  "intent",
  "memory",
  "output",
  "result",
  "run_id",
  "status",
  "loop_id",
  "pricing",
  "product",
  "service",
  "version",
  "agent_id",
  "simulated",
  "task_type",
  "timestamp",
  "agent_name",
  "bundle_url",
  "receipt_id",
  "session_id",
  "settlement",
  "receipt_url",
  "verification",
  "policy_applied",
  "execution_status",
  "selected_service",
  "governance_version"
 ],
 "properties": {
  "cost": {
   "type": "string"
  },
  "paid": {
   "type": "boolean"
  },
  "agent": {
   "type": "string"
  },
  "price": {
   "type": "string"
  },
  "route": {
   "type": "object",
   "required": [
    "mode",
    "reason",
    "confidence",
    "preferred_used",
    "routing_version",
    "recommended_agent_id",
    "recommended_agent_name"
   ],
   "properties": {
    "mode": {
     "type": "string"
    },
    "reason": {
     "type": "string"
    },
    "confidence": {
     "type": "number"
    },
    "preferred_used": {
     "type": "boolean"
    },
    "routing_version": {
     "type": "string"
    },
    "recommended_agent_id": {
     "type": "string"
    },
    "recommended_agent_name": {
     "type": "string"
    }
   }
  },
  "intent": {
   "type": "string"
  },
  "memory": {
   "type": "object",
   "required": [
    "wrote",
    "included",
    "length_after",
    "length_before"
   ],
   "properties": {
    "wrote": {
     "type": "boolean"
    },
    "included": {
     "type": "boolean"
    },
    "length_after": {
     "type": "number"
    },
    "length_before": {
     "type": "number"
    }
   }
  },
  "output": {
   "type": "string"
  },
  "result": {
   "type": "object",
   "required": [
    "output"
   ],
   "properties": {
    "output": {
     "type": "string"
    }
   }
  },
  "run_id": {
   "type": "string"
  },
  "status": {
   "type": "string"
  },
  "loop_id": {
   "type": "string"
  },
  "pricing": {
   "type": "object",
   "required": [
    "cost_model",
    "price_usdc",
    "margin_percent",
    "pricing_version",
    "estimated_cost_usd",
    "estimated_margin_usd",
    "base_agent_price_usdc",
    "orchestration_price_usdc"
   ],
   "properties": {
    "cost_model": {
     "type": "string"
    },
    "price_usdc": {
     "type": "number"
    },
    "margin_percent": {
     "type": "number"
    },
    "pricing_version": {
     "type": "string"
    },
    "estimated_cost_usd": {
     "type": "number"
    },
    "estimated_marg
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/attestify-os-vercel-app-a1dc4454/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from attestify-os.vercel.app](https://www.zero.xyz/host/attestify-os.vercel.app/llms.txt)
