Bluesky
Bluesky is available both as a typed scraper namespace and as a first-class research source.
Live route family
/v1/crawl/bluesky/profile/v1/crawl/bluesky/posts/v1/crawl/bluesky/search
Example
Read a profile
```bash
curl 'https://api.faircompany.ai/v1/crawl/bluesky/profile?handle=paulgraham.bsky.social' \
-H "Authorization: Bearer fc_live_xxx"
```
```ts
const profile = await fc.bluesky.profile({
handle: "paulgraham.bsky.social",
});
console.log(profile.handle);
console.log(profile.display_name);
```
```python
import httpx
import os
api_key = os.environ.get("FAIRCRAWL_API_KEY", "fc_live_xxx")
response = httpx.get(
"https://api.faircompany.ai/v1/crawl/bluesky/profile",
headers={"Authorization": f"Bearer {api_key}"},
params={"handle": "paulgraham.bsky.social"},
timeout=30,
)
response.raise_for_status()
print(response.json()["handle"])
```
```json
{
"tool": "faircrawl_research",
"arguments": {
"query": "paulgraham.bsky.social",
"sources": ["bluesky"],
"limit": 5
}
}
```
Notes
- the TypeScript SDK wraps
profile,posts, andsearch - use
/researchwithsources: ["bluesky"]when you want topical discovery instead of one known account