Verified startup revenue data for the OpenCompany AI tool ecosystem. Browse startups, filter by revenue, MRR, asking price, growth, and more — all backed by real payment provider data.
| Slug | Type | Description |
|---|---|---|
trustmrr_list_startups |
read | Browse and filter startups by revenue, MRR, growth, category, and sale status. |
trustmrr_get_startup |
read | Get full details for a startup including tech stack, cofounders, and extended metrics. |
composer require opencompanyapp/ai-tool-trustmrrThe service provider is auto-discovered by Laravel.
Add your TrustMRR API key via the Integrations settings page, or configure it directly:
| Key | Description |
|---|---|
api_key |
TrustMRR API key (starts with tmrr_). Generate at TrustMRR Developer Dashboard. |
use OpenCompany\AiToolTrustMrr\TrustMrrService;
$service = app(TrustMrrService::class);
// List top startups by revenue
$startups = $service->listStartups(['sort' => 'revenue-desc', 'limit' => 10]);
// Get details for a specific startup
$startup = $service->getStartup('shipfast');| Package | Version |
|---|---|
| PHP | ^8.2 |
| opencompanyapp/integration-core | ^2.0 |
| laravel/ai | ^0.1 |
MIT