# Friday Seller Tools – Q&A Draft Generator

> Friday Seller Tools – Q&A Draft Generator 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 draft Amazon, Walmart, Shopify, or eBay product question-and-answer content to support marketplace listings and advertising deliverables.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/customers/question-answer-draft
- 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-q-a-draft-generator-c0d4756f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cbw_obmgCkUmtKg5LaOxC

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-q-a-draft-generator-c0d4756f -d '<json body>'
```

Example prompt: Can you draft Q&A answers for my Amazon listing for a stainless steel water bottle — buyers often ask about lid leakage, BPA safety, and dishwasher compatibility?

## When to prefer this

Choose this endpoint when you need low-cost, instant Q&A draft content specifically for marketplace listings on Amazon, Walmart, Shopify, or eBay. It is purpose-built for seller tooling workflows and is priced at $0.25 per call, making it suitable for high-volume listing preparation. Prefer it over general-purpose LLM calls when you want marketplace-aware Q&A copy without building your own prompt engineering.

## Known failure modes

- Missing or insufficient product context may result in generic or unusable Q&A drafts
- Unsupported marketplace platform may cause a validation error
- Payment failure via x402 protocol will prevent job creation
- Service unavailability on Railway hosting may return 5xx errors
- Malformed request body may return 400 bad request

## 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 immediately upon submission. The agent should poll or await the completed job to retrieve the drafted Q&A content — answer text tailored to the specified marketplace and product.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tone": {
   "enum": [
    "neutral",
    "warm",
    "concise"
   ],
   "type": "string",
   "title": "Tone",
   "default": "neutral"
  },
  "marketplace": {
   "enum": [
    "amazon_us",
    "walmart_us",
    "shopify",
    "ebay_us"
   ],
   "type": "string",
   "title": "Marketplace",
   "default": "amazon_us"
  },
  "product_name": {
   "type": "string",
   "title": "Product Name",
   "maxLength": 200,
   "minLength": 2
  },
  "verified_facts": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "CustomerQuestionFact",
    "required": [
     "label",
     "value"
    ],
    "properties": {
     "label": {
      "type": "string",
      "title": "Label",
      "maxLength": 100,
      "minLength": 2
     },
     "value": {
      "type": "string",
      "title": "Value",
      "maxLength": 500,
      "minLength": 2
     }
    },
    "description": "One seller-verified fact that may be used in a public answer draft.",
    "additionalProperties": false
   },
   "title": "Verified Facts",
   "maxItems": 12,
   "minItems": 1
  },
  "customer_question": {
   "type": "string",
   "title": "Customer Question",
   "maxLength": 2000,
   "minLength": 5
  },
  "max_facts_in_answer": {
   "type": "integer",
   "title": "Max Facts In Answer",
   "default": 3,
   "maximum": 5,
   "minimum": 1
  }
 }
}
```

## 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-q-a-draft-generator-c0d4756f/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)
