# ScrapFly Tagline Generator

> ScrapFly Tagline Generator 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).

Generates catchy taglines for a given topic, with optional style, count, and platform targeting

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/tagline
- 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-tagline-generator-508800e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2qGNsc8ZkZasXAdJQZhre

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-tagline-generator-508800e9 -d '<json body>'
```

Example prompt: Generate 5 taglines for my eco-friendly water bottle brand called AquaPure in a fun and energetic style, optimized for Instagram.

## When to prefer this

Use this endpoint when you need AI-generated marketing taglines or slogans for a specific topic, brand, or product, especially when you want to control style, quantity, and target platform. Prefer this over generic LLM prompts when you want a structured, pay-per-use API that returns ready-to-use tagline options.

## Known failure modes

- Missing required 'topic' field returns validation error
- Invalid or unsupported style value may yield unexpected results
- High count values may return fewer results than requested
- Payment failure on Base chain returns 402 response
- Network or provider downtime returns 5xx 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 success flag and a data object containing generated taglines for the given topic, styled and scoped to the requested platform and count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "count": {
   "type": "number",
   "description": "count"
  },
  "style": {
   "type": "string",
   "description": "style"
  },
  "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/scrapfly-tagline-generator-508800e9/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)
