# ScrapFly Content Pulse Analyzer

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

Analyzes and extracts pulse/sentiment or key signals from a given text using ScrapFly's content API

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/pulse
- Price: $0.05/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-pulse-analyzer-20bcb71c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uDTEeUon947qeEE0Bol9h

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-pulse-analyzer-20bcb71c -d '<json body>'
```

Example prompt: Can you analyze the pulse of this article text for me: 'The new product launch exceeded all expectations, driving record quarterly revenue and renewed investor confidence across the board'?

## When to prefer this

Use this endpoint when you need to quickly extract content pulse, tone, or key signals from a block of text and are already using the ScrapFly ecosystem via x402 micropayments on Base chain. Prefer this over general NLP APIs if you need a lightweight per-request pay-as-you-go model.

## Known failure modes

- Missing required 'text' field returns error or success:false
- Empty string input may return empty or null data
- Malformed JSON body returns 400 error
- Payment failure via x402 on Base chain returns 402 status
- Service unavailability returns 500 error

## 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 pulse/content analysis results derived from the submitted text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "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-pulse-analyzer-20bcb71c/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)
