# Tokenguard Bluesky Social Data

> Tokenguard Bluesky Social Data is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches recent posts, engagement metrics, and profile data for a given Bluesky actor handle

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/social/bluesky
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-bluesky-social-data-5ac7b0ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oBBHULzttijqr_nexZVF0

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 tokenguard-bluesky-social-data-5ac7b0ab -d '<json body>'
```

Example prompt: Pull the latest Bluesky posts and engagement stats for the account bsky.app — I want to see their recent post texts, like counts, repost counts, and how many followers they have.

## When to prefer this

Use this endpoint when you need social signal data specifically from Bluesky for crypto/DeFi-related accounts — particularly when monitoring community engagement, follower growth, or post activity for a token or protocol team. Prefer this over Twitter/X scrapers when the target project is active on Bluesky.

## Known failure modes

- Actor handle not found — returns empty or error if the Bluesky username does not exist
- Rate limit or upstream AT Protocol unavailability causing timeout
- Invalid handle format causing a 400-level error
- No posts available for a newly created or inactive account

## How this service works

Bluesky (AT Protocol) public data: an account's profile plus recent posts with engagement counts, or a keyword post search

## Output

Returns the Bluesky actor handle, total post count fetched, an array of recent posts each with text, likes, and reposts, and a profile object with the handle and follower count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "actor": {
   "type": "string",
   "description": "Handle or DID, e.g. bsky.app"
  },
  "limit": {
   "type": "integer",
   "description": "1-50 posts (default 15)"
  },
  "query": {
   "type": "string",
   "description": "Post search terms (alternative to actor)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "actor": "bsky.app",
  "count": 2,
  "posts": [
   {
    "text": "…",
    "likes": 42,
    "reposts": 7
   }
  ],
  "profile": {
   "handle": "bsky.app",
   "followers": 1200000
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-bluesky-social-data-5ac7b0ab/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
