{
  "openapi": "3.0.1",
  "info": {
    "title": "Acquire.com Startup Marketplace Scraper",
    "description": "Scrape public startup acquisition listings from Acquire.com with titles, asking price, annual revenue/profit, category, and descriptions. HTTP-only via the public sitemap + SSR listing pages; no login required.",
    "version": "1.0",
    "x-build-id": "evxSniFcg6kXo7k1E"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/crawlerbros~acquire-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-crawlerbros-acquire-scraper",
        "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/crawlerbros~acquire-scraper/runs": {
      "post": {
        "operationId": "runs-sync-crawlerbros-acquire-scraper",
        "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/crawlerbros~acquire-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-crawlerbros-acquire-scraper",
        "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": {
          "urls": {
            "title": "Direct Listing URLs (optional)",
            "type": "array",
            "description": "Direct Acquire.com listing URLs. Accepts canonical /startup/<slug> (preferred, public SSR pages) or app /startups/<id> URLs. When provided, overrides category / filter search.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "categories": {
            "title": "Categories",
            "uniqueItems": true,
            "type": "array",
            "description": "Filter listings by Acquire category. Matches the listing's `Category` field (case-insensitive). Leave empty for all categories.",
            "items": {
              "type": "string",
              "enum": [
                "SaaS",
                "Ecommerce",
                "Content",
                "Services",
                "Mobile Apps",
                "Marketplace",
                "Newsletter",
                "Digital Marketing Agency",
                "Shopify App",
                "AI",
                "Other"
              ]
            },
            "default": []
          },
          "minPrice": {
            "title": "Min Asking Price (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings with asking price >= this value."
          },
          "maxPrice": {
            "title": "Max Asking Price (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings with asking price <= this value."
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "Optional country / region substrings to match against the listing's location field (case-insensitive).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "minAnnualRecurringRevenue": {
            "title": "Min Annual Revenue (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings with annual revenue >= this value."
          },
          "maxAnnualRecurringRevenue": {
            "title": "Max Annual Revenue (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings with annual revenue <= this value."
          },
          "customers": {
            "title": "Min Customers",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings whose `Customers` count is >= this value. Parsed from the SSR summary (e.g. '1.2K' -> 1200)."
          },
          "minAge": {
            "title": "Min Business Age (years)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings where the business is at least this many years old (derived from the Founded / Date Founded field)."
          },
          "maxAge": {
            "title": "Max Business Age (years)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings where the business is at most this many years old."
          },
          "minRevenueMultiple": {
            "title": "Min Revenue Multiple",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings where askingPrice / annualRevenue >= this value."
          },
          "maxRevenueMultiple": {
            "title": "Max Revenue Multiple",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings where askingPrice / annualRevenue <= this value."
          },
          "minProfitMultiple": {
            "title": "Min Profit Multiple",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings where askingPrice / annualProfit >= this value."
          },
          "maxProfitMultiple": {
            "title": "Max Profit Multiple",
            "minimum": 0,
            "type": "integer",
            "description": "Only return listings where askingPrice / annualProfit <= this value."
          },
          "minTTMGrossRevenue": {
            "title": "Min TTM Gross Revenue (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Trailing-twelve-month gross revenue minimum. Applied against the listing's annual revenue when TTM-specific data isn't exposed on the public SSR page."
          },
          "maxTTMGrossRevenue": {
            "title": "Max TTM Gross Revenue (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Trailing-twelve-month gross revenue maximum."
          },
          "minTTMNetProfit": {
            "title": "Min TTM Net Profit (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Trailing-twelve-month net profit minimum. Applied against the listing's annual profit when TTM-specific data isn't exposed on the public SSR page."
          },
          "maxTTMNetProfit": {
            "title": "Max TTM Net Profit (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Trailing-twelve-month net profit maximum."
          },
          "minAnnualGrowthRate": {
            "title": "Min Annual Growth Rate (%)",
            "type": "integer",
            "description": "Only return listings whose annual growth rate percentage is >= this value. Parsed from the SSR `Growth Rate` / `Annual Growth` field when present."
          },
          "maxAnnualGrowthRate": {
            "title": "Max Annual Growth Rate (%)",
            "type": "integer",
            "description": "Only return listings whose annual growth rate percentage is <= this value."
          },
          "recastFinancials": {
            "title": "Recast Financials Only",
            "type": "boolean",
            "description": "When checked, only return listings whose SSR `Financials` section indicates seller-recast financials.",
            "default": false
          },
          "connectedMetrics": {
            "title": "Connected Metrics Only",
            "type": "boolean",
            "description": "When checked, only return listings whose SSR summary shows connected analytics (e.g. Google Analytics, Stripe).",
            "default": false
          },
          "underAdvisory": {
            "title": "Under Advisory Only",
            "type": "boolean",
            "description": "When checked, only return listings the SSR flags as being under Acquire advisory support.",
            "default": false
          },
          "hideUnderOffer": {
            "title": "Hide Under-Offer Listings",
            "type": "boolean",
            "description": "When checked, skip listings whose status is `Under Offer`.",
            "default": false
          },
          "verifiedBusiness": {
            "title": "Verified Only",
            "type": "boolean",
            "description": "When checked, only return listings Acquire flags as verified.",
            "default": false
          },
          "sortBy": {
            "title": "Sort Order",
            "enum": [
              "newest",
              "oldest",
              "price-low",
              "price-high"
            ],
            "type": "string",
            "description": "How listings from the public sitemap are traversed. `newest`/`oldest` use the sitemap `lastmod`; `price-low`/`price-high` sort after filtering.",
            "default": "newest"
          },
          "maxItems": {
            "title": "Max Items",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Maximum number of listings to return.",
            "default": 3
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Apify proxy. Residential US recommended for reliable SSR fetches; datacenter often works too.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "US"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}