# SocialFetch Bluesky Profile Posts Lister

> SocialFetch Bluesky Profile Posts Lister is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Lists posts from a Bluesky user's profile by their handle, with pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/bluesky/profiles/:handle/posts
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-bluesky-profile-posts-lister-43f0b0f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PfYawcT5ykNA2Wj9t1Krb

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 socialfetch-bluesky-profile-posts-lister-43f0b0f6
```

Example prompt: Can you pull the recent posts from the Bluesky profile @jack.bsky.social and show me what they've been posting about lately?

## When to prefer this

Use this endpoint when you need to retrieve multiple posts from a specific Bluesky user's profile by handle. Prefer this over the single-post endpoint when you want to analyze a user's posting history, monitor their content, or aggregate their feed. It supports pagination for retrieving large volumes of posts.

## Known failure modes

- Handle not found — returns an error if the Bluesky handle does not exist
- Invalid handle format — handle exceeds 253 characters or is empty
- Invalid cursor — pagination cursor is malformed or expired
- Rate limiting — too many requests in a short period
- Network timeout — Bluesky API is slow to respond

## How this service works

List posts from a Bluesky profile by handle.

## Output

A list of posts from the specified Bluesky profile, including post content and metadata, along with a pagination cursor to fetch additional pages of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "maxLength": 253,
       "minLength": 1,
       "description": "Bluesky handle whose posts should be listed."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Pagination cursor returned by a previous response."
      },
      "userId": {
       "type": "string",
       "minLength": 1,
       "description": "Optional Bluesky user id to speed up the request."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-bluesky-profile-posts-lister-43f0b0f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
