Endpoint Playground
Test Crawlora's Facet the journalists 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/journalists/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | Facet enum: outlet, vertical, topic, contact_type | |
| q | string | No | Full-text match on the journalist's name, title, and bio, max 256 characters | |
| outlet | string | No | Exact outlet id filter | |
| vertical | string | No | Exact beat-vertical filter. Enum: tech, crypto, marketing, consumer_tech, consumer_policy, cybersecurity, health, gaming, climate, tech_independent, culture_independent | |
| topic | string | No | Exact topic filter | |
| contact_type | string | No | Contact-availability filter. Enum: email, social, none |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "journalists",
"facet": "contact_type",
"items": [
{
"value": "email",
"count": 42
},
{
"value": "social",
"count": 61
},
{
"value": "none",
"count": 8
}
]
}
}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 distribution counts over the journalists index (dataset id enum value `journalists`), honoring the same filters as search. Facet enum: `outlet`, `vertical`, `topic`, `contact_type`. 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": "journalists",
"facet": "contact_type",
"items": [
{
"value": "email",
"count": 42
},
{
"value": "social",
"count": 61
},
{
"value": "none",
"count": 8
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/journalists/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"