# StableSocial LightReel Video Feedback

> StableSocial LightReel Video Feedback is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Submits a social media video for AI-generated feedback and returns a job ID for polling the async result

## Facts

- Endpoint: POST https://stablesocial.dev/api/lightreel/video-feedback
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-lightreel-video-feedback-f37db783
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6sIkqLuoiZ70Rs6nkjB8D

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-video-feedback-f37db783 -d '<json body>'
```

Example prompt: Can you run feedback analysis on this TikTok video — https://www.tiktok.com/@someuser/video/1234567890 — and tell me what the AI thinks of it?

## When to prefer this

Use this endpoint when you need AI-generated qualitative feedback on a specific social media video (TikTok, Instagram, etc.) without managing subscriptions or API keys. Prefer it over platform-native analytics APIs when you want pay-per-request pricing and don't need real-time response — results are delivered asynchronously via polling.

## Known failure modes

- Invalid or inaccessible video URL returns an error or stalled job
- Unsupported platform results in a processing failure
- Job polling URL expires or returns 404 if job ID is invalid
- Payment failure (insufficient USDC or x402 protocol error) blocks the request
- Rate limiting or server errors return 5xx responses

## 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, a status of 'pending', a pollUrl to check for the completed feedback, and a retryAfterSeconds value (typically 5) indicating when to poll again. The actual video feedback is retrieved asynchronously via the pollUrl.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "goal": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Desired improvement, e.g. stronger hook, higher retention, better conversion"
  },
  "content": {
   "type": "string",
   "maxLength": 5000,
   "minLength": 1,
   "description": "Video URL, script, transcript, storyboard, or draft content to critique"
  },
  "platform": {
   "enum": [
    "any",
    "tiktok",
    "instagram",
    "twitter",
    "x",
    "youtube",
    "facebook",
    "reddit"
   ],
   "type": "string",
   "default": "any",
   "description": "Social platform to focus on"
  },
  "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-video-feedback-f37db783/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)
