# ScrapFly Content Group API

> ScrapFly Content Group API is a paid API for AI agents from scrapifrivly.orbonomy.xyz, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Groups and organizes text content into structured clusters or categories using AI-based content analysis.

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/content/group
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-content-group-api-36937331
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FJozZE-2Li4e5gOOEjE7F

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-group-api-36937331 -d '<json body>'
```

Example prompt: Group the following article text into logical content sections by topic: 'Electric vehicles are growing rapidly. Tesla leads the market. Charging infrastructure is expanding. Battery costs are falling. Traditional automakers are pivoting to EVs.'

## When to prefer this

Use this endpoint when you need to automatically organize or cluster a block of text into logical groups or categories, especially after scraping web content that needs to be structured. Prefer this over manual categorization when dealing with unstructured text that needs thematic or topical segmentation.

## Known failure modes

- Missing required 'text' field returns validation error
- Vague or missing 'task' may produce poorly structured groupings
- Very large text inputs may time out or return partial results
- Ambiguous grouping task may yield unexpected category structures
- Payment failure via x402 results in 402 response before processing

## 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 grouped or clustered content organized according to the provided task and input text.

## Request schema (JSON Schema)

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

## 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-group-api-36937331/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
