# Friday Seller Tools – eBay Seller Standards Defect Projection

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

Projects future eBay seller standards defect rates based on provided account and transaction data to help sellers proactively manage their account health.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/ebay/seller-standards-defect-projection
- Price: $0.5/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-ebay-seller-standards-defect-projection-0bfcec33
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mXGQnRCfXQ5gEXdw6s_in

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-ebay-seller-standards-defect-projection-0bfcec33 -d '<json body>'
```

Example prompt: Based on my recent eBay transaction history, project my seller standards defect rate for the upcoming evaluation period and tell me if I'm at risk of dropping below Top Rated or Above Standard status.

## When to prefer this

Use this endpoint when an eBay seller needs a forward-looking computation of their defect rate and standards tier risk ahead of an official eBay evaluation period, rather than simply reading current eBay dashboard metrics. Ideal for proactive account management and scenario planning after high-volume sales periods.

## Known failure modes

- Missing or malformed seller account data returns a 400 validation error
- Insufficient transaction history to compute a meaningful projection
- Payment not received results in 402 Payment Required before processing
- Service unavailable on Railway deployment returns 503
- Job may remain queued if backend is under load, requiring polling

## 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 indicating the projection has been submitted for async processing; the agent can poll or await a callback with the computed defect rate projection, projected seller standards tier, and risk indicators.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "marketplace": {
   "type": "string",
   "const": "ebay_us",
   "title": "Marketplace",
   "default": "ebay_us"
  },
  "transactions": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "EbaySellerStandardsTransaction",
    "required": [
     "transaction_reference"
    ],
    "properties": {
     "defects": {
      "type": "array",
      "items": {
       "enum": [
        "transaction_defect",
        "item_not_received",
        "not_as_described",
        "late_shipment",
        "case_closed_without_seller_resolution",
        "seller_cancellation"
       ],
       "type": "string"
      },
      "title": "Defects",
      "maxItems": 6
     },
     "order_id": {
      "anyOf": [
       {
        "type": "string",
        "maxLength": 120,
        "minLength": 1
       },
       {
        "type": "null"
       }
      ],
      "title": "Order Id",
      "default": null
     },
     "transaction_reference": {
      "type": "string",
      "title": "Transaction Reference",
      "maxLength": 120,
      "minLength": 1
     }
    },
    "description": "One seller-supplied evaluation-period transaction with defect flags only.",
    "additionalProperties": false
   },
   "title": "Transactions",
   "maxItems": 2000,
   "minItems": 1
  },
  "upcoming_transactions": {
   "type": "integer",
   "title": "Upcoming Transactions",
   "default": 0,
   "maximum": 1000000,
   "minimum": 0
  },
  "evaluation_period_label": {
   "type": "string",
   "title": "Evaluation Period Label",
   "maxLength": 120,
   "minLength": 1
  },
  "upcoming_expected_defects": {
   "type": "integer",
   "title": "Upcoming Expected Defects",
   "default": 0,
   "maximum": 1000000,
   "minimum": 0
  },
  "target_defect_rate_percent": {
   "type": "number",
   "title": "Target Defect Rate Percent",
   "maximum": 100,
   "exclusiveMinimum": 0
  }
 }
}
```

## 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-ebay-seller-standards-defect-projection-0bfcec33/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)
