# x402 Escrow Status Check

> x402 Escrow Status Check is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the current state (pending, released, refunded, or expired) of a conditional-payment escrow agreement by ID.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/escrow/status
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-escrow-status-check-755e1178
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RJQE5YUxnxHki27ZJ42xt

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 x402-escrow-status-check-755e1178 -d '<json body>'
```

Example prompt: Can you check the current status of my escrow agreement — the ID is escrow_abc123xyz — and tell me whether it's pending, released, refunded, or expired?

## When to prefer this

Use this endpoint when you have a previously created escrow ID from the escrow/create endpoint and need to know its current lifecycle state. It is the canonical way to poll or verify whether a conditional payment has been fulfilled, refunded, or has lapsed on the x402-services platform.

## Known failure modes

- Invalid or unknown escrow ID returns an error response
- Malformed request body missing the required 'id' field returns a validation error
- Network timeout or service unavailability from the Railway-hosted backend
- Stale or already-purged escrow records may return not-found errors

## How this service works

Check the state of a conditional-payment agreement (pending/released/refunded/expired). Send { id }.

## Output

Returns the current state of the escrow agreement: one of pending, released, refunded, or expired, along with any relevant metadata about the conditional payment identified by the provided escrow ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Escrow id from escrow/create"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-escrow-status-check-755e1178/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
