Business & software review research
Look up product launches, business reputation, verified startup revenue,
software reviews, and crowdfunding campaigns across six platforms as
normalized JSON from the Crawlora API — no scraping review-site pages.
When to use this skill
- "What did this product launch as on Product Hunt? Who made it?"
- "What are people saying about on Trustpilot?"
- "How much revenue does this startup actually make?" (TrustMRR — payment-provider-verified)
- "What are the reviews / alternatives for this software?" (Capterra)
- "Is this business BBB accredited? What's its rating, and any complaints or scam reports against it?" (BBB)
- "How's this Kickstarter campaign doing? What updates has the creator posted?"
- Vendor due-diligence before buying or partnering.
Setup (one-time)
- Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
- Set
CRAWLORA_API_KEY in the environment before running the helper.
- The helper reads
CRAWLORA_API_KEY from the environment and sends requests to https://api.crawlora.net/api/v1. Missing/invalid key → 401.
How it works
- Product Hunt —
/producthunt/search (query) to find a product
id; /producthunt/product/{id} for detail (+ /about, /makers,
/launches, /reviews, /alternatives, /customers).
/producthunt/leaderboard and /producthunt/category/{slug}/products
cover browsing/trending.
- Trustpilot —
/trustpilot/business-units/search (q) to find a
business slug; /trustpilot/business/{slug} for the profile (+
/reviews, /related). /trustpilot/categories / /categories/search
browse by industry.
- TrustMRR —
/trustmrr/startups to browse, or /trustmrr/startup/{slug}
for one company's payment-provider-verified revenue profile (see also
the crawlora-datasets skill's trustmrr dataset for bulk/aggregate
queries). /trustmrr/leaderboard ranks by MRR; /trustmrr/categories
browses by category.
- Capterra —
/capterra/search (q) to find a product_id, then
/capterra/product for detail and /capterra/product/reviews for user reviews.
- BBB (Better Business Bureau) —
/bbb/search (q) to find a business
profile URL, then /bbb/business for the profile (rating, accreditation)
plus /bbb/business/reviews, /bbb/business/complaints, and
/bbb/business/more-info for rating reasons and service area.
/bbb/category browses by industry; /bbb/scamtracker/search and
/bbb/scamtracker/{id} cover consumer-reported scam listings, with
/bbb/scamtracker/state-stats for state/province aggregates.
- Kickstarter —
/kickstarter/discover (term free-text and/or
category_id, plus state/sort/staff_pick_only) to browse or
search campaigns, then /kickstarter/project (creator+slug, both
the corresponding path segments of the campaign URL) for the funding
snapshot (goal, pledged, percent funded, backers, status).
/kickstarter/updates and /kickstarter/comments (same creator+slug)
cover the creator's update feed and the campaign's comment thread.
Full endpoint list, methods, and params: reference/endpoints.md.
Calling the API
# Product Hunt:
scripts/crawlora.sh /producthunt/search query="AI coding assistant" | jq '.'
# Trustpilot:
scripts/crawlora.sh /trustpilot/business-units/search q="acmecorp.com" | jq '.'
scripts/crawlora.sh /trustpilot/business/acmecorp.com/reviews | jq '.'
# TrustMRR:
scripts/crawlora.sh /trustmrr/leaderboard | jq '.'
# Capterra:
scripts/crawlora.sh /capterra/search q="project management software" | jq '.'
# BBB:
scripts/crawlora.sh /bbb/search query="plumbing" location="Austin, TX" | jq '.'
# Kickstarter:
scripts/crawlora.sh /kickstarter/discover term="board game" | jq '.'
scripts/crawlora.sh /kickstarter/project creator=<creator-slug> slug=<project-slug> | jq '.'
Use scripts/crawlora.sh for all requests; it keeps the API key out of command-line arguments.
Endpoint reference
See reference/endpoints.md for every Product
Hunt, Trustpilot, TrustMRR, Capterra, BBB, and Kickstarter endpoint this
skill uses.
Examples
- Vendor due diligence:
/trustpilot/business/{slug} (reputation) +
/capterra/product + /capterra/product/reviews (feature-level
feedback) before signing a software contract.
- Launch retrospective:
/producthunt/product/{id} + /launches +
/makers to see how a product performed and who built it.
- Bootstrapped-revenue research:
/trustmrr/startup/{slug} for one
company's verified MRR trend, or /trustmrr/leaderboard for the top
earners in a category.
- Local-business trust check:
/bbb/search + /bbb/business (rating,
accreditation) + /bbb/business/complaints before hiring a contractor
or vendor; cross-check /bbb/scamtracker/search for reported scams.
- Campaign due diligence:
/kickstarter/project (funding snapshot) +
/kickstarter/updates (has the creator been communicating?) before
backing a campaign.
Notes & limits
- Credits / pay-on-success: billed only on
2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.
- Public data only — public listing/review pages.
- Security: key lives in
CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.
- Trustpilot's
slug is usually the business's domain (e.g.
acmecorp.com), not a display name — resolve via
/trustpilot/business-units/search if unsure.
- Kickstarter's
creator+slug are the two path segments of a project
URL (kickstarter.com/projects/{creator}/{slug}) — copy them directly
from a campaign link or a /kickstarter/discover result rather than
guessing.
- Reviews/lists are paginated — pass
page to walk beyond the first page.
1---2name: business-review-trust-research3description: Researches software/SaaS products, business reputation, and crowdfunding campaigns via the Crawlora API — Product Hunt launches/makers/alternatives, Trustpilot business reviews, TrustMRR revenue-verified startups, Capterra software reviews, BBB (Better Business Bureau) business profiles/complaint history/Scam Tracker reports, and Kickstarter campaign discovery/funding/updates/comments — returning clean JSON. Use when the user wants a product's launch/review history, a company's Trustpilot or BBB reputation, a startup's verified revenue, software alternatives/reviews before buying, or a crowdfunding campaign's funding status and backer updates.4---56# Business & software review research78Look up product launches, business reputation, verified startup revenue,9software reviews, and crowdfunding campaigns across six platforms as10normalized JSON from the Crawlora API — no scraping review-site pages.1112## When to use this skill1314- "What did this product launch as on Product Hunt? Who made it?"15- "What are people saying about <company> on Trustpilot?"16- "How much revenue does this startup actually make?" (TrustMRR — payment-provider-verified)17- "What are the reviews / alternatives for this software?" (Capterra)18- "Is this business BBB accredited? What's its rating, and any complaints or scam reports against it?" (BBB)19- "How's this Kickstarter campaign doing? What updates has the creator posted?"20- Vendor due-diligence before buying or partnering.2122## Setup (one-time)2324- Get a free Crawlora API key (2,000 credits/mo, no card) at [https://crawlora.net](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills).25- Set `CRAWLORA_API_KEY` in the environment before running the helper.26- The helper reads `CRAWLORA_API_KEY` from the environment and sends requests to `https://api.crawlora.net/api/v1`. Missing/invalid key → `401`.2728## How it works29301. **Product Hunt** — `/producthunt/search` (`query`) to find a product31 `id`; `/producthunt/product/{id}` for detail (+ `/about`, `/makers`,32 `/launches`, `/reviews`, `/alternatives`, `/customers`).33 `/producthunt/leaderboard` and `/producthunt/category/{slug}/products`34 cover browsing/trending.352. **Trustpilot** — `/trustpilot/business-units/search` (`q`) to find a36 business `slug`; `/trustpilot/business/{slug}` for the profile (+37 `/reviews`, `/related`). `/trustpilot/categories` / `/categories/search`38 browse by industry.393. **TrustMRR** — `/trustmrr/startups` to browse, or `/trustmrr/startup/{slug}`40 for one company's payment-provider-verified revenue profile (see also41 the `crawlora-datasets` skill's `trustmrr` dataset for bulk/aggregate42 queries). `/trustmrr/leaderboard` ranks by MRR; `/trustmrr/categories`43 browses by category.444. **Capterra** — `/capterra/search` (`q`) to find a `product_id`, then45 `/capterra/product` for detail and `/capterra/product/reviews` for user reviews.465. **BBB (Better Business Bureau)** — `/bbb/search` (`q`) to find a business47 profile URL, then `/bbb/business` for the profile (rating, accreditation)48 plus `/bbb/business/reviews`, `/bbb/business/complaints`, and49 `/bbb/business/more-info` for rating reasons and service area.50 `/bbb/category` browses by industry; `/bbb/scamtracker/search` and51 `/bbb/scamtracker/{id}` cover consumer-reported scam listings, with52 `/bbb/scamtracker/state-stats` for state/province aggregates.536. **Kickstarter** — `/kickstarter/discover` (`term` free-text and/or54 `category_id`, plus `state`/`sort`/`staff_pick_only`) to browse or55 search campaigns, then `/kickstarter/project` (`creator`+`slug`, both56 the corresponding path segments of the campaign URL) for the funding57 snapshot (goal, pledged, percent funded, backers, status).58 `/kickstarter/updates` and `/kickstarter/comments` (same `creator`+`slug`)59 cover the creator's update feed and the campaign's comment thread.6061Full endpoint list, methods, and params: [`reference/endpoints.md`](reference/endpoints.md).6263## Calling the API6465```sh66# Product Hunt:67scripts/crawlora.sh /producthunt/search query="AI coding assistant" | jq '.'6869# Trustpilot:70scripts/crawlora.sh /trustpilot/business-units/search q="acmecorp.com" | jq '.'71scripts/crawlora.sh /trustpilot/business/acmecorp.com/reviews | jq '.'7273# TrustMRR:74scripts/crawlora.sh /trustmrr/leaderboard | jq '.'7576# Capterra:77scripts/crawlora.sh /capterra/search q="project management software" | jq '.'7879# BBB:80scripts/crawlora.sh /bbb/search query="plumbing" location="Austin, TX" | jq '.'8182# Kickstarter:83scripts/crawlora.sh /kickstarter/discover term="board game" | jq '.'84scripts/crawlora.sh /kickstarter/project creator=<creator-slug> slug=<project-slug> | jq '.'85```8687Use `scripts/crawlora.sh` for all requests; it keeps the API key out of command-line arguments.888990## Endpoint reference9192See [`reference/endpoints.md`](reference/endpoints.md) for every Product93Hunt, Trustpilot, TrustMRR, Capterra, BBB, and Kickstarter endpoint this94skill uses.9596## Examples9798- **Vendor due diligence:** `/trustpilot/business/{slug}` (reputation) +99 `/capterra/product` + `/capterra/product/reviews` (feature-level100 feedback) before signing a software contract.101- **Launch retrospective:** `/producthunt/product/{id}` + `/launches` +102 `/makers` to see how a product performed and who built it.103- **Bootstrapped-revenue research:** `/trustmrr/startup/{slug}` for one104 company's verified MRR trend, or `/trustmrr/leaderboard` for the top105 earners in a category.106- **Local-business trust check:** `/bbb/search` + `/bbb/business` (rating,107 accreditation) + `/bbb/business/complaints` before hiring a contractor108 or vendor; cross-check `/bbb/scamtracker/search` for reported scams.109- **Campaign due diligence:** `/kickstarter/project` (funding snapshot) +110 `/kickstarter/updates` (has the creator been communicating?) before111 backing a campaign.112113## Notes & limits114115- **Credits / pay-on-success:** billed only on `2xx`; free tier 2,000 credits/mo.116 Key at [https://crawlora.net](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills).117- **Public data only** — public listing/review pages.118- **Security:** key lives in `CRAWLORA_API_KEY` only — never hardcode, query-param, or commit it.119- **Trustpilot's `slug` is usually the business's domain** (e.g.120 `acmecorp.com`), not a display name — resolve via121 `/trustpilot/business-units/search` if unsure.122- **Kickstarter's `creator`+`slug` are the two path segments of a project123 URL** (`kickstarter.com/projects/{creator}/{slug}`) — copy them directly124 from a campaign link or a `/kickstarter/discover` result rather than125 guessing.126- Reviews/lists are paginated — pass `page` to walk beyond the first page.