Endpoint Playground
Test Crawlora's Facet the website tech-stack 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/techstack/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | Facet enum: technology, category, cms, ecommerce, cdn, web_server, server_language, analytics, tld, render_tier, seed_source | |
| q | string | No | Substring match on the site domain, max 256 characters | |
| technology | array | No | Repeatable exact technology name the site MUST use (AND) | |
| any_of | array | No | Repeatable exact technology name; the site must use at least one (OR) | |
| not | array | No | Repeatable exact technology name the site must NOT use (excludes) | |
| category | string | No | Exact category filter, e.g. Ecommerce, CMS, Analytics | |
| cms | string | No | Exact CMS filter, e.g. WordPress, Shopify, Webflow | |
| ecommerce | string | No | Exact e-commerce platform filter, e.g. Shopify, WooCommerce, Magento | |
| cdn | string | No | Exact CDN / hosting filter, e.g. Cloudflare, Fastly, Vercel | |
| web_server | string | No | Exact web-server filter, e.g. nginx, Apache, IIS | |
| server_language | string | No | Exact server language / framework filter, e.g. PHP, ASP.NET, Ruby on Rails | |
| tld | string | No | Exact top-level-domain filter, e.g. com, org, io | |
| render_tier | string | No | Fetch-tier filter. Enum: http, browser | |
| seed_source | string | No | Source filter for where the domain was discovered, e.g. tranco | |
| has_captcha | boolean | No | true keeps only sites with a detected CAPTCHA | |
| reachable | boolean | No | true keeps only sites whose homepage was fetched | |
| min_tech_count | integer | No | Minimum number of detected technologies, 0 or greater | |
| run_id | string | No | Scan run id; defaults to the latest run |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "techstack",
"facet": "ecommerce",
"items": [
{
"value": "Shopify",
"count": 84120
},
{
"value": "WooCommerce",
"count": 61903
},
{
"value": "Magento",
"count": 12244
}
]
}
}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 website tech-stack index (dataset id enum value `techstack`), honoring the same filters as search — the technology / category market-share view. Facet enum: `technology`, `category`, `cms`, `ecommerce`, `cdn`, `web_server`, `server_language`, `analytics`, `tld`, `render_tier`, `seed_source`. 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": "techstack",
"facet": "ecommerce",
"items": [
{
"value": "Shopify",
"count": 84120
},
{
"value": "WooCommerce",
"count": 61903
},
{
"value": "Magento",
"count": 12244
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/techstack/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"