# Friday Seller Tools – Compliance Scan

> Friday Seller Tools – Compliance Scan 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-13).

Scans an e-commerce product listing for compliance issues across Amazon, Walmart, Shopify, and eBay marketplace policies.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/listings/compliance-scan
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/friday-seller-tools-compliance-scan-915458fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1tIg4Zs1aAqkOGxWn8vDI

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-compliance-scan-915458fd -d '<json body>'
```

Example prompt: Run a compliance scan on my Amazon listing for my wireless earbuds — the title is 'ProSound X5 Wireless Earbuds 40hr Battery Noise Cancelling' and the bullet points mention a lifetime guarantee and comparison to Bose, and I want to make sure nothing will get it flagged or suppressed before I upload.

## When to prefer this

Choose this endpoint when you need to proactively validate a product listing against specific marketplace policies before uploading, particularly for Amazon, Walmart, Shopify, or eBay. Ideal when listing content contains potentially risky claims (health benefits, #1 claims, competitor comparisons, guarantees) that could trigger policy flags. Use this over generic content moderation tools because it is purpose-built for e-commerce marketplace compliance rules rather than general content policy.

## Known failure modes

- Missing or malformed listing content returns a 400 validation error
- Unsupported marketplace platform returns an error indicating valid options
- Rate limiting or quota exhaustion returns a 429 or payment error
- Ambiguous or empty listing fields may result in incomplete scan coverage
- Network timeout on the Railway.app backend may return a 503

## 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 upon submission. The compliance scan result (once processed) includes flagged policy violations, specific problematic content, which marketplace rules were triggered, and an overall compliance status indicating whether the listing is likely to be accepted or rejected.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "title": {
   "type": "string",
   "title": "Title",
   "maxLength": 500,
   "minLength": 1
  },
  "bullets": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 1000,
    "minLength": 1
   },
   "title": "Bullets",
   "maxItems": 10
  },
  "description": {
   "anyOf": [
    {
     "type": "string",
     "maxLength": 5000
    },
    {
     "type": "null"
    }
   ],
   "title": "Description",
   "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": 1
  }
 }
}
```

## 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-compliance-scan-915458fd/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)
