# Interrupted Task Recovery

> Interrupted Task Recovery is a paid API for AI agents from phion.systems, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Plans bounded, idempotent resumption of an agent task from a checkpoint after interruption

## Facts

- Endpoint: POST https://phion.systems/v1/paid/trust/interrupted-task-recovery
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interrupted-task-recovery-06467025
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ehG-E5gf_ieOuh5mNAhNU

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 interrupted-task-recovery-06467025 -d '<json body>'
```

Example prompt: My agent was partway through a multi-step task and got interrupted — can you plan a safe, idempotent resumption from the last checkpoint so we don't re-execute steps that already completed?

## When to prefer this

Use this endpoint when an agent task has been interrupted partway through execution and you need a safe, bounded plan to resume without repeating already-completed steps or causing duplicate side effects. Prefer this over manual state inspection when idempotency guarantees are critical, especially for tasks involving payments, external API calls, or stateful operations where replaying completed steps would cause harm.

## Known failure modes

- Checkpoint data is missing or malformed, preventing recovery plan generation
- Task state is ambiguous and idempotency cannot be guaranteed
- Requested resumption scope exceeds defined task boundaries
- Checkpoint is too stale to produce a valid resumption plan
- Input schema is incomplete, resulting in rejection of the recovery request

## How this service works

Plan bounded idempotent resumption from a checkpoint

## Output

A structured resumption plan indicating which steps have already been completed, which remain, and how to safely re-enter the task from the last checkpoint in an idempotent and bounded manner — ensuring no side effects are duplicated and execution stays within defined scope.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interrupted-task-recovery-06467025/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phion.systems](https://www.zero.xyz/host/phion.systems/llms.txt)
