# Friday Seller Tools – Return Reason Analysis

> Friday Seller Tools – Return Reason Analysis is a paid API for AI agents from friday-seller-tools-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Analyzes marketplace return reasons to surface actionable insights for Amazon, Walmart, Shopify, and eBay sellers.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/quality/return-reason-analysis
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/friday-seller-tools-return-reason-analysis-f23e6e46
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RAZ49yjFQ-F12XSx_DcHo

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 friday-seller-tools-return-reason-analysis-f23e6e46 -d '<json body>'
```

Example prompt: Can you analyze the return reasons for my Amazon product ASIN B08XYZ1234 and tell me what's driving customers to return it so I can figure out what to fix?

## When to prefer this

Choose this endpoint when you need to systematically diagnose why customers are returning products on Amazon, Walmart, Shopify, or eBay — especially when trying to reduce return rates, improve listing accuracy, or identify product defects. It is purpose-built for e-commerce sellers needing structured return intelligence at low cost ($0.25/call), making it preferable to general-purpose analytics tools for marketplace-specific return workflows.

## Known failure modes

- Missing or invalid ASIN/SKU results in a 400 error
- Unsupported marketplace name causes validation failure
- Insufficient return data for meaningful analysis
- Payment not received causes 402 response before processing
- Job processing timeout for large return datasets

## How this service works

Instant, low-cost Amazon, Walmart, Shopify, and eBay listing, upload-preparation, advertising, and image-brief deliverables.

## Output

Returns a job_id and queued status immediately; once processed, delivers a structured breakdown of return reason categories, frequency analysis, root cause diagnosis, and actionable recommendations to reduce return rates for the specified marketplace product.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sku": {
   "anyOf": [
    {
     "type": "string",
     "pattern": "^[A-Za-z0-9._-]+$",
     "maxLength": 80,
     "minLength": 1
    },
    {
     "type": "null"
    }
   ],
   "title": "Sku",
   "default": null
  },
  "returns": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "ReturnReasonEntry",
    "required": [
     "reason_text"
    ],
    "properties": {
     "units": {
      "type": "integer",
      "title": "Units",
      "default": 1,
      "maximum": 100000,
      "minimum": 1
     },
     "reason_text": {
      "type": "string",
      "title": "Reason Text",
      "maxLength": 300,
      "minLength": 2
     },
     "buyer_comment": {
      "anyOf": [
       {
        "type": "string",
        "maxLength": 500,
        "minLength": 1
       },
       {
        "type": "null"
       }
      ],
      "title": "Buyer Comment",
      "default": null
     }
    },
    "additionalProperties": false
   },
   "title": "Returns",
   "maxItems": 200,
   "minItems": 1
  },
  "units_sold": {
   "anyOf": [
    {
     "type": "integer",
     "maximum": 10000000,
     "minimum": 1
    },
    {
     "type": "null"
    }
   ],
   "title": "Units Sold",
   "default": null
  },
  "marketplace": {
   "enum": [
    "amazon_us",
    "walmart_us",
    "shopify",
    "ebay_us"
   ],
   "type": "string",
   "title": "Marketplace",
   "default": "amazon_us"
  },
  "product_name": {
   "type": "string",
   "title": "Product Name",
   "maxLength": 200,
   "minLength": 2
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "job_id": "example",
  "status": "queued"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/friday-seller-tools-return-reason-analysis-f23e6e46/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from friday-seller-tools-production.up.railway.app](https://www.zero.xyz/host/friday-seller-tools-production.up.railway.app/llms.txt)
