# Friday Seller Tools – SKU Normalize

> Friday Seller Tools – SKU Normalize 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).

Normalizes and standardizes SKU data for cross-marketplace listing preparation across Amazon, Walmart, Shopify, and eBay.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/catalog/sku-normalize
- 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-sku-normalize-7f51f397
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fRvMyM0xUNeGAIxCxnQpg

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-sku-normalize-7f51f397 -d '<json body>'
```

Example prompt: I have a messy product catalog with inconsistent SKU formats and I need them normalized and standardized so they're ready to upload to Amazon and Walmart — can you run my SKU data through Friday Seller Tools' SKU normalizer?

## When to prefer this

Choose this endpoint when you need to standardize or clean product SKU identifiers for cross-marketplace compatibility, especially when preparing bulk catalog uploads for Amazon, Walmart, Shopify, or eBay. Prefer this over manual data cleaning or general-purpose transformation tools when dealing with marketplace-specific SKU format requirements.

## Known failure modes

- Invalid or malformed SKU input data returns an error response
- Missing required fields in the request body cause validation failures
- Unsupported marketplace targets may return partial results
- Payment failure (insufficient USDC) blocks the request
- Asynchronous job may time out or fail silently if job_id is not polled

## 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 a 'queued' status, indicating the normalization job has been accepted and is being processed asynchronously. The agent should poll or retrieve results using the job_id once processing is complete.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "items": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "SkuNormalizationItem",
    "required": [
     "sku"
    ],
    "properties": {
     "sku": {
      "type": "string",
      "title": "Sku",
      "maxLength": 120,
      "minLength": 1
     },
     "reference": {
      "anyOf": [
       {
        "type": "string",
        "maxLength": 80,
        "minLength": 1
       },
       {
        "type": "null"
       }
      ],
      "title": "Reference",
      "default": null
     }
    },
    "description": "One seller-supplied SKU and an optional non-sensitive row reference.",
    "additionalProperties": false
   },
   "title": "Items",
   "maxItems": 500,
   "minItems": 1
  },
  "separator": {
   "enum": [
    "-",
    "_"
   ],
   "type": "string",
   "title": "Separator",
   "default": "-"
  },
  "max_length": {
   "type": "integer",
   "title": "Max Length",
   "default": 40,
   "maximum": 80,
   "minimum": 8
  },
  "letter_case": {
   "enum": [
    "upper",
    "lower",
    "preserve"
   ],
   "type": "string",
   "title": "Letter Case",
   "default": "upper"
  },
  "existing_skus": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 120,
    "minLength": 1
   },
   "title": "Existing Skus",
   "maxItems": 2000
  }
 }
}
```

## 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-sku-normalize-7f51f397/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)
