# Bluesky Profile Lookup via x402.orthogonal.com

> Bluesky Profile Lookup via x402.orthogonal.com is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches a Bluesky user's public profile information by handle

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/bluesky/profile
- 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/bluesky-profile-lookup-via-x402-orthogonal-com-fadad1a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__b6ZRQGz0AxNnZpcWp_rY

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 bluesky-profile-lookup-via-x402-orthogonal-com-fadad1a3
```

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

## When to prefer this

Use this endpoint when you need structured public profile data for a specific Bluesky user by handle. Prefer this over scraping Bluesky directly since it abstracts the fetching logic and is priced per-call via x402 micropayments. Choose this over Twitter/X or Truth Social sibling endpoints when your target is specifically on Bluesky's AT Protocol network.

## Known failure modes

- Handle not found — returns empty or error if the Bluesky handle does not exist
- Invalid handle format — query fails if handle is malformed or missing the domain portion
- Private or suspended accounts may return limited or no profile data
- Rate limiting or upstream Bluesky API unavailability may cause failures

## How this service works

Bluesky

## Output

Returns the public profile data for the given Bluesky handle, including display name, bio/description, follower count, following count, post count, and avatar image URL.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "handle": {
       "type": "string",
       "description": "Bluesky handle"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bluesky-profile-lookup-via-x402-orthogonal-com-fadad1a3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
