# StableSocial Creator Performance

> StableSocial Creator Performance 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).

Fetches creator/influencer performance analytics for a social media profile via an async job, returning a polling URL for results.

## Facts

- Endpoint: POST https://stablesocial.dev/api/lightreel/creator-performance
- 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-creator-performance-52cc60c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zB7UR7QRWM6jUEUOxbRlb

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-creator-performance-52cc60c0 -d '<json body>'
```

Example prompt: Pull the creator performance report for @charlidamelio on TikTok — I want to see her engagement rate, follower count, and overall performance metrics.

## When to prefer this

Use this endpoint when you need pay-per-use creator performance analytics without a subscription, especially for one-off influencer evaluations across TikTok, Instagram, Facebook, Reddit, or LinkedIn. Prefer this over scraping tools or subscription analytics platforms when cost-per-query matters and no persistent auth setup is desired.

## Known failure modes

- Invalid or non-existent creator handle returns error or empty result
- Unsupported platform returns validation error
- Job times out if creator data is unavailable
- Payment not received or insufficient USDC triggers 402 error
- Rate limits or platform-side blocks cause job failure
- Poll URL returns still-pending status for extended period if data source is slow

## 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 results, and a retryAfterSeconds value (e.g. 5) indicating when to poll again. The agent must follow the pollUrl to retrieve the actual creator performance data once the async job completes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "goal": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Performance question, e.g. who is working, which formats to repeat"
  },
  "creators": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 300,
    "minLength": 1
   },
   "maxItems": 20,
   "minItems": 1,
   "description": "Creator handles, account URLs, profile URLs, or brand-managed accounts"
  },
  "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"
  }
 }
}
```

## 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-creator-performance-52cc60c0/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)
