Endpoint Playground
Test Crawlora's Bluesky post thread API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/bluesky/post-thread?uri=<uri>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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 |
{
"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": []
}
]
}
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns 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.
{
"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": []
}
]
}
}
}curl "https://api.crawlora.net/api/v1/bluesky/post-thread?uri=<uri>" \
-H "x-api-key: $CRAWLORA_API_KEY"