# Bluesky (/docs/bluesky)



Bluesky [#bluesky]

Extract Bluesky profiles, user posts, and individual post details from the AT Protocol social network.

Base URL: `/v1/bluesky/...`

Getting Started [#getting-started]

1\. Fetch a profile [#1-fetch-a-profile]

```bash
curl "https://www.socialcrawl.dev/v1/bluesky/profile?handle=espn.com" \
  -H "x-api-key: sc_your_api_key_here"
```

2\. Fetch their content [#2-fetch-their-content]

```bash
curl "https://www.socialcrawl.dev/v1/bluesky/user/posts" \
  -H "x-api-key: sc_your_api_key_here"
```

3\. Read computed fields [#3-read-computed-fields]

Every response includes computed fields: `engagement_rate`, `language`, `content_category`, and `estimated_reach`. See [Computed fields](/docs/computed-fields) for formulas, clamping rules, and null semantics.

Endpoints [#endpoints]

<PlatformEndpoints platform="bluesky" />

Notes [#notes]

* All endpoints use `GET` method with query parameters
* Authentication via `x-api-key` header
* Responses follow the unified SocialCrawl schema
