# GoCreative Bluesky Profile Lookup

> GoCreative Bluesky Profile Lookup is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Fetches a Bluesky user's profile data via the AT Protocol, returning handle, display name, bio, follower count, and post count.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/bluesky/:var1
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-bluesky-profile-lookup-9cca0187
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dD8e5LwA7dc2NkGs3wbR3

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 gocreative-bluesky-profile-lookup-9cca0187
```

Example prompt: Can you pull up the Bluesky profile for @jack.bsky.social — I want to see their display name, bio, and how many followers they have?

## When to prefer this

Choose this endpoint when you need lightweight, real-time Bluesky profile metadata (handle, bio, follower/post counts) without setting up API keys or a Bluesky developer account. It is ideal for AI agents, monitoring bots, and enrichment pipelines that need pay-per-call access to decentralized social data on the AT Protocol without a standing subscription.

## Known failure modes

- Handle not found — returns 404 or empty result if the Bluesky username does not exist
- Invalid handle format — malformed or missing handle causes a bad request error
- AT Protocol upstream unavailable — Bluesky service outages propagate as 5xx errors
- Payment failure — insufficient USDC balance causes x402 payment required error
- Rate limiting — excessive requests may trigger throttling responses

## How this service works

Fetches a Bluesky profile via the AT Protocol — handle, display name, bio, follower and post counts. For social-intel agents, monitoring bots, and growth pipelines. SEO Keywords: bluesky profile, AT protocol, social api, follower count, decentralized social. Keyless, pay-per-call USDC on Base/Solana, no API key, no signup.

## Output

Returns structured Bluesky profile data including the user's handle, display name, bio/description text, follower count, following count, and total post count as fetched live from the AT Protocol.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-bluesky-profile-lookup-9cca0187/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
