Bluesky API endpoint
Use Crawlora's Bluesky post thread API to extract supported public Bluesky data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/bluesky/post-threadReturns a Bluesky post along with its nested replies (and, when the post is itself a reply, its parent chain), up to `depth` levels deep. Public data, sourced from the AT Protocol's public, credential-free AppView API. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| uri | string | Yes | The post's at:// URI, e.g. from an author-feed or search-actors result's post uri field | ||
| depth | integer | No | Reply-tree depth, 1-10 | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/bluesky/post-thread" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `uri` must start with `at://`; otherwise `400` is returned before any upstream request is made. - A deleted, blocked, or otherwise inaccessible reply is silently dropped from `replies` rather than surfaced as an empty entry. - A post that no longer exists returns `404`. Example response: ```json { "code": 200, "msg": "OK", "data": { "thread": { "post": { "uri": "at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.post/3l6oveex3ii2l", "text": "Welcome to Bluesky!", "reply_count": 1, "repost_count": 9534, "like_count": 63579, "quote_count": 705 }, "replies": [ { "post": { "uri": "at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.post/3l6ovfftinx2m", "text": "A reply.", "reply_count": 0, "repost_count": 0, "like_count": 10, "quote_count": 0 }, "replies": [] } ] } } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"thread": {
"post": {
"uri": "at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.post/3l6oveex3ii2l",
"text": "Welcome to Bluesky!",
"reply_count": 1,
"repost_count": 9534,
"like_count": 63579,
"quote_count": 705
},
"replies": [
{
"post": {
"uri": "at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.post/3l6ovfftinx2m",
"text": "A reply.",
"reply_count": 0,
"repost_count": 0,
"like_count": 10,
"quote_count": 0
},
"replies": []
}
]
}
}
}Request schema
No body schema
Response schema
#/definitions/bluesky.postThreadResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | bluesky.PostThreadResponse | No | ||||
| data.thread | bluesky.ThreadPost | No | ||||
| data.thread.post | bluesky.Post | No | ||||
| data.thread.post.author | bluesky.Actor | No | ||||
| data.thread.post.author.avatar_url | string | No | https://cdn.bsky.app/img/avatar/plain/did:plc:z72i7hdynmk6r22z27h6tvur/bafkreihwihm6kpd6zuwhhlro75p5qks5qtrcu55jp3gddbfjsieiv7wuka | |||
| data.thread.post.author.created_at | string | No | 2023-04-12T04:53:57.057Z | |||
| data.thread.post.author.description | string | No | official Bluesky account | |||
| data.thread.post.author.did | string | No | did:plc:z72i7hdynmk6r22z27h6tvur | |||
| data.thread.post.author.display_name | string | No | Bluesky | |||
| data.thread.post.author.handle | string | No | bsky.app | |||
| data.thread.post.cid | string | No | bafyreicnt42y6vo6pfpvyro234ac4o6ijug6adwwrh7awflgrqlt4zibxq | |||
| data.thread.post.created_at | string | No | 2024-10-17T07:06:51.491Z | |||
| data.thread.post.external | bluesky.PostEmbedExternal | No | ||||
| data.thread.post.external.description | string | No | A short description of the linked page. | |||
| data.thread.post.external.thumb_url | string | No | https://cdn.bsky.app/img/feed_thumbnail/plain/... | |||
| data.thread.post.external.title | string | No | An Article Title | |||
| data.thread.post.external.url | string | No | https://example.com/article | |||
| data.thread.post.images | array | No | ||||
| data.thread.post.images[].alt | string | No | a photo of a gnome | |||
| data.thread.post.images[].fullsize_url | string | No | https://cdn.bsky.app/img/feed_fullsize/plain/... | |||
| data.thread.post.images[].thumb_url | string | No | https://cdn.bsky.app/img/feed_thumbnail/plain/... | |||
| data.thread.post.indexed_at | string | No | 2024-10-17T07:06:51.491Z | |||
| data.thread.post.langs | array | No | en | |||
| data.thread.post.like_count | integer | No | 63579 | |||
| data.thread.post.quote_count | integer | No | 705 | |||
| data.thread.post.quoted_post_uri | string | No | at://did:plc:.../app.bsky.feed.post/... | |||
| data.thread.post.reply_count | integer | No | 8545 | |||
| data.thread.post.repost_count | integer | No | 9534 | |||
| data.thread.post.text | string | No | Welcome to Bluesky! | |||
| data.thread.post.uri | string | No | at://did:plc:z72i7hdynmk6r22z27h6tvur/app.bsky.feed.post/3l6oveex3ii2l | |||
| data.thread.post.url | string | No | https://bsky.app/profile/bsky.app/post/3l6oveex3ii2l | |||
| data.thread.replies | array | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/bluesky/post-thread" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms