{
  "openapi": "3.0.1",
  "info": {
    "title": "Index Ventures Portfolio Scraper",
    "description": "The only structured Index Ventures portfolio feed (~386 cross-Atlantic companies).",
    "version": "0.0",
    "x-build-id": "W5ZYOFHbgYYhrwFoT"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/nexgendata~index-ventures-portfolio-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-nexgendata-index-ventures-portfolio-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/nexgendata~index-ventures-portfolio-scraper/runs": {
      "post": {
        "operationId": "runs-sync-nexgendata-index-ventures-portfolio-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/nexgendata~index-ventures-portfolio-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-nexgendata-index-ventures-portfolio-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": {
          "geographyFilter": {
            "title": "Geography",
            "enum": [
              "all",
              "US",
              "Europe",
              "Asia",
              "LatAm",
              "Africa",
              "Australasia"
            ],
            "type": "string",
            "description": "Which geography to restrict to. Index Ventures is a true dual-coast firm with offices in London, San Francisco and New York and portfolio companies across all continents. Choose 'US' for North America-headquartered companies (Datadog, Confluent, Discord, Robinhood, Roblox, Pure Storage, …), 'Europe' for European-HQ companies (Adyen, Deliveroo, Revolut, Wise, Just Eat Takeaway, King, Skype, Farfetch, …), or one of the smaller regions. 'all' (default) returns the full cross-Atlantic portfolio.",
            "default": "all"
          },
          "sectorFilter": {
            "title": "Sector filter (optional)",
            "type": "array",
            "description": "Restrict to portfolio companies whose sector tag matches any of these strings (case-insensitive substring match against the listing's data-sectors plus the detail-page sector label). Index Ventures sectors: 'aiml' (AI/ML), 'business-applications', 'data', 'entertainment', 'fintech', 'future-of-work', 'healthcare', 'media', 'mobility', 'open-source', 'retail', 'security', 'talent'. Example: ['aiml', 'security'] returns AI/ML or cybersecurity companies. Empty = no sector filter.",
            "items": {
              "type": "string"
            }
          },
          "stageFilter": {
            "title": "Stage Index invested at (optional)",
            "type": "array",
            "description": "Restrict to portfolio companies by the stage Index Ventures first invested at. Index publishes this as either Seed (entered at the seed round via Index Origin / early-stage funds) or Growth/Select (entered later via Index Select, the growth fund). Accepts: 'Seed', 'Growth', 'Select', 'Seed + Growth'. Example: ['Seed'] = only Index-seeded companies; ['Growth'] = only Index Select investments. Empty = both. Index does NOT publish historical Series A/B/C labels.",
            "items": {
              "type": "string"
            }
          },
          "statusFilter": {
            "title": "Status filter (optional)",
            "type": "array",
            "description": "Restrict by current company status. Accepts 'Public' or 'IPO' (companies that have IPO'd — derived from a stock-ticker badge on Index's listing page, e.g. NASDAQ:DDOG for Datadog) or 'Active' / 'Private' (still-private portfolio companies). Index does NOT publicly mark acquired companies — exits are pruned from the live portfolio list rather than relabeled, so an Acquired filter is intentionally not offered. Empty = ALL statuses (default).",
            "items": {
              "type": "string"
            }
          },
          "yearFromTo": {
            "title": "Year invested range (advisory only)",
            "type": "object",
            "description": "Inclusive bounds on the year Index Ventures first invested. NOTE: Index Ventures does NOT publish year-of-investment on its portfolio pages — this field is provided for API-compatibility with sister VC scrapers (Sequoia, a16z, Bessemer) but will return ZERO rows if any bound is set. Leave both bounds as null."
          },
          "maxResults": {
            "title": "Max companies",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum number of portfolio companies to return (1–1000). Each company is one dataset row. The full Index Ventures portfolio currently lists ~386 companies. Default 100.",
            "default": 100
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}