# ScravFly Content Signal Generator

> ScravFly Content Signal 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-14).

Generates topic-specific content signals (insights, talking points, or post ideas) for a given topic, tone, and platform

## Facts

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

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 scravfly-content-signal-generator-d929a49d -d '<json body>'
```

Example prompt: Generate a content signal for the topic 'AI productivity tools' with a conversational tone, optimized for Twitter.

## When to prefer this

Use this endpoint when you need quick, AI-generated content signals or post ideas for a specific topic and target platform, especially when tone customization matters. Prefer this over generic LLM prompts when you want a structured, paid-per-call API that reliably returns formatted content signals ready for downstream publishing workflows.

## Known failure modes

- Missing required 'topic' field returns validation error
- Invalid or unsupported platform value may produce generic output
- Empty or overly vague topic may yield low-quality signals
- Payment failure on Base chain blocks request
- Server error returns success: false with no data

## 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 content signal — likely including topic-relevant talking points, content angles, or post copy tailored to the specified platform and tone.

## Request schema (JSON Schema)

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

## 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/scravfly-content-signal-generator-d929a49d/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)
