{
  "openapi": "3.0.1",
  "info": {
    "title": "Recently Funded Companies — Rounds, Amounts & Investors",
    "description": "Companies that just raised, as a ready-to-use buying signal: round, amount, currency, valuation, investors, announcement date and source — one deduped row per company and round, with who to sell to, the buying window and what is new since your last run. Dataset-only, MCP-ready.",
    "version": "0.1",
    "x-build-id": "PeRpoGqCWtVcSBwPY"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/inovaflow~recently-funded-companies/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-inovaflow-recently-funded-companies",
        "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/inovaflow~recently-funded-companies/runs": {
      "post": {
        "operationId": "runs-sync-inovaflow-recently-funded-companies",
        "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/inovaflow~recently-funded-companies/run-sync": {
      "post": {
        "operationId": "run-sync-inovaflow-recently-funded-companies",
        "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": {
          "roundTypes": {
            "title": "Funding stages",
            "uniqueItems": true,
            "type": "array",
            "description": "Only report these stages. Empty = all stages. Seed and Series A mean a founder-led buy; Series B and later mean a department head with a real budget.",
            "items": {
              "type": "string",
              "enum": [
                "pre-seed",
                "seed",
                "angel",
                "series-a",
                "series-b",
                "series-c",
                "series-d",
                "series-e",
                "series-f",
                "series-g",
                "growth",
                "bridge",
                "debt",
                "grant"
              ],
              "enumTitles": [
                "Pre-seed",
                "Seed",
                "Angel",
                "Series A",
                "Series B",
                "Series C",
                "Series D",
                "Series E",
                "Series F",
                "Series G and later",
                "Growth / late stage",
                "Bridge / extension",
                "Venture debt",
                "Grant / non-dilutive"
              ]
            },
            "default": []
          },
          "daysBack": {
            "title": "Announced within (days)",
            "minimum": 1,
            "maximum": 365,
            "type": "integer",
            "description": "How far back to look. The reply-rate research behind funding triggers says reach out inside two weeks, so 7–14 days is the sweet spot; widen it for a one-off backfill.",
            "default": 7
          },
          "keywords": {
            "title": "Sectors or keywords",
            "maxItems": 10,
            "type": "array",
            "description": "Words that must appear in the announcement, one per line — `AI`, `fintech`, `cybersecurity`, `climate`. Leave empty for every sector. Several words are combined with OR.",
            "items": {
              "type": "string"
            }
          },
          "locations": {
            "title": "Countries or regions",
            "maxItems": 10,
            "type": "array",
            "description": "Narrow to announcements that mention these places, one per line — `Germany`, `United Kingdom`, `New York`, `Southeast Asia`. Leave empty for worldwide coverage.",
            "items": {
              "type": "string"
            }
          },
          "minAmountUsd": {
            "title": "Minimum round size (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Drop rounds smaller than this. Amounts in other currencies are converted at an indicative rate so the filter works worldwide. Rounds with an undisclosed amount are dropped when a minimum is set."
          },
          "maxAmountUsd": {
            "title": "Maximum round size (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Drop rounds bigger than this — useful when mega-rounds are out of your ICP. Rounds with an undisclosed amount are kept."
          },
          "requireAmount": {
            "title": "Only rounds with a disclosed amount",
            "type": "boolean",
            "description": "Skip announcements that never name a figure (\"raises Series A funding\"). Off by default — an undisclosed round is still a trigger.",
            "default": false
          },
          "companies": {
            "title": "Company watchlist (optional)",
            "maxItems": 500,
            "type": "array",
            "description": "Report funding only for these companies — names (`Gong`) or domains (`gong.io`), one per line. Leave empty to discover every company that raised in the window.",
            "items": {
              "type": "string"
            }
          },
          "useNewsSearch": {
            "title": "Funding news search (worldwide)",
            "type": "boolean",
            "description": "Searches public funding announcements across every outlet, bounded to your date window and narrowed by the stage, sector and country filters. This is the broad source — keep it on.",
            "default": true
          },
          "useFundingFeeds": {
            "title": "Curated funding feeds",
            "type": "boolean",
            "description": "Adds a set of publications that cover funding continuously. Narrower than the search, but it comes with the article URL and the paragraph that names the investor syndicate.",
            "default": true
          },
          "enrichFromArticles": {
            "title": "Read the announcement for investors, domain and HQ",
            "type": "boolean",
            "description": "Opens the best announcement per company to add the investor syndicate, the company's own domain and website, its HQ city, sector and a one-line description. Adds a few seconds and costs nothing extra. Turn off for the fastest possible run.",
            "default": true
          },
          "onlyNewSinceLastRun": {
            "title": "Only rounds that are new since my last run",
            "type": "boolean",
            "description": "Deliver only company+round rows this watch had not reported before. Ideal for a schedule: every run returns just the new raises. The first run of a watch always returns everything as the baseline.",
            "default": false
          },
          "maxCompanies": {
            "title": "Maximum companies to report",
            "minimum": 1,
            "maximum": 2000,
            "type": "integer",
            "description": "Cap on delivered rows (highest signal score first). Also caps what you pay.",
            "default": 200
          },
          "watchId": {
            "title": "Watch ID (for the new-since-last-run delta)",
            "type": "string",
            "description": "Optional name for this watch, e.g. `fintech-series-b`. Runs sharing a Watch ID share the memory of what was already reported. Leave empty to derive it from the filters."
          },
          "maxQueries": {
            "title": "News queries per run",
            "minimum": 1,
            "maximum": 40,
            "type": "integer",
            "description": "How many funding-news queries to send. Each returns up to 100 headlines. More queries = wider coverage of small outlets and non-English markets.",
            "default": 12
          },
          "maxEnrichments": {
            "title": "Announcements to open",
            "minimum": 0,
            "maximum": 500,
            "type": "integer",
            "description": "How many of the top companies get their announcement opened for investors, domain and HQ. Set to 0 to skip enrichment entirely.",
            "default": 60
          },
          "maxConcurrency": {
            "title": "Parallel requests",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Concurrent requests to news sources and article pages. Lower it if a publisher starts rate-limiting.",
            "default": 6
          },
          "newsLanguage": {
            "title": "News language",
            "type": "string",
            "description": "Language edition of the news search, e.g. `en-US`, `de-DE`, `fr-FR`. Changes which outlets are covered.",
            "default": "en-US"
          },
          "newsCountry": {
            "title": "News country edition",
            "type": "string",
            "description": "Two-letter country edition of the news search, e.g. `US`, `GB`, `DE`, `IN`. Pair it with the matching language for strong local coverage.",
            "default": "US"
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Optional. Everything here is a public page, so no proxy is needed — the Actor already falls back to Apify Proxy if a publisher rate-limits the run. Set one only if you want every request to go through a specific proxy.",
            "default": {
              "useApifyProxy": false
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}