Endpoint Playground
Test Crawlora's Get TrustMRR category detail 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/trustmrr/category/saas" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | saas | TrustMRR category slug |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "saas",
"url": "https://trustmrr.com/category/saas",
"count": 30,
"startups": [
{
"name": "Hidden Business",
"slug": "hidden-business-3",
"url": "https://trustmrr.com/startup/hidden-business-3",
"description": "SaaS Platform.",
"current_mrr": 0,
"current_total_revenue": 5678937.4,
"current_last_30_days_revenue": 0,
"on_sale": false,
"is_merchant_of_record": false
}
]
}
}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 a single TrustMRR category page and the startups listed under it, with verified revenue and MRR figures.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "saas",
"url": "https://trustmrr.com/category/saas",
"count": 30,
"startups": [
{
"name": "Hidden Business",
"slug": "hidden-business-3",
"url": "https://trustmrr.com/startup/hidden-business-3",
"description": "SaaS Platform.",
"current_mrr": 0,
"current_total_revenue": 5678937.4,
"current_last_30_days_revenue": 0,
"on_sale": false,
"is_merchant_of_record": false
}
]
}
}curl "https://api.crawlora.net/api/v1/trustmrr/category/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"