# Spraay Gateway Escrow Status Lookup

> Spraay Gateway Escrow Status Lookup is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Retrieve the current status and details of an escrow record by ID

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/escrow/create
- 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/spraay-gateway-escrow-status-lookup-74b8d582
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1CUiL384dgsr1PKgKEJvg

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 spraay-gateway-escrow-status-lookup-74b8d582
```

Example prompt: Can you check the current status of escrow ID 'escrow_abc123' on Spraay for me?

## When to prefer this

Use this endpoint when you need to look up the current status or details of a specific escrow record on the Spraay gateway using its unique ID. Prefer this over polling webhooks when you need a one-time synchronous check of escrow state.

## Known failure modes

- Missing required 'id' query parameter returns a 400 or validation error
- Invalid or non-existent escrow ID returns a 404 not found response
- Payment not included or insufficient triggers a 402 Payment Required response
- Service downtime returns a 500 server error

## How this service works

Create conditional escrow with milestones and expiry.

## Output

Returns an escrow object containing the current state, parties involved, amount, and other details for the requested escrow ID.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "escrow": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/spraay-gateway-escrow-status-lookup-74b8d582/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)
