Platform · Social
Bluesky
Profiles, posts, threads and people search, from the official AT Protocol API.
- Endpoints
- 5
- Base price
- 1 cr
- Source
- Official API
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/bluesky/profile | Profile | 1 |
| GET /v1/bluesky/posts | Post[] | 1 |
| GET /v1/bluesky/post | Post | 1 |
| GET /v1/bluesky/comments | Comment[] | 1 |
| GET /v1/bluesky/search | SearchResult[] | 1 |
Core
Profile
1 creditGet a public profile by handle.
| handle | required | Username without the @. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/bluesky/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=jay.bsky.team"Posts
1 creditList a profile's recent posts.
| handle | required | Username without the @. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/bluesky/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=jay.bsky.team"Post
1 creditGet a single post by id.
| id | required | The post id on that platform. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/bluesky/post \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Search
1 creditSearch one platform.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/bluesky/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=climate tech"Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.
Comments
1 creditList comments on a post.