# Friday Seller Tools – Walmart Item Performance Trend

> Friday Seller Tools – Walmart Item Performance Trend 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).

Analyzes and returns performance trend data for a Walmart marketplace item, delivered as an async job.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/walmart/item-performance-trend
- 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-walmart-item-performance-trend-afe07be9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BXorMvrLsF_5ut2Ui-W7o

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-walmart-item-performance-trend-afe07be9 -d '<json body>'
```

Example prompt: Pull the performance trend for my Walmart item — I want to see how it's been doing over the past 30 days in terms of sales velocity and ranking using Friday Seller Tools.

## When to prefer this

Choose this endpoint when you need historical performance trend data specifically for a Walmart marketplace item — particularly useful for diagnosing sales velocity changes, preparing advertising strategies, or conducting periodic seller reviews. Prefer this over generic analytics tools when you're working within the Walmart seller ecosystem and need structured, actionable trend output via the Friday Seller Tools platform.

## Known failure modes

- Invalid or missing Walmart item identifier returns an error or failed job status
- Unrecognized date range parameters may cause job failure
- Rate limiting or payment failure at $0.50 USDC per call may block submission
- Job queued but processing delayed — agent must handle async polling
- Walmart marketplace data unavailable for the requested period returns empty trend data

## How this service works

Instant, low-cost Amazon, Walmart, Shopify, and eBay listing, upload-preparation, advertising, and image-brief deliverables.

## Output

Returns a JSON object with a job_id and status field (initially 'queued'), indicating the performance trend analysis has been submitted as an async job. The agent should poll or retrieve results using the job_id once processing is complete.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "records": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "WalmartItemPerformanceTrendRecord",
    "required": [
     "record_reference",
     "sku",
     "baseline",
     "current"
    ],
    "properties": {
     "sku": {
      "type": "string",
      "title": "Sku",
      "maxLength": 120,
      "minLength": 1
     },
     "current": {
      "type": "object",
      "title": "WalmartItemPerformancePeriod",
      "required": [
       "visits",
       "units_sold",
       "gross_merchandise_value",
       "commission"
      ],
      "properties": {
       "visits": {
        "type": "integer",
        "title": "Visits",
        "maximum": 1000000000,
        "minimum": 0
       },
       "commission": {
        "type": "number",
        "title": "Commission",
        "maximum": 1000000000,
        "minimum": 0
       },
       "units_sold": {
        "type": "integer",
        "title": "Units Sold",
        "maximum": 1000000000,
        "minimum": 0
       },
       "refunded_sales": {
        "type": "number",
        "title": "Refunded Sales",
        "default": 0,
        "maximum": 1000000000,
        "minimum": 0
       },
       "cancelled_sales": {
        "type": "number",
        "title": "Cancelled Sales",
        "default": 0,
        "maximum": 1000000000,
        "minimum": 0
       },
       "cancelled_units": {
        "type": "integer",
        "title": "Cancelled Units",
        "default": 0,
        "maximum": 1000000000,
        "minimum": 0
       },
       "gross_merchandise_value": {
        "type": "number",
        "title": "Gross Merchandise Value",
        "maximum": 1000000000,
        "minimum": 0
       }
      },
      "additionalProperties": false
     },
     "item_id": {
      "anyOf": [
       {
        "type": "string",
        "maxLength": 120,
        "minLength": 1
       },
       {
        "type": "null"
       }
      ],
      "title": "Item Id",
      "default": null
     },
     "baseline": {
      "type": "object",
      "title": "WalmartItemPerformancePeriod",
      "required": [
       "visits",
       "units_sold",
       "gross_merchandise_value",
       "commission"
      ],
      "properties": {
       "visits": {
        "type": "integer",
        "title": "Visits",
        "maximum": 1000000000,
        "minimum": 0
       },
       "commission": {
        "type": "number",
        "title": "Commission",
        "maximum": 1000000000,
       
… (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-walmart-item-performance-trend-afe07be9/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)
