Endpoint Playground
Test Crawlora's TrustMRR Dataset History 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/history/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Startup slug, max 128 characters | |
| from | string | No | Inclusive start date, YYYY-MM-DD (UTC) | |
| to | string | No | Inclusive end date, YYYY-MM-DD (UTC) | |
| limit | integer | No | Maximum points returned (the most recent within the range), default 365, max 1000 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "trustmrr",
"slug": "gumroad",
"count": 2,
"points": [
{
"slug": "gumroad",
"date": "2026-07-13",
"mrr": 0,
"total_revenue": 878595860.52,
"revenue_30d": 7143937.99,
"on_sale": false,
"offer_count": 0
},
{
"slug": "gumroad",
"date": "2026-07-14",
"mrr": 0,
"total_revenue": 878731204.1,
"revenue_30d": 7151002.44,
"on_sale": false,
"offer_count": 0
}
]
}
}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 startup's daily time-series of payment-provider-verified metrics — MRR, all-time revenue, last-30-days revenue, 30-day and 12-month traffic, 30-day growth, for-sale flag, asking price, valuation multiple, deal score and offer count — one point per day in chronological order (oldest first). The series accrues one point per calendar day, so a recently discovered startup returns a short or empty series rather than a 404. 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",
"slug": "gumroad",
"count": 2,
"points": [
{
"slug": "gumroad",
"date": "2026-07-13",
"mrr": 0,
"total_revenue": 878595860.52,
"revenue_30d": 7143937.99,
"on_sale": false,
"offer_count": 0
},
{
"slug": "gumroad",
"date": "2026-07-14",
"mrr": 0,
"total_revenue": 878731204.1,
"revenue_30d": 7151002.44,
"on_sale": false,
"offer_count": 0
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/trustmrr/history/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"