# Friday Seller Tools – Inventory Restock Plan

> Friday Seller Tools – Inventory Restock Plan 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).

Generates an inventory restock plan for marketplace sellers, recommending when and how much to reorder across Amazon, Walmart, Shopify, and eBay.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/inventory/restock-plan
- 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-inventory-restock-plan-0694834b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zCmjDbP9R9IxN83RpUOe4

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-inventory-restock-plan-0694834b -d '<json body>'
```

Example prompt: Can you generate a restock plan for my Amazon and Shopify inventory? I want to know which SKUs to reorder, how many units, and when based on my current stock levels and sales velocity.

## When to prefer this

Choose this endpoint when you need actionable, marketplace-specific inventory replenishment recommendations for Amazon, Walmart, Shopify, or eBay sellers at a low per-call cost. It is especially useful for automating restock workflows in agent pipelines where human review of inventory data is impractical.

## Known failure modes

- Missing or malformed inventory input data returns a 400 validation error
- Insufficient sales history may result in low-confidence or incomplete restock recommendations
- Service unavailability on Railway hosting may return a 503 timeout
- Incomplete SKU data may cause partial plan generation with missing line items

## 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 restock plan computation has been initiated. The plan typically includes recommended reorder quantities, timing, and prioritized SKUs across marketplace channels.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "skus": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "RestockSkuInput",
    "required": [
     "sku",
     "units_on_hand",
     "daily_sales_velocity"
    ],
    "properties": {
     "sku": {
      "type": "string",
      "title": "Sku",
      "pattern": "^[A-Za-z0-9._-]+$",
      "maxLength": 80,
      "minLength": 1
     },
     "product_name": {
      "anyOf": [
       {
        "type": "string",
        "maxLength": 200,
        "minLength": 2
       },
       {
        "type": "null"
       }
      ],
      "title": "Product Name",
      "default": null
     },
     "units_inbound": {
      "type": "integer",
      "title": "Units Inbound",
      "default": 0,
      "maximum": 10000000,
      "minimum": 0
     },
     "units_on_hand": {
      "type": "integer",
      "title": "Units On Hand",
      "maximum": 10000000,
      "minimum": 0
     },
     "lead_time_days": {
      "anyOf": [
       {
        "type": "integer",
        "maximum": 365,
        "minimum": 1
       },
       {
        "type": "null"
       }
      ],
      "title": "Lead Time Days",
      "default": null
     },
     "case_pack_units": {
      "anyOf": [
       {
        "type": "integer",
        "maximum": 100000,
        "minimum": 1
       },
       {
        "type": "null"
       }
      ],
      "title": "Case Pack Units",
      "default": null
     },
     "daily_sales_velocity": {
      "type": "number",
      "title": "Daily Sales Velocity",
      "maximum": 100000,
      "exclusiveMinimum": 0
     },
     "minimum_order_quantity": {
      "anyOf": [
       {
        "type": "integer",
        "maximum": 1000000,
        "minimum": 1
       },
       {
        "type": "null"
       }
      ],
      "title": "Minimum Order Quantity",
      "default": null
     }
    },
    "additionalProperties": false
   },
   "title": "Skus",
   "maxItems": 100,
   "minItems": 1
  },
  "marketplace": {
   "enum": [
    "amazon_us",
    "walmart_us",
    "shopify",
    "ebay_us"
   ],
   "type": "string",
   "title": "Marketplace",
   "default": "amazon_us"
  },
  "target_cover_days": {
   "type": "integer",
   "title": "Target Cover Days",
   "default": 60,
   "maximum": 365,
   "minimum": 7
  },
  "review_period_days": {
   "type": "integer",
   "title": "Review Period Days",
   "default": 14,
   "maximum": 90,
   "minimum": 1
  },
  "default_lead_time_days": {
   "type": "integer",
   "title": "Default Lead Time Day
… (truncated)
```

## 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-inventory-restock-plan-0694834b/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)
