# StableSocial Account Feedback

> StableSocial Account 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-16).

Fetches social media account feedback/reputation data for a given account via an async job, returning a job ID and poll URL for result retrieval.

## Facts

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

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-account-feedback-54d7919a -d '<json body>'
```

Example prompt: Pull the account feedback report for the TikTok account @charlidamelio using StableSocial — I want to see how the community responds to their profile.

## When to prefer this

Choose this endpoint when you need account-level social media feedback or reputation data from TikTok, Instagram, Facebook, Reddit, or LinkedIn without committing to a subscription — ideal for one-off lookups, agent workflows, or pay-per-use automation pipelines. Prefer it over scraping solutions when you need structured async results with a predictable polling pattern.

## Known failure modes

- Invalid or nonexistent account identifier returns an error or empty job
- Unsupported platform name results in a 400 or rejection
- Payment failure (insufficient USDC) causes the request to be rejected before job creation
- Poll URL returns pending indefinitely if the source platform is rate-limited or unavailable
- Network timeout if the async job takes too long to initialize

## 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), status ('pending'), a pollUrl to check for the completed result, and retryAfterSeconds indicating how long to wait before polling again. The actual account feedback data is retrieved by polling the pollUrl.

## Example request

```json
{
 "query": "@charlidamelio",
 "accounts": [
  "charlidamelio"
 ],
 "platform": "tiktok",
 "timeframe": "this week",
 "max_videos": 10,
 "include_analysis": true
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "goal": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Desired outcome, e.g. improve hooks, drive app installs, find growth gaps"
  },
  "accounts": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 300,
    "minLength": 1
   },
   "maxItems": 10,
   "minItems": 1,
   "description": "Handles, account URLs, or creator profile URLs to audit"
  },
  "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-account-feedback-54d7919a/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)
