# Return Policy Extractor

> Return Policy Extractor is a paid API for AI agents from api.strale.io, paid per call via x402, $0.216001/call, status unknown (last checked 2026-09-14).

Extracts structured return and refund policy details from a retailer website, including return window, conditions, exclusions, and process steps.

## Facts

- Endpoint: GET https://api.strale.io/x402/return-policy-extract
- Price: $0.216001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-5ff0dce7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NI83q6fgFpl52sKZ6T3Qe

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 api-strale-io-5ff0dce7
```

Example prompt: Can you pull the return policy from https://www.zappos.com — I need to know the return window, any conditions or exclusions, and the steps to actually make a return?

## When to prefer this

Use this endpoint when you need to programmatically retrieve and structure a retailer's return policy from their website, especially in agent workflows involving purchase decisions, customer support automation, or comparison shopping. Prefer this over manual scraping or generic web search when you need clean, structured policy fields (window, conditions, exclusions, steps) ready for downstream logic.

## Known failure modes

- Retailer URL is inaccessible or returns a non-200 status — extraction fails
- Website does not have a clearly defined return policy page — may return empty or partial results
- Policy is embedded in a complex JavaScript-rendered page — extraction may be incomplete
- URL parameter missing — returns 400 bad request
- Retailer blocks automated access (bot protection) — extraction fails

## How this service works

Extract return/refund policy from a retailer website. Returns window, conditions, exclusions, process steps. SQS: 50/100.

## Output

Returns structured data about the retailer's return/refund policy, including: return window (e.g. 30 days), conditions (e.g. unworn, original packaging), exclusions (e.g. final sale items), and step-by-step process for initiating a return.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Retailer website URL"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-5ff0dce7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
