Endpoint Playground
Test Crawlora's Bluesky search actors 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/search-actors?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search text | |
| limit | integer | No | Page size, 1-100 | |
| cursor | string | No | Pagination cursor from a previous response's cursor field |
{
"code": 200,
"msg": "OK",
"data": {
"actors": [
{
"did": "did:plc:wmho6q2uiyktkam3jsvrms3s",
"handle": "nbcnews.com",
"display_name": "NBC News",
"description": "News updates from around the globe, all day, every day."
}
],
"cursor": "2"
}
}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 Bluesky accounts matching a query against display name, handle, and profile description. Public data, sourced from the AT Protocol's public, credential-free AppView API.
{
"code": 200,
"msg": "OK",
"data": {
"actors": [
{
"did": "did:plc:wmho6q2uiyktkam3jsvrms3s",
"handle": "nbcnews.com",
"display_name": "NBC News",
"description": "News updates from around the globe, all day, every day."
}
],
"cursor": "2"
}
}curl "https://api.crawlora.net/api/v1/bluesky/search-actors?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"