# ScrapFly Content Listing Generator

> ScrapFly Content Listing Generator is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.6/call, status unknown (last checked 2026-09-15).

Generates product listing content (e.g. descriptions, titles) for a given product with configurable tone and length

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/content/listing
- Price: $0.6/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-content-listing-generator-a7639e59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PIbfHgRUo39VePqCCaVmv

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 scrapfly-content-listing-generator-a7639e59 -d '<json body>'
```

Example prompt: Write me a product listing for my new ergonomic office chair called 'CloudSeat Pro' — keep the tone professional and make it medium length.

## When to prefer this

Choose this endpoint when you need to quickly generate e-commerce or marketplace product listing copy for a named product and want control over tone and length. It is well-suited for AI agent workflows that need to auto-generate product descriptions at scale via a pay-per-request model on Base chain, without managing a full LLM prompt pipeline yourself.

## Known failure modes

- Missing required 'product' field returns a validation error
- Invalid or unsupported tone/length values may produce generic output or errors
- Network timeouts on the hosted Vercel instance
- Payment failure via x402 on Base chain results in a 402 response before content is generated
- Vague product names may produce low-quality or irrelevant listings

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing the generated product listing content, including text such as titles, descriptions, or copy tailored to the specified product, tone, and length.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "product"
 ],
 "properties": {
  "tone": {
   "type": "string",
   "description": "tone"
  },
  "length": {
   "type": "string",
   "description": "length"
  },
  "product": {
   "type": "string",
   "description": "product"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-content-listing-generator-a7639e59/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
