Endpoint Playground
Test Crawlora's Bluesky batch posts 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/posts?uris=<uris>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uris | array | Yes | One or more at:// post URIs (1-25); repeat the parameter for multiple URIs |
{
"code": 200,
"msg": "OK",
"data": {
"posts": [
{
"uri": "at://did:plc:a/app.bsky.feed.post/one",
"cid": "bafycid",
"url": "https://bsky.app/profile/alice.test/post/one",
"author": {
"did": "did:plc:a",
"handle": "alice.test"
},
"text": "Hello"
}
]
}
}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 public Bluesky posts for 1-25 at:// post URIs. Missing, deleted, or blocked posts are omitted when the public AppView omits them.
{
"code": 200,
"msg": "OK",
"data": {
"posts": [
{
"uri": "at://did:plc:a/app.bsky.feed.post/one",
"cid": "bafycid",
"url": "https://bsky.app/profile/alice.test/post/one",
"author": {
"did": "did:plc:a",
"handle": "alice.test"
},
"text": "Hello"
}
]
}
}curl "https://api.crawlora.net/api/v1/bluesky/posts?uris=<uris>" \
-H "x-api-key: $CRAWLORA_API_KEY"