business-review-trust-research
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.星标0
复刻0
关注0
更新时间2026-09-21 02:32:53
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.
export CRAWLORA_API_KEY=sk_your_key_here- All requests:
x-api-key: $CRAWLORA_API_KEYagainsthttps://api.crawlora.net/api/v1. Missing/invalid key →401.
How it works
- Product Hunt —
/producthunt/search(query) to find a productid;/producthunt/product/{id}for detail (+/about,/makers,/launches,/reviews,/alternatives,/customers)./producthunt/leaderboardand/producthunt/category/{slug}/productscover browsing/trending. - Trustpilot —
/trustpilot/business-units/search(q) to find a businessslug;/trustpilot/business/{slug}for the profile (+/reviews,/related)./trustpilot/categories//categories/searchbrowse by industry. - TrustMRR —
/trustmrr/startupsto browse, or/trustmrr/startup/{slug}for one company's payment-provider-verified revenue profile (see also thecrawlora-datasetsskill'strustmrrdataset for bulk/aggregate queries)./trustmrr/leaderboardranks by MRR;/trustmrr/categoriesbrowses by category. - Capterra —
/capterra/search(q) to find aproduct_id, then/capterra/productfor detail and/capterra/product/reviewsfor user reviews. - BBB (Better Business Bureau) —
/bbb/search(q) to find a business profile URL, then/bbb/businessfor the profile (rating, accreditation) plus/bbb/business/reviews,/bbb/business/complaints, and/bbb/business/more-infofor rating reasons and service area./bbb/categorybrowses by industry;/bbb/scamtracker/searchand/bbb/scamtracker/{id}cover consumer-reported scam listings, with/bbb/scamtracker/state-statsfor state/province aggregates. - Kickstarter —
/kickstarter/discover(termfree-text and/orcategory_id, plusstate/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/updatesand/kickstarter/comments(samecreator+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 q="acme plumbing" | jq '.'
# Kickstarter:
scripts/crawlora.sh /kickstarter/discover term="board game" | jq '.'
scripts/crawlora.sh /kickstarter/project creator=<creator-slug> slug=<project-slug> | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/producthunt/leaderboard" | jq '.'
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+/makersto see how a product performed and who built it. - Bootstrapped-revenue research:
/trustmrr/startup/{slug}for one company's verified MRR trend, or/trustmrr/leaderboardfor the top earners in a category. - Local-business trust check:
/bbb/search+/bbb/business(rating, accreditation) +/bbb/business/complaintsbefore hiring a contractor or vendor; cross-check/bbb/scamtracker/searchfor 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_KEYonly — never hardcode, query-param, or commit it. - Trustpilot's
slugis usually the business's domain (e.g.acmecorp.com), not a display name — resolve via/trustpilot/business-units/searchif unsure. - Kickstarter's
creator+slugare the two path segments of a project URL (kickstarter.com/projects/{creator}/{slug}) — copy them directly from a campaign link or a/kickstarter/discoverresult rather than guessing. - Reviews/lists are paginated — pass
pageto walk beyond the first page.
相关 Skills
继续浏览同一来源仓库中的其他 Skills。