# Friday Seller Tools – Bulk CSV Audit

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

Audits a bulk CSV file of marketplace product listings and returns a queued job with actionable improvement recommendations for Amazon, Walmart, Shopify, or eBay.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/listings/bulk-csv-audit
- Price: $1/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-bulk-csv-audit-6752f211
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gJRI3I3RyXqRpFKWShzfz

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-bulk-csv-audit-6752f211 -d '<json body>'
```

Example prompt: Can you audit my bulk Amazon listing CSV — I have about 200 SKUs in there and want to catch any missing fields, bad titles, or compliance issues before I upload it?

## When to prefer this

Choose this endpoint when you need to validate a large batch of product listings in CSV format before uploading to Amazon, Walmart, Shopify, or eBay. It is purpose-built for e-commerce seller workflows, catches compliance and content issues at scale, and costs only $1 USDC per call — making it ideal for pre-upload QA automation in agent pipelines managing multi-marketplace catalogs.

## Known failure modes

- Invalid or malformed CSV format returns an error
- Unsupported marketplace type causes rejection
- Missing required columns triggers validation error
- Oversized file may exceed payload limits
- Job queue delays may cause slow turnaround for large files
- Network/server errors from Railway-hosted infrastructure

## 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 containing a job_id and a status field (e.g. 'queued'), indicating the audit has been accepted and is processing asynchronously. The agent should poll or await results using the job_id to retrieve the full audit report with listing-level issues and recommendations.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "csv_text": {
   "type": "string",
   "title": "Csv Text",
   "maxLength": 200000,
   "minLength": 1
  },
  "marketplace": {
   "enum": [
    "amazon_us",
    "walmart_us",
    "shopify",
    "ebay_us"
   ],
   "type": "string",
   "title": "Marketplace",
   "default": "amazon_us"
  }
 }
}
```

## 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-bulk-csv-audit-6752f211/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)
