# x402-services Escrow Agreement List

> x402-services Escrow Agreement List 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-15).

Lists conditional-payment (escrow) agreements associated with a creator token or a party wallet address.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/escrow/list
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-services-escrow-agreement-list-42a1b10f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1fb_slM3Dip6Gp887zAGO

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-services-escrow-agreement-list-42a1b10f -d '<json body>'
```

Example prompt: Show me all the conditional-payment escrow agreements linked to my creator token 'tok_abc123' — list up to 50 results.

## When to prefer this

Use this endpoint when you need to enumerate existing escrow/conditional-payment agreements by creator token or participant wallet address on this x402-based service. Prefer this over blockchain explorers when you need structured, pre-parsed agreement data without writing custom chain queries.

## Known failure modes

- Missing both token and party — returns error requiring at least one identifier
- Invalid 0x address format for party — returns validation error
- Unrecognized or unauthorized token — returns empty list or auth error
- Limit parameter out of range — may return default or error
- Service unavailable — 5xx response

## How this service works

List conditional-payment agreements for your token (yours) or a party address (involving that address). Send { token } or { party }.

## Output

A list of conditional-payment escrow agreements associated with the provided token or party address, including counterparty addresses, agreement details, and payment conditions, limited to the requested number of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max results"
  },
  "party": {
   "type": "string",
   "description": "0x address involved"
  },
  "token": {
   "type": "string",
   "description": "Your creator secret"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-services-escrow-agreement-list-42a1b10f/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)
