# StableSocial LightReel Chat

> StableSocial LightReel Chat is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15, last successful call 2026-07-11).

Initiates a pay-per-request social media data retrieval job across TikTok, Instagram, Facebook, Reddit, and LinkedIn, returning a job ID and poll URL for async results

## Facts

- Endpoint: POST https://stablesocial.dev/api/lightreel/chat
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-11
- Success rate: 75% of calls made through Zero
- Rating: 4.7 / 5 from 1 review
- Activations on Zero: 4
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-lightreel-chat-f6b07f99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qt5HaZchm9iWzGra9EQIC

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-chat-f6b07f99 -d '<json body>'
```

Example prompt: Can you pull social media data for me from TikTok or Instagram — I don't want to deal with API keys or subscriptions, just kick off the request and give me the job ID so I can check back for results.

## When to prefer this

Choose this endpoint when you need on-demand social media data from TikTok, Instagram, Facebook, Reddit, or LinkedIn without setting up OAuth credentials or subscriptions. It is ideal for one-off or infrequent queries where pay-per-use ($0.06 USDC) is preferable to subscription costs. Use it when you need async job-based retrieval and can poll for results.

## Known failure modes

- Payment not included or insufficient — 402 payment required error
- Invalid or malformed request body — 400 bad request
- Unsupported platform or query type — may return error or empty result
- Job creation fails due to upstream social platform being unavailable
- Poll URL returns error if job expired or not found

## 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 (unique identifier for the async job), a status field (e.g. 'pending'), a pollUrl to check for results, and a retryAfterSeconds hint indicating when to poll again.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "question": {
   "type": "string",
   "maxLength": 10000,
   "minLength": 1,
   "description": "Question to ask the Lightreel UGC research agent"
  },
  "conversation_id": {
   "type": "string",
   "minLength": 1,
   "description": "Lightreel conversation ID returned by a prior chat response"
  },
  "response_fields": {
   "type": "object",
   "description": "Optional structured output request. Up to 5 fields, each with type string or array.",
   "propertyNames": {
    "type": "string",
    "maxLength": 64,
    "minLength": 1
   },
   "additionalProperties": {
    "type": "object",
    "required": [
     "type",
     "description"
    ],
    "properties": {
     "type": {
      "enum": [
       "string",
       "array"
      ],
      "type": "string",
      "description": "Requested output field type"
     },
     "description": {
      "type": "string",
      "maxLength": 500,
      "minLength": 1,
      "description": "Description of the requested output field"
     }
    },
    "additionalProperties": false
   }
  }
 }
}
```

## 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-chat-f6b07f99/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)
