# SocialFetch Bluesky Profile Lookup

> SocialFetch Bluesky Profile Lookup 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).

Fetches the public profile of a Bluesky account by handle, returning creator/account metadata.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/bluesky/profiles/:handle
- 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-lookup-4154c98b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O3sAMrhR91nR13Eoz0tGR

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-lookup-4154c98b
```

Example prompt: Can you pull up the Bluesky profile for @jack.bsky.social — I want to see their bio, follower count, and account details?

## When to prefer this

Use this endpoint when you need structured profile metadata for a specific Bluesky account by handle. Prefer this over scraping or the Bluesky public API when you need a simple, paid, reliable lookup without authentication setup. If you need posts rather than profile info, use the sibling 'list posts' endpoint instead.

## Known failure modes

- Handle not found — account does not exist on Bluesky (404)
- Invalid handle format — handle too long or malformed (400)
- Network or upstream Bluesky API error (502/503)
- Rate limit exceeded or payment not processed (402/429)

## How this service works

Get a Bluesky profile for a creator or account.

## Output

Returns a Bluesky account profile object including the handle, display name, bio/description, follower and following counts, post count, avatar URL, and other public account metadata.

## 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 to look up, with or without a leading @."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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-lookup-4154c98b/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)
