Endpoint Playground
Test Crawlora's Facet the TrustMRR 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/trustmrr/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | Facet enum: category, country, payment_provider, target_audience, business_type, tech, channels, listing_tier, status, on_sale, is_sponsored, tags | |
| q | string | No | Full-text query, max 256 characters | |
| category | string | No | Exact category filter, max 128 characters | |
| country | string | No | Exact ISO country-code filter, max 128 characters | |
| payment_provider | string | No | Payment-provider filter, max 128 characters | |
| on_sale | boolean | No | Filter for startups currently listed for sale | |
| min_mrr | number | No | Minimum verified MRR in USD |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "trustmrr",
"facet": "category",
"items": [
{
"value": "SaaS",
"count": 1840
},
{
"value": "Artificial Intelligence",
"count": 1210
}
]
}
}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 one facet of the TrustMRR dataset, scoped to the same filters as search. Facet enum: `category`, `country`, `payment_provider`, `target_audience`, `business_type`, `tech`, `channels`, `listing_tier`, `status`, `on_sale`, `is_sponsored`, `tags`. 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": "trustmrr",
"facet": "category",
"items": [
{
"value": "SaaS",
"count": 1840
},
{
"value": "Artificial Intelligence",
"count": 1210
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/trustmrr/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"