# StableSocial Lightreel Trends

> StableSocial Lightreel Trends 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).

Fetches trending content data across social platforms (TikTok, Instagram, Facebook, Reddit, LinkedIn) via an async job-based API with pay-per-request pricing

## Facts

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

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-trends-4c6649f1 -d '<json body>'
```

Example prompt: Pull the current trending content from TikTok and Instagram right now — I want to see what's going viral across both platforms today.

## When to prefer this

Choose this endpoint when you need trending social content data from major platforms (TikTok, Instagram, Facebook, Reddit, LinkedIn) without committing to a subscription. Ideal for one-off trend lookups, ad-hoc research, or agent workflows where you pay only per call. Best when you can tolerate async/batch latency and want to poll for results rather than receive them synchronously.

## Known failure modes

- Payment not sent or insufficient USDC — request rejected before job is created
- Invalid or unsupported platform parameter — API returns validation error
- Job times out or fails asynchronously — poll URL returns failed status
- Rate limiting or server overload — job creation returns 429 or 503
- Poll URL returns stale pending status indefinitely if job queue is backed up

## 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 an async job object with a jobId, status (initially 'pending'), a pollUrl to check for results, and a retryAfterSeconds hint indicating when to poll back for the completed trend data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "topic": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Trend category, niche, audience, sound, content format, or market"
  },
  "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_trends": {
   "type": "integer",
   "default": 10,
   "maximum": 25,
   "minimum": 1,
   "description": "Maximum number of trends 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-trends-4c6649f1/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)
