# ScrapFly Content Condenser

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

Condenses and summarizes text content into a shorter form with optional style and length controls

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/condense
- Price: $0.1/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-condenser-c7144e32
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Oi8FpokdbS3Mtu6vdETd

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

Example prompt: Condense this 2000-word product review into a crisp bullet-point summary of no more than 150 words: [paste text here]

## When to prefer this

Use this endpoint when you need to programmatically shorten or summarize arbitrary text with style and length control, especially in automated pipelines that already use ScrapFly for web scraping and want to condense scraped content in one integrated workflow

## Known failure modes

- Missing required 'text' field returns validation error
- Text too long may exceed processing limits
- Invalid max_length value may cause error
- Network timeout on very large inputs
- Payment failure via x402 returns 402 status

## 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 condensed version of the input text, reduced to the requested style and length

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "text"
  },
  "style": {
   "type": "string",
   "description": "style"
  },
  "max_length": {
   "type": "number",
   "description": "max_length"
  }
 }
}
```

## 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-condenser-c7144e32/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)
