# StableSocial Creator Search

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

Search for social media creators/accounts across TikTok, Instagram, Facebook, Reddit, and LinkedIn with pay-per-request access

## Facts

- Endpoint: POST https://stablesocial.dev/api/lightreel/creator-search
- 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-search-1e287c24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lYzrHPVCwqG1unI1jC4PY

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-search-1e287c24 -d '<json body>'
```

Example prompt: Search StableSocial for TikTok creators related to 'fitness nutrition' — I want to find accounts I could potentially partner with for a campaign.

## When to prefer this

Use this endpoint when you need to discover or search for social media creators/profiles across major platforms (TikTok, Instagram, Facebook, Reddit, LinkedIn) without a subscription. Ideal for one-off creator discovery tasks, influencer research, or building outreach lists where pay-per-use pricing is preferred over a monthly subscription API.

## Known failure modes

- Payment not included or insufficient — 402 error requiring x402 USDC payment
- Invalid or missing search query — 400 bad request
- Platform not supported — 422 validation error
- Job times out before results are ready — poll URL returns error status
- Rate limiting or server overload — 429 or 503 error

## 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 jobId, status (pending), a pollUrl to check for results, and a retryAfterSeconds value. The agent must poll the provided pollUrl after the suggested delay to retrieve the actual creator search results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "criteria": {
   "type": "string",
   "maxLength": 1000,
   "minLength": 1,
   "description": "Creator/influencer criteria, niche, audience, school, or brand fit"
  },
  "platform": {
   "enum": [
    "any",
    "tiktok",
    "instagram",
    "twitter",
    "x",
    "youtube",
    "facebook",
    "reddit"
   ],
   "type": "string",
   "default": "any",
   "description": "Social platform to focus on"
  },
  "max_creators": {
   "type": "integer",
   "default": 20,
   "maximum": 50,
   "minimum": 1,
   "description": "Maximum number of creators to return"
  },
  "conversation_id": {
   "type": "string",
   "minLength": 1,
   "description": "Lightreel conversation ID returned by a prior chat response"
  },
  "include_contact_info": {
   "type": "boolean",
   "default": true,
   "description": "Whether to include emails or public contact info when available"
  }
 }
}
```

## 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-search-1e287c24/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)
