# Strale Blog Post Outline Generator

> Strale Blog Post Outline Generator is a paid API for AI agents from api.strale.io, paid per call via x402, $0.216/call, status unknown (last checked 2026-09-14).

Generates a structured blog post outline including title options, sections with subsections, and key points given a set of keywords.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/blog-post-outline
- Price: $0.216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-blog-post-outline-generator-82207522
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z_b53prZpE-o3k0tjaP-P

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 strale-blog-post-outline-generator-82207522
```

Example prompt: Can you generate a structured blog post outline for the keywords 'sustainable travel tips for beginners'? I need title options, main sections, and subsections.

## When to prefer this

Choose this endpoint when you need a structured, hierarchical blog post outline (titles + sections + subsections) from keywords, rather than a full draft. It is purpose-built for content planning and SEO workflows where structure matters before writing begins. Prefer it over general LLM prompting when you need a consistent, auditable output with a cryptographic audit record, or when operating within a multi-step agentic content pipeline.

## Known failure modes

- Missing or empty 'keywords' parameter — may return an error or an overly generic outline
- Very broad or vague keywords may produce a generic structure with low specificity
- Non-English keywords may yield inconsistent or degraded results
- Rate limiting or payment failure via x402 protocol results in a 402 Payment Required response
- Network timeout for slow upstream generation

## How this service works

Generate a structured blog post outline. Returns title options, sections with subsections and key points, estimated word count, SEO keywords. JSON, not prose.

## Output

Returns a structured blog post outline including multiple title options, a list of main sections each with subsections and key points or angles to cover, providing a ready-to-use writing framework for content creators.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "tone": {
   "type": "string"
  },
  "topic": {
   "type": "string"
  },
  "keywords": {
   "type": "array"
  },
  "target_audience": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "sections": {
  "type": "array"
 },
 "seo_keywords": {
  "type": "array"
 },
 "title_options": {
  "type": "array"
 },
 "estimated_total_words": {
  "type": "integer"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-blog-post-outline-generator-82207522/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
