# StableSocial Lightreel Script Ideas Generator

> StableSocial Lightreel Script Ideas 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 script idea suggestions for short-form video content (lightreels) based on social media data, returning a job ID for async polling

## Facts

- Endpoint: POST https://stablesocial.dev/api/lightreel/script-ideas
- 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-lightreel-script-ideas-generator-f4f9c4c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kFmSQ3nOKfT9VXwkkDSUJ

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-lightreel-script-ideas-generator-f4f9c4c2 -d '<json body>'
```

Example prompt: Can you generate some lightreel script ideas for a fitness brand on StableSocial? I want to create engaging TikTok-style short video scripts around home workout routines.

## When to prefer this

Choose this endpoint when you need AI-generated script ideas for short-form social video content (lightreels) without a subscription or API key setup. It is best suited for on-demand, pay-per-use content ideation workflows where you need async job processing and can poll for results. Prefer this over subscription-based content tools when you only need occasional script ideas and want to pay per request.

## Known failure modes

- Payment not received or insufficient USDC balance — request rejected before processing
- Invalid or missing request body parameters — 400 error returned
- Job never completes due to upstream social data unavailability
- Poll URL returns error if jobId is invalid or expired
- Rate limiting or server overload causing delayed or failed job creation
- Network timeout before job submission completes

## 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 (async job identifier), a status field (initially 'pending'), a pollUrl to check job progress, and a retryAfterSeconds value indicating how long to wait before polling for the completed script ideas.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tone": {
   "type": "string",
   "maxLength": 200,
   "minLength": 1,
   "description": "Desired tone or creator style, e.g. chaotic GRWM, founder story, comedy"
  },
  "brief": {
   "type": "string",
   "maxLength": 1500,
   "minLength": 1,
   "description": "Product, campaign, audience, or creator brief to write scripts for"
  },
  "platform": {
   "enum": [
    "any",
    "tiktok",
    "instagram",
    "twitter",
    "x",
    "youtube",
    "facebook",
    "reddit"
   ],
   "type": "string",
   "default": "any",
   "description": "Social platform to focus on"
  },
  "timeframe": {
   "type": "string",
   "default": "this week",
   "maxLength": 120,
   "minLength": 1,
   "description": "Time window to focus on, e.g. this week, last 30 days"
  },
  "max_scripts": {
   "type": "integer",
   "default": 5,
   "maximum": 20,
   "minimum": 1,
   "description": "Maximum number of scripts or script outlines to return"
  },
  "conversation_id": {
   "type": "string",
   "minLength": 1,
   "description": "Lightreel conversation ID returned by a prior chat response"
  }
 }
}
```

## 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-lightreel-script-ideas-generator-f4f9c4c2/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)
