# Friday Seller Tools – Shipping Template Cost Estimate

> Friday Seller Tools – Shipping Template Cost Estimate 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 instant cost estimate for a shipping template used in marketplace listings on Amazon, Walmart, Shopify, or eBay.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/shipping/template-cost-estimate
- 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-shipping-template-cost-estimate-1323d567
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iPaIG6cNGoXYDLsWQ5Fyt

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-shipping-template-cost-estimate-1323d567 -d '<json body>'
```

Example prompt: Can you estimate the shipping template cost for a 2 lb product shipping to the continental US that I'm listing on Amazon — I need to know the cost before I set up my shipping template.

## When to prefer this

Use this endpoint when an Amazon, Walmart, Shopify, or eBay seller needs a quick, low-cost ($0.25) estimate of shipping template costs before creating or uploading a product listing. Prefer this over manual carrier rate lookups when the goal is marketplace-specific shipping template pricing rather than live carrier quotes.

## Known failure modes

- Missing required shipping parameters returns a 400 error
- Invalid marketplace platform identifier causes validation failure
- Oversized or out-of-range weight/dimension inputs may be rejected
- Payment not included or insufficient USDC triggers x402 payment required response
- Service downtime on Railway hosting returns 5xx errors

## 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 status (e.g. 'queued'), indicating the cost estimate request has been accepted and is being processed. The agent should poll or await the job result to retrieve the computed shipping template cost estimate.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "zones": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "ShippingZoneCostInput",
    "required": [
     "zone_name",
     "order_share_percent",
     "base_carrier_rate_usd"
    ],
    "properties": {
     "zone_name": {
      "type": "string",
      "title": "Zone Name",
      "maxLength": 100,
      "minLength": 2
     },
     "per_pound_rate_usd": {
      "type": "number",
      "title": "Per Pound Rate Usd",
      "default": 0,
      "maximum": 10000,
      "minimum": 0
     },
     "order_share_percent": {
      "type": "number",
      "title": "Order Share Percent",
      "maximum": 100,
      "exclusiveMinimum": 0
     },
     "base_carrier_rate_usd": {
      "type": "number",
      "title": "Base Carrier Rate Usd",
      "maximum": 100000,
      "minimum": 0
     },
     "surcharge_per_order_usd": {
      "type": "number",
      "title": "Surcharge Per Order Usd",
      "default": 0,
      "maximum": 100000,
      "minimum": 0
     },
     "buyer_shipping_charge_usd": {
      "type": "number",
      "title": "Buyer Shipping Charge Usd",
      "default": 0,
      "maximum": 100000,
      "minimum": 0
     }
    },
    "additionalProperties": false
   },
   "title": "Zones",
   "maxItems": 25,
   "minItems": 1
  },
  "marketplace": {
   "enum": [
    "amazon_us",
    "walmart_us",
    "shopify",
    "ebay_us"
   ],
   "type": "string",
   "title": "Marketplace",
   "default": "amazon_us"
  },
  "template_name": {
   "type": "string",
   "title": "Template Name",
   "maxLength": 150,
   "minLength": 2
  },
  "actual_weight_lb": {
   "type": "number",
   "title": "Actual Weight Lb",
   "maximum": 10000,
   "exclusiveMinimum": 0
  },
  "dimensional_weight_lb": {
   "anyOf": [
    {
     "type": "number",
     "maximum": 10000,
     "exclusiveMinimum": 0
    },
    {
     "type": "null"
    }
   ],
   "title": "Dimensional Weight Lb",
   "default": null
  },
  "expected_monthly_orders": {
   "type": "integer",
   "title": "Expected Monthly Orders",
   "maximum": 10000000,
   "minimum": 1
  },
  "round_billable_weight_up": {
   "type": "boolean",
   "title": "Round Billable Weight Up",
   "default": true
  },
  "packaging_cost_per_order_usd": {
   "type": "number",
   "title": "Packaging Cost Per Order Usd",
   "default": 0,
   "maximum": 100000,
   "minimum": 0
  },
  "marketplace_fee_percent_on_shipping": {
   "type": "number",
   "title": "Marketplace Fee Percent On Shipping",
   "default"
… (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-shipping-template-cost-estimate-1323d567/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)
