# 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.054001/call, status unknown (last checked 2026-09-14).

Generates platform-optimized social media posts with hashtags and thread versions for Twitter, LinkedIn, and Instagram from provided content.

## Facts

- Endpoint: GET https://api.strale.io/x402/social-post-generate
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-763e89b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i6P7R5qIew8_QNicTwW1M

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 api-strale-io-763e89b4
```

Example prompt: Generate a LinkedIn post with a professional tone from this content: 'We just launched our new AI-powered analytics dashboard that helps teams track KPIs in real time.' Include 5 hashtags.

## When to prefer this

Use this endpoint when you need to quickly adapt existing content or ideas into ready-to-publish social media posts across Twitter, LinkedIn, or Instagram, especially when you need hashtags and Twitter thread formatting included automatically.

## Known failure modes

- Missing required content parameter returns validation error
- Invalid platform value returns error
- Empty or very short content may produce low-quality output
- Rate limiting or payment failure returns 402 or 429 status

## How this service works

Generate platform-optimized social media posts. Supports Twitter, LinkedIn, Instagram. Returns post text, hashtags, thread version for Twitter.

## Output

Returns a platform-optimized post text body, a list of relevant hashtags, and for Twitter also returns a thread-formatted version of the content split across multiple tweets.

## Example request

```json
{
 "tone": "professional",
 "content": "We just launched our new AI-powered analytics dashboard that helps teams track KPIs in real time.",
 "platform": "linkedin",
 "hashtag_count": 5
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "tone": {
   "type": "string"
  },
  "content": {
   "type": "string"
  },
  "platform": {
   "type": "string"
  },
  "hashtag_count": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "hashtags": {
  "type": "array"
 },
 "post_text": {
  "type": "string"
 },
 "thread_version": {
  "type": "array"
 },
 "character_count": {
  "type": "integer"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-763e89b4/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)
