Datasets API endpoint
Use Crawlora's Search the TrustMRR dataset API to search or inspect stored structured datasets as JSON. This page includes request parameters, cURL examples, response schema, validation behavior, credit cost, and a Playground link for testing before integration. Dataset endpoints read indexed records and do not apply proxy routing.
/datasets/trustmrr/searchSearches public startups with payment-provider-verified revenue and MRR, stored in a search index. Filter by category, country, payment provider, target audience, tech, marketing channel, listing tier and for-sale status, and by revenue/MRR/traffic/growth/multiple/asking-price ranges. Sort enum: `relevance`, `mrr_desc`, `revenue_desc`, `revenue_30d_desc`, `traffic_desc`, `growth_desc`, `deal_score_desc`, `price_asc`, `price_desc`, `multiple_asc`, `founded_desc`. status enum: `active`, `removed`. Developers commonly use this endpoint for repeatable dataset search, filtering, facets, local business enrichment, analytics, exports, and internal tools that need structured records beyond the limited manual refinement available in the Google Maps app. Authentication uses the x-api-key header, usage is metered with the credit cost shown on this page, and the request does not trigger live scraping or proxy routing.
Request parameters are generated from the active endpoint catalog. Dataset parameters filter, page, facet, or locate stored structured records; they do not configure a live scraper or proxy path.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| q | string | No | Full-text query over name, description, seller message and business summary, max 256 characters | ||
| slug | string | No | Exact startup slug filter, max 128 characters | ||
| category | string | No | Exact category filter (e.g. SaaS, Artificial Intelligence, Mobile Apps), max 128 characters | ||
| country | string | No | Exact ISO country-code filter (e.g. US), max 128 characters | ||
| payment_provider | string | No | Payment-provider filter (e.g. stripe, revenuecat, superwall, creem), max 128 characters | ||
| target_audience | string | No | Target-audience filter (e.g. B2B, B2C), max 128 characters | ||
| business_type | string | No | Business-type filter (e.g. B2B, B2C), max 128 characters | ||
| tech | string | No | Detected tech-stack slug filter (e.g. nextjs, reactnative), max 128 characters | ||
| channel | string | No | Detected marketing-channel slug filter (e.g. meta-ads, seo), max 128 characters | ||
| listing_tier | string | No | For-sale listing-tier filter (e.g. pro), max 128 characters | ||
| status | string | No | Lifecycle enum: active, removed | ||
| on_sale | boolean | No | Filter for startups currently listed for sale | ||
| is_sponsored | boolean | No | Filter for sponsored (paid-placement) listings | ||
| min_mrr | number | No | Minimum verified MRR in USD | ||
| max_mrr | number | No | Maximum verified MRR in USD | ||
| min_revenue | number | No | Minimum verified all-time revenue in USD | ||
| min_revenue_30d | number | No | Minimum verified last-30-days revenue in USD | ||
| min_traffic | number | No | Minimum last-30-days traffic (visits) | ||
| min_growth | number | No | Minimum 30-day revenue growth percentage | ||
| max_multiple | number | No | Maximum asking-price-to-revenue multiple | ||
| min_asking_price | number | No | Minimum asking price in USD | ||
| max_asking_price | number | No | Maximum asking price in USD | ||
| min_ahrefs_dr | integer | No | Minimum Ahrefs Domain Rating | ||
| sort | string | No | Sort enum: relevance, mrr_desc, revenue_desc, revenue_30d_desc, traffic_desc, growth_desc, deal_score_desc, price_asc, price_desc, multiple_asc, founded_desc | ||
| page | integer | No | 1 | Page number, defaults to 1 | |
| page_size | integer | No | 20 and maxes at 100 | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/datasets/trustmrr/search?q=coffee&country=us&on_sale=true&is_sponsored=true&page=1" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint reads stored indexed dataset records. It does not execute a live upstream Google Maps request, browser session, or proxy-routed scraping job.
Crawlora does not silently return invalid dataset search results when filters, pagination, coordinates, or stored record lookups cannot be satisfied.
| Status | Common failure case |
|---|---|
| 400 | Invalid input, missing required parameter, invalid enum, bad coordinate pair, or result window beyond the dataset limit |
| 404 | Requested stored dataset item is not present |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal dataset query or storage error |
When possible, Crawlora returns structured error context so your integration can adjust filters, page size, location inputs, or lookup identifiers.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "trustmrr",
"items": [
{
"slug": "stan",
"name": "Stan",
"user_category": "Creator Tools",
"mrr": 3569654.22,
"total_revenue": 76627685.07,
"on_sale": false,
"status": "active"
}
],
"page": 1,
"page_size": 20,
"total": 8198,
"sort": "mrr_desc"
}
}Request schema
No body schema
Response schema
#/definitions/datasets.trustmrrSearchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | datasets.TrustmrrSearchResponse | No | ||||
| data.dataset | string | No | ||||
| data.items | array | No | ||||
| data.items[].active_subscriptions | integer | No | ||||
| data.items[].ahrefs_domain_rating | integer | No | ||||
| data.items[].asking_price | number | No | ||||
| data.items[].business_type | string | No | ||||
| data.items[].category | string | No | ||||
| data.items[].category_slug | string | No | ||||
| data.items[].channels | array | No | ||||
| data.items[].country | string | No | ||||
| data.items[].customers | integer | No | ||||
| data.items[].deal_score | number | No | ||||
| data.items[].description | string | No | ||||
| data.items[].estimated_user_count | integer | No | ||||
| data.items[].first_listed_for_sale_at | string | No | ||||
| data.items[].first_seen | string | No | ||||
| data.items[].founded_date | string | No | ||||
| data.items[].funding_status | string | No | ||||
| data.items[].growth_30d | number | No | ||||
| data.items[].growth_mrr_30d | number | No | ||||
| data.items[].has_dofollow_backlink | boolean | No | ||||
| data.items[].has_google_analytics | boolean | No | ||||
| data.items[].has_insight_overrides | boolean | No | ||||
| data.items[].has_search_console | boolean | No | ||||
| data.items[].icon | string | No | ||||
| data.items[].is_merchant_of_record | boolean | No | ||||
| data.items[].is_sponsored | boolean | No | ||||
| data.items[].last_crawled_at | string | No | ||||
| data.items[].last_seen | string | No | ||||
| data.items[].listing_tier | string | No | ||||
| data.items[].looking_for_cofounder | boolean | No | ||||
| data.items[].merchant_category_code | string | No | ||||
| data.items[].mrr | number | No | ||||
| data.items[].mrr_last_synced_at | string | No | ||||
| data.items[].multiple | number | No | ||||
| data.items[].name | string | No | ||||
| data.items[].offer_count | integer | No | ||||
| data.items[].on_sale | boolean | No | ||||
| data.items[].payment_provider | string | No | ||||
| data.items[].pricing_model | string | No | ||||
| data.items[].problem_solved | string | No | ||||
| data.items[].profit_margin_30d | number | No | ||||
| data.items[].revenue_30d | number | No | ||||
| data.items[].revenue_last_synced_at | string | No | ||||
| data.items[].revenue_per_visitor_30d | number | No | ||||
| data.items[].schema_version | integer | No | ||||
| data.items[].secondary_payment_provider | string | No | ||||
| data.items[].seller_message | string | No | ||||
| data.items[].slug | string | No | ||||
| data.items[].status | string | No | ||||
| data.items[].stealth_mode | boolean | No | ||||
| data.items[].tags | array | No | ||||
| data.items[].target_audience | string | No | ||||
| data.items[].target_persona | string | No | ||||
| data.items[].tech | array | No | ||||
| data.items[].total_revenue | number | No | ||||
| data.items[].traffic_12mo | number | No | ||||
| data.items[].traffic_24h | number | No | ||||
| data.items[].traffic_30d | number | No | ||||
| data.items[].traffic_7d | number | No | ||||
| data.items[].url | string | No | ||||
| data.items[].user_category | string | No | ||||
| data.items[].user_category_slug | string | No | ||||
| data.items[].value_proposition | string | No | ||||
| data.items[].website | string | No | ||||
| data.items[].x_follower_count | integer | No | ||||
| data.items[].x_founder_name | string | No | ||||
| data.items[].x_handle | string | No | ||||
| data.items[].x_profile_picture | string | No | ||||
| data.page | integer | No | ||||
| data.page_size | integer | No | ||||
| data.sort | string | No | ||||
| data.total | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/datasets/trustmrr/search?q=coffee&country=us&on_sale=true&is_sponsored=true&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms