# StableSocial Threads Profile

> StableSocial Threads Profile 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).

Fetches public profile information for a given Threads username via pay-per-request access

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/threads/profile
- 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-threads-profile-0689e108
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tIit29GsHBr9J-W_damAI

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-threads-profile-0689e108 -d '<json body>'
```

Example prompt: Can you pull up the public Threads profile for the handle 'zuck' — I want to see their bio, follower count, and any other profile details available?

## When to prefer this

Choose this endpoint when you need public Threads profile data on a pay-per-use basis with no API key setup, subscription, or OAuth flow. It is ideal for one-off lookups, agent workflows that query profiles infrequently, or when you want to avoid committing to a recurring social data subscription. Prefer this over building a direct Threads scraper when you need instant access without infrastructure overhead.

## Known failure modes

- Handle not found — returns error if the Threads username does not exist or is misspelled
- Private account — may return limited or no data for private Threads profiles
- Rate limiting or scraping blocks — Threads may throttle or block requests, causing failures
- Payment failure — request rejected if USDC payment is not processed correctly via x402
- Empty handle — validation error if the handle field is blank or missing

## 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 public profile data for the specified Threads account, likely including username, display name, bio/description, follower count, following count, post count, profile image URL, and verification status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "handle": {
   "type": "string",
   "minLength": 1,
   "description": "Threads username"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-threads-profile-0689e108/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)
