Skip to content

Profile

GET /v1/bluesky/profile

Retrieves a Bluesky user's public profile including handle, displayName, avatar, description, followersCount, followsCount, postsCount, createdAt, and verification status. The associated field shows counts for lists, feed generators, and starter packs.

Authentication

All requests require the x-api-key header. Get your key at scrapecreators.com.

Query Parameters

NameTypeRequiredDescriptionExample
handlestringyesBluesky handleespn.com

Example Request

curl

bash
curl 'https://api.scrapecreators.com/v1/bluesky/profile?handle=espn.com' \
  -H 'x-api-key: $SCRAPECREATORS_API_KEY'

Node / TypeScript

js
const params = new URLSearchParams({ handle: 'espn.com' });
const res = await fetch(`https://api.scrapecreators.com/v1/bluesky/profile?${params}`, {
  headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);

Python

python
import os, requests
r = requests.get(
    'https://api.scrapecreators.com/v1/bluesky/profile',
    headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
    params={'handle': 'espn.com'},
)
r.raise_for_status()
print(r.json())

CLI

bash
scrapecreators bluesky profile --help

Example Response

json
{
  "success": true,
  "did": "did:plc:x7d6j54pm22ufehkes6jo4jf",
  "handle": "espn.com",
  "displayName": "ESPN",
  "avatar": "https://cdn.bsky.app/img/avatar/plain/did:plc:x7d6j54pm22ufehkes6jo4jf/bafkreie4oxawqqsfzvk47ysr3unsnmviedzpylxmwxnpa534to2bzas4ie@jpeg",
  "associated": {
    "lists": 0,
    "feedgens": 0,
    "starterPacks": 0,
    "labeler": false
  },
  "labels": [],
  "createdAt": "2024-11-25T21:49:49.345Z",
  "verification": {
    "verifications": [
      {
        "issuer": "did:plc:z72i7hdynmk6r22z27h6tvur",
        "uri": "at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.graph.verification/3lndppjqgb72f",
        "isValid": true,
        "createdAt": "2025-04-21T10:44:20.398Z"
      }
    ],
    "verifiedStatus": "valid",
    "trustedVerifierStatus": "none"
  },
  "description": "Serving sports fans. Anytime. Anywhere.",
  "indexedAt": "2024-12-19T20:49:48.843Z",
  "followersCount": 198477,
  "followsCount": 32,
  "postsCount": 659
}

Credits

Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.

Errors

StatusMeaningAction
200Success.Use the JSON payload.
400Invalid or missing parameter.Verify required parameters and value format.
401Missing or invalid x-api-key.Pass a valid API key in the header.
402Out of credits.Top up at scrapecreators.com or wait for plan reset.
404Resource not found or private.Confirm the handle, URL, or id and that the resource is public.
429Rate limited.Backoff and retry with exponential delay.
500Server error or upstream platform failure.Retry with backoff; report persistent errors to support.