Endpoint Playground
Test Crawlora's Bluesky post quotes 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-quotes?uri=<uri>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | Yes | The quoted post's at:// URI | |
| limit | integer | No | Page size, 1-100 | |
| cursor | string | No | Pagination cursor |
{
"code": 200,
"msg": "OK",
"data": {
"posts": [
{
"uri": "at://did:plc:b/app.bsky.feed.post/two",
"author": {
"did": "did:plc:b",
"handle": "bob.test"
},
"text": "A quote"
}
],
"cursor": "next"
}
}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 posts that quote the specified post, with an optional cursor for pagination.
{
"code": 200,
"msg": "OK",
"data": {
"posts": [
{
"uri": "at://did:plc:b/app.bsky.feed.post/two",
"author": {
"did": "did:plc:b",
"handle": "bob.test"
},
"text": "A quote"
}
],
"cursor": "next"
}
}curl "https://api.crawlora.net/api/v1/bluesky/post-quotes?uri=<uri>" \
-H "x-api-key: $CRAWLORA_API_KEY"