# StableSocial Bluesky Profile Lookup

> StableSocial Bluesky Profile Lookup 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 Bluesky user by handle via a pay-per-request API.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/bluesky/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-bluesky-profile-lookup-57c6af13
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6gAnaB2-WSVcafN4NVmFU

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-bluesky-profile-lookup-57c6af13 -d '<json body>'
```

Example prompt: Can you pull the public profile info for the Bluesky user @nngroup.bsky.social — I need their bio, follower count, and any other profile details available?

## When to prefer this

Choose this endpoint when you need lightweight, no-subscription, pay-per-call access to Bluesky profile data without managing OAuth tokens or API keys. It is ideal for one-off lookups, agent pipelines that occasionally need social profile enrichment, or workflows that already use StableSocial for other platforms (TikTok, Instagram, etc.) and want consistent multi-platform coverage under a single API style.

## Known failure modes

- Handle not found — returns error if the Bluesky handle does not exist or is misspelled
- Private or suspended account — may return empty or partial data for restricted accounts
- Payment failure — x402 payment not processed, request rejected
- Rate limiting — too many rapid requests may be throttled
- Malformed handle input — missing or invalid handle string causes validation 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 public Bluesky profile data for the specified handle, including display name, biography, follower and following counts, post count, avatar URL, and other publicly available profile metadata.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-bluesky-profile-lookup-57c6af13/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)
