Proofio is an Enterprise Review Intelligence Platform that aggregates customer reviews from every major platform — App Store, Google Play, Trustpilot, Google Maps, G2, Yelp, Facebook, and more — into a single dashboard powered by AI.
Instead of manually checking eight different review platforms every week, Proofio brings everything together, analyzes it automatically, and surfaces the insights that actually matter: which features users love, what's driving rating drops, and where to focus your next sprint.
| Repo | Description |
|---|---|
proofio-integrations |
Official examples, SDKs, and integration guides |
proofio-sdk |
TypeScript/JavaScript SDK (npm install proofio-sdk) |
Review aggregation Connect App Store, Google Play, Trustpilot, Google Maps, G2, Yelp, Facebook, or import CSV files. Proofio ingests reviews automatically on a schedule.
AI-powered insights Every review is analyzed for sentiment, emotion, topic, and language. Proofio clusters related reviews into themes (e.g. "Battery Life", "Onboarding", "Customer Support") and surfaces AI-generated summaries.
Trend detection & alerts Proofio monitors your ratings over time and fires alerts when anomalies are detected — unusual sentiment spikes, sudden rating drops, or keyword surges.
Automated reports Weekly and monthly PDF reports are generated automatically and emailed to your team every Monday morning.
Developer API & SDK Every project exposes a public REST API and a TypeScript SDK. Use it to embed reviews on your website, feed data into your own dashboards, or build custom integrations.
Embeddable widgets Drop a reviews grid, carousel, testimonials block, or rating badge onto any website — HTML, React, Next.js, WordPress, Shopify, Webflow, and Wix all supported.
npm install proofio-sdkimport { ProofioClient } from "proofio-sdk";
const proofio = new ProofioClient({ apiKey: "YOUR_API_KEY" });
// Latest 10 positive reviews
const reviews = await proofio.reviews.list({ limit: 10, sentiment: "positive" });
// Aggregated stats
const stats = await proofio.aggregations.get();
console.log(`${stats.averageRating}★ across ${stats.totalReviews} reviews`);
// AI topic clusters
const clusters = await proofio.clusters.list();Get your API key at app.proofio.app → Project → Settings → API.
Base URL: https://api.proofio.app/api/v1/public
| Endpoint | Description |
|---|---|
GET /reviews |
Paginated reviews with filters (sentiment, rating, language, source) |
GET /aggregations |
Total reviews, average rating, sentiment & rating distributions |
GET /clusters |
AI-generated topic clusters with keywords and sentiment scores |
Authentication: x-api-key header
Rate limits: 300 – 100,000 requests/month depending on plan
curl https://api.proofio.app/api/v1/public/reviews \
-H "x-api-key: YOUR_API_KEY"| App Store | Google Play | Trustpilot | Google Maps |
| G2 | Yelp | CSV Import |
| Plan | Price | Projects | Sources | Reviews/month | API Requests |
|---|---|---|---|---|---|
| Starter | Free | 1 | 2 | 100 | 300 |
| Growth | $39/mo | 5 | 5 per project | 5,000 | 10,000 |
| Scale | $199/mo | 15 | 15 | 25,000 | 50,000 |
Built with Next.js, TypeScript, Firebase, OpenAI, and Stripe. Deployed on Vercel.
