# Strale Social Post Generator

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

Generates platform-optimized social media posts from a URL or content input, with configurable tone, platform, and hashtag count

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/social-post-generate
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-social-post-generator-50224f5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Yx3DSBGsNSX--BmHUWHat

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-social-post-generator-50224f5c
```

Example prompt: Can you generate a LinkedIn post from this article URL (https://example.com/my-article) in a professional tone with 3 hashtags?

## When to prefer this

Choose this endpoint when you need quick, platform-aware social post generation from either a URL or raw content, with explicit control over tone and hashtag count. It is well-suited for agents automating content marketing pipelines or converting existing articles/pages into social copy, especially when an audit trail per generation call is required. Prefer alternatives if you need bulk scheduling, direct publishing to social platforms, or image/video generation alongside text.

## Known failure modes

- Missing required 'content' or 'url' query parameter — returns 400 or empty result
- Unsupported platform name — may return generic output or error
- Invalid URL provided — content cannot be fetched, returns error
- Hashtag count of 0 or very high values may produce unexpected output
- Micropayment failure (x402) — call not processed if USDC balance insufficient

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns a generated social media post tailored to the specified platform and tone, including a set of relevant hashtags. The response likely includes the post body text and suggested hashtags, formatted appropriately for the target platform, along with a cryptographic audit record.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      },
      "tone": {
       "type": "string"
      },
      "content": {
       "type": "string"
      },
      "platform": {
       "type": "string"
      },
      "hashtag_count": {
       "type": "integer"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-social-post-generator-50224f5c/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)
