# ScrapFly Content Listing Generator

> ScrapFly Content Listing Generator is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

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

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/listing
- Price: $0.2/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-62539913
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2PYaErSzBXXKEoEjvNfVl

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-62539913 -d '<json body>'
```

Example prompt: Write a product listing for 'EcoBreeze Bamboo Water Bottle' using a friendly tone and keep it short — just a few sentences I can drop into my store.

## When to prefer this

Use this endpoint when you need to automatically generate ready-to-publish product listing copy with configurable tone and length, especially in automated e-commerce workflows where you pay per generation via USDC on Base chain.

## Known failure modes

- Missing required 'product' field returns validation error
- Invalid or unsupported tone/length values may return an error or unexpected output
- Payment failure via x402 returns 402 Payment Required
- Downstream content generation service unavailable returns 5xx error
- Empty or nonsensical product input may produce low-quality or generic output

## How this service works

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

## Output

Returns a success boolean and a data object containing the generated listing content for the specified product, written in the requested 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-62539913/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
