# Friday Seller Tools – Listing Suppression Diagnosis

> Friday Seller Tools – Listing Suppression Diagnosis 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).

Diagnoses why an Amazon, Walmart, Shopify, or eBay product listing is suppressed and returns actionable remediation deliverables.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/listings/suppression-diagnosis
- 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-listing-suppression-diagnosis-ab3ec12d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9zCKs3FtXIRB8fGK9BcIC

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-listing-suppression-diagnosis-ab3ec12d -d '<json body>'
```

Example prompt: My Amazon listing for ASIN B09XYZ1234 got suppressed and I have no idea why — can you run a suppression diagnosis on it and tell me exactly what's wrong and how to fix it?

## When to prefer this

Choose this endpoint when a seller needs to quickly understand why a specific product listing is suppressed on Amazon, Walmart, Shopify, or eBay and wants actionable remediation steps. It is particularly useful for AI agents automating seller account health workflows, or when a seller tool dashboard needs to surface suppression root causes at low cost ($0.25 per call) without building in-house marketplace compliance logic.

## Known failure modes

- Invalid or unrecognized listing ID / ASIN returns an error or empty diagnosis
- Unsupported marketplace platform causes a validation failure
- Payment of $0.25 USDC not confirmed results in 402 Payment Required
- Listing is not actually suppressed, so no suppression reason is found
- Rate limiting or server timeout on the Railway deployment returns a 5xx error

## 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 completed diagnosis report includes the identified suppression reason(s), affected listing details, and prioritized remediation steps specific to the target marketplace (Amazon, Walmart, Shopify, or eBay).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "title": {
   "type": "string",
   "title": "Title",
   "default": "",
   "maxLength": 500
  },
  "bullets": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 1000,
    "minLength": 1
   },
   "title": "Bullets",
   "maxItems": 10
  },
  "description": {
   "type": "string",
   "title": "Description",
   "default": "",
   "maxLength": 10000
  },
  "marketplace": {
   "enum": [
    "amazon_us",
    "walmart_us",
    "shopify",
    "ebay_us"
   ],
   "type": "string",
   "title": "Marketplace",
   "default": "amazon_us"
  },
  "notice_text": {
   "type": "string",
   "title": "Notice Text",
   "default": "",
   "maxLength": 5000
  },
  "product_name": {
   "type": "string",
   "title": "Product Name",
   "maxLength": 200,
   "minLength": 2
  },
  "listing_status": {
   "enum": [
    "search_suppressed",
    "detail_page_removed",
    "inactive",
    "offer_unavailable",
    "unknown"
   ],
   "type": "string",
   "title": "Listing Status"
  },
  "recent_changes": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 500,
    "minLength": 2
   },
   "title": "Recent Changes",
   "maxItems": 20
  },
  "observed_signals": {
   "type": "array",
   "items": {
    "enum": [
     "category_approval_required",
     "identity_verification_required",
     "image_rejected",
     "intellectual_property_notice",
     "inventory_or_fulfillment_error",
     "listing_content_error",
     "missing_or_invalid_product_identifier",
     "pricing_or_offer_error",
     "restricted_product_notice",
     "variation_relationship_error",
     "unknown"
    ],
    "type": "string"
   },
   "title": "Observed Signals",
   "maxItems": 11
  },
  "evidence_available": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 500,
    "minLength": 2
   },
   "title": "Evidence Available",
   "maxItems": 30
  }
 }
}
```

## 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-listing-suppression-diagnosis-ab3ec12d/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)
