Endpoint Playground
Test Crawlora's Facet the X users dataset API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/x-users/facets?facet=is_blue_verified&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | is_blue_verified | Facet enum: is_blue_verified, has_bio, has_external_url, source_tier |
| q | string | No | Full-text query over username, name, bio and location, max 256 characters | |
| username | string | No | Exact username filter (case-insensitive), max 128 characters | |
| source_tier | string | No | Exact filter for which seed tier discovered this account | |
| is_blue_verified | boolean | No | Filter by the X blue-check verification flag | |
| has_bio | boolean | No | Filter by a non-empty profile bio | |
| has_external_url | boolean | No | Filter by a linked external URL | |
| min_followers | integer | No | Minimum follower count | |
| max_followers | integer | No | Maximum follower count | |
| min_ratio | number | No | Minimum follower-to-following ratio | |
| max_ratio | number | No | Maximum follower-to-following ratio | |
| created_after | string | No | Accounts created on or after this date (RFC3339 or YYYY-MM-DD) | |
| created_before | string | No | Accounts created on or before this date (RFC3339 or YYYY-MM-DD) | |
| crawled_after | string | No | Records last refreshed on or after this date (RFC3339 or YYYY-MM-DD) | |
| crawled_before | string | No | Records last refreshed on or before this date (RFC3339 or YYYY-MM-DD) | |
| sort | string | No | relevance | Sort enum: relevance, followers_desc, followers_asc, crawled_at_desc, crawled_at_asc, created_at_desc, created_at_asc |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "x-users",
"facet": "source_tier",
"items": [
{
"value": "wikidata",
"count": 427709
},
{
"value": "github-users",
"count": 54790
},
{
"value": "tiktok-creators",
"count": 4466
},
{
"value": "journalists",
"count": 840
}
]
}
}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 terms aggregation counts for the X users dataset. Facet enum: `is_blue_verified`, `has_bio`, `has_external_url`, `source_tier`. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "x-users",
"facet": "source_tier",
"items": [
{
"value": "wikidata",
"count": 427709
},
{
"value": "github-users",
"count": 54790
},
{
"value": "tiktok-creators",
"count": 4466
},
{
"value": "journalists",
"count": 840
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/x-users/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"