# Spraay Gateway – List Escrows by Address

> Spraay Gateway – List Escrows by Address is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a list of escrow contracts associated with a given blockchain address, optionally filtered by status.

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/escrow/list
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gateway-spraay-app-4a20ea93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__3I9amtaopr3GROpAmOST

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 gateway-spraay-app-4a20ea93
```

Example prompt: Show me all the escrows associated with my wallet address 0x1234abcd5678ef90 — only the pending ones if you can filter by status.

## When to prefer this

Use this endpoint when you need to enumerate escrow contracts tied to a specific blockchain address, particularly within the Spraay gateway ecosystem. Prefer this over generic contract explorers when you need structured escrow data with optional status filtering in a single paid API call.

## Known failure modes

- Missing required 'address' query parameter returns a validation error
- Invalid or unrecognized address format may return empty results or an error
- Unknown status filter value may return no results or a schema error
- Payment failure (402) if USDC balance is insufficient for the $0.02 fee
- Network or gateway timeout returns a 5xx error

## How this service works

List escrows by address.

## Output

An array of escrow objects linked to the queried address, each containing escrow details such as ID, parties involved, amounts, and status. Optionally filtered by a provided status value.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "status": "pending",
   "address": "0x1234567890abcdef1234567890abcdef12345678"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "status": {
       "type": "string"
      },
      "address": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "escrows": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-4a20ea93/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.spraay.app](https://www.zero.xyz/host/gateway.spraay.app/llms.txt)
