{
  "openapi": "3.0.1",
  "info": {
    "title": "TrustMRR Startup Explorer",
    "description": "Scrape verified startup revenue data from TrustMRR with filters for category, MRR, asking price, growth rate, and more. Perfect for deal sourcing, market research, competitor tracking, and startup acquisition pipelines.",
    "version": "0.0",
    "x-build-id": "COHsxdy2ehUyEWs1K"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/mikolabs~trustmrr-startup-explorer/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-mikolabs-trustmrr-startup-explorer",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/mikolabs~trustmrr-startup-explorer/runs": {
      "post": {
        "operationId": "runs-sync-mikolabs-trustmrr-startup-explorer",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/mikolabs~trustmrr-startup-explorer/run-sync": {
      "post": {
        "operationId": "run-sync-mikolabs-trustmrr-startup-explorer",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "maxResults": {
            "title": "Max Results",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum number of startups to fetch. Min 1, max 1000.",
            "default": 5
          },
          "fetchDetails": {
            "title": "Fetch Full Details (tech stack, cofounders, follower count)",
            "type": "boolean",
            "description": "If enabled, fetches the detail endpoint for each startup — adds tech stack, cofounders, X follower count, and the full untruncated description. Uses ~2× API calls. Enable only when you need this data.",
            "default": false
          },
          "sort": {
            "title": "Sort Order",
            "enum": [
              "revenue-desc",
              "revenue-asc",
              "price-desc",
              "price-asc",
              "multiple-asc",
              "multiple-desc",
              "growth-desc",
              "growth-asc",
              "listed-desc",
              "listed-asc",
              "best-deal"
            ],
            "type": "string",
            "description": "How to sort results.",
            "default": "revenue-desc"
          },
          "onSale": {
            "title": "Sale Status",
            "enum": [
              "",
              "true",
              "false"
            ],
            "type": "string",
            "description": "Filter by whether the startup is listed for sale.",
            "default": ""
          },
          "category": {
            "title": "Category",
            "enum": [
              "",
              "ai",
              "saas",
              "developer-tools",
              "fintech",
              "marketing",
              "ecommerce",
              "productivity",
              "design-tools",
              "no-code",
              "analytics",
              "crypto-web3",
              "education",
              "health-fitness",
              "social-media",
              "content-creation",
              "sales",
              "customer-support",
              "recruiting",
              "real-estate",
              "travel",
              "legal",
              "security",
              "iot-hardware",
              "green-tech",
              "entertainment",
              "games",
              "community",
              "news-magazines",
              "utilities",
              "marketplace",
              "mobile-apps"
            ],
            "type": "string",
            "description": "Filter by startup category. Leave blank for all categories.",
            "default": ""
          },
          "xHandle": {
            "title": "Founder X (Twitter) Handle",
            "type": "string",
            "description": "Filter by a specific founder's X handle. Omit the @. Example: marc_louvion"
          },
          "minRevenueDollars": {
            "title": "Min Revenue / 30 days (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Minimum last-30-day revenue in USD. Example: 1000 = $1,000/mo."
          },
          "maxRevenueDollars": {
            "title": "Max Revenue / 30 days (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Maximum last-30-day revenue in USD."
          },
          "minMrrDollars": {
            "title": "Min MRR (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Minimum monthly recurring revenue in USD."
          },
          "maxMrrDollars": {
            "title": "Max MRR (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Maximum monthly recurring revenue in USD."
          },
          "minPriceDollars": {
            "title": "Min Asking Price (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Minimum asking price in USD. Example: 10000 = $10,000."
          },
          "maxPriceDollars": {
            "title": "Max Asking Price (USD)",
            "minimum": 0,
            "type": "number",
            "description": "Maximum asking price in USD."
          },
          "minGrowth": {
            "title": "Min 30-Day Revenue Growth",
            "minimum": 0,
            "type": "number",
            "description": "Minimum 30-day revenue growth as a decimal. Example: 0.1 = 10% growth."
          },
          "maxGrowth": {
            "title": "Max 30-Day Revenue Growth",
            "minimum": 0,
            "type": "number",
            "description": "Maximum 30-day revenue growth as a decimal."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}