# StableSocial Competitor Strategy Analyzer

> StableSocial Competitor Strategy Analyzer 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).

Analyzes competitor social media strategy across TikTok, Instagram, Facebook, Reddit, and LinkedIn via a pay-per-request async job

## Facts

- Endpoint: POST https://stablesocial.dev/api/lightreel/competitor-strategy
- 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-competitor-strategy-analyzer-2ffbb47d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WAv_5wU9xz9A1e4SoVenc

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-competitor-strategy-analyzer-2ffbb47d -d '<json body>'
```

Example prompt: Can you pull a competitor strategy analysis for Nike on TikTok and Instagram using StableSocial? I want to see what kind of content they're posting and how their engagement looks.

## When to prefer this

Use this endpoint when you need competitive social media intelligence without setting up OAuth or subscriptions — ideal for one-off or sporadic competitive research tasks across TikTok, Instagram, Facebook, Reddit, or LinkedIn on a pay-per-call basis.

## Known failure modes

- Payment not received or insufficient USDC — request rejected with payment error
- Invalid or unsupported competitor handle — job fails with not-found error
- Platform not supported or rate-limited — job returns error status on poll
- Poll URL returns job still pending after extended wait — may require longer retry window
- Network timeout on initial POST — no jobId returned, request must be retried

## 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 ('pending'), a pollUrl to check for results, and a retryAfterSeconds hint. Once complete, the job result will contain competitor social media strategy data such as content themes, posting patterns, and engagement metrics.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "goal": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Marketing goal, e.g. app installs, creator sourcing, lower CAC, more views"
  },
  "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"
  },
  "competitors": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 300,
    "minLength": 1
   },
   "default": [],
   "maxItems": 10,
   "description": "Competitor account handles, URLs, brands, or products to compare"
  },
  "conversation_id": {
   "type": "string",
   "minLength": 1,
   "description": "Lightreel conversation ID returned by a prior chat response"
  },
  "brand_or_product": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Brand, product, account, category, or campaign to strategize for"
  }
 }
}
```

## 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-competitor-strategy-analyzer-2ffbb47d/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)
