# StableSocial Content Calendar Generator

> StableSocial Content Calendar Generator is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Generates a content calendar for social media platforms (TikTok, Instagram, Facebook, Reddit, LinkedIn) via an async job returned as a pollable job ID

## Facts

- Endpoint: POST https://stablesocial.dev/api/lightreel/content-calendar
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-content-calendar-generator-e9d52ba3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N7eieLb6KeIH_nIFJN32J

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 stablesocial-content-calendar-generator-e9d52ba3 -d '<json body>'
```

Example prompt: Can you generate a content calendar for my fitness brand across TikTok, Instagram, and LinkedIn for the next 4 weeks, focusing on workout tips and product launches?

## When to prefer this

Choose this endpoint when you need to programmatically generate multi-platform social media content calendars without managing subscriptions or authentication. Ideal for agents automating content strategy workflows across TikTok, Instagram, Facebook, Reddit, and LinkedIn on a pay-per-use basis. The async job model suits longer-running calendar generation tasks.

## Known failure modes

- Payment not included or invalid — x402 payment required at $0.06 USDC per call
- Invalid platform specified — must be one of TikTok, Instagram, Facebook, Reddit, LinkedIn
- Job times out or fails — poll URL returns error status
- Rate limiting or server overload causing delayed job completion
- Missing required body parameters resulting in 400 error

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a JSON object with a jobId, initial status of 'pending', a pollUrl to check job progress, and a retryAfterSeconds hint (typically 5) indicating when to poll for the completed content calendar.

## Example request

```json
{
 "query": "artificial intelligence trends",
 "platform": "any",
 "timeframe": "this week",
 "max_videos": 10,
 "include_analysis": true,
 "brand_or_campaign": "tech content creator"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "goal": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Calendar goal, e.g. test hooks, ship UGC ads, grow organic account"
  },
  "platform": {
   "enum": [
    "any",
    "tiktok",
    "instagram",
    "twitter",
    "x",
    "youtube",
    "facebook",
    "reddit"
   ],
   "type": "string",
   "default": "any",
   "description": "Social platform to focus on"
  },
  "timeframe": {
   "type": "string",
   "default": "next 30 days",
   "maxLength": 120,
   "minLength": 1,
   "description": "Time window to focus on, e.g. this week, last 30 days"
  },
  "conversation_id": {
   "type": "string",
   "minLength": 1,
   "description": "Lightreel conversation ID returned by a prior chat response"
  },
  "brand_or_campaign": {
   "type": "string",
   "maxLength": 1000,
   "minLength": 1,
   "description": "Brand, account, product, campaign, niche, or creator strategy brief"
  },
  "posting_frequency": {
   "type": "string",
   "default": "3-5 posts per week",
   "maxLength": 120,
   "minLength": 1,
   "description": "Desired publishing cadence"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "jobId": "clx0000000000000000000000",
  "status": "pending",
  "pollUrl": "https://stablesocial.dev/api/jobs/clx0000000000000000000000",
  "retryAfterSeconds": 5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-content-calendar-generator-e9d52ba3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
