# StableSocial UGC Brief

> StableSocial UGC Brief 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).

Initiates an asynchronous job to generate a UGC (user-generated content) brief by aggregating social media data across TikTok, Instagram, Facebook, Reddit, and LinkedIn

## Facts

- Endpoint: POST https://stablesocial.dev/api/lightreel/ugc-brief
- 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-ugc-brief-36d9a867
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G0HqdNYfZFbNBtmXnWhab

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-ugc-brief-36d9a867 -d '<json body>'
```

Example prompt: Put together a UGC brief for the brand 'Oatly' pulling social signals from TikTok, Instagram, and Reddit — I need it for a campaign planning session.

## When to prefer this

Use this endpoint when you need a multi-platform UGC brief without subscribing to an enterprise social listening tool. It is ideal for one-off campaign research, pay-per-use workflows, or agents that need UGC insights on demand across TikTok, Instagram, Facebook, Reddit, and LinkedIn without managing auth or recurring billing.

## Known failure modes

- Payment not included or insufficient — 402 payment required error
- Invalid or missing request body parameters — 400 bad request
- Upstream social platform rate limiting causes job failure — job status may reflect error on poll
- pollUrl returns non-200 if job ID is invalid or expired
- Service unavailable due to downstream social media API outages

## 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 containing a jobId (unique identifier for the async job), a status field set to 'pending', a pollUrl to check when the UGC brief is ready, and a retryAfterSeconds value indicating how long to wait before polling.

## Example request

```json
{
 "query": "sustainable fashion trends",
 "platform": "tiktok",
 "timeframe": "this week",
 "max_videos": 10,
 "include_analysis": true,
 "product_or_campaign": "Eco-friendly apparel brand campaign"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "goal": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Campaign goal, e.g. app installs, purchases, trial starts, awareness"
  },
  "audience": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Target customer, creator persona, or audience segment"
  },
  "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"
  },
  "conversation_id": {
   "type": "string",
   "minLength": 1,
   "description": "Lightreel conversation ID returned by a prior chat response"
  },
  "product_or_campaign": {
   "type": "string",
   "maxLength": 1000,
   "minLength": 1,
   "description": "Product, brand, campaign, offer, or landing page context"
  }
 }
}
```

## 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-ugc-brief-36d9a867/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)
