{
  "openapi": "3.0.1",
  "info": {
    "title": "Y Combinator Scraper — All YC Companies & Startups",
    "description": "Export every Y Combinator company from YC's official API: name, one-liner, website, batch, team size, industries, regions, status and badges. Filters that YC's API silently ignores are applied properly here.",
    "version": "1.0",
    "x-build-id": "OAumOwDAHYKScj4xb"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/pixflor~ycombinator-companies-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-pixflor-ycombinator-companies-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/pixflor~ycombinator-companies-scraper/runs": {
      "post": {
        "operationId": "runs-sync-pixflor-ycombinator-companies-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/pixflor~ycombinator-companies-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-pixflor-ycombinator-companies-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": {
          "searchQuery": {
            "title": "Search text",
            "type": "string",
            "description": "Keep only companies whose name, one-liner, description, tags or industries contain this. Applied by this Actor: YC's API accepts a q parameter and ignores it."
          },
          "batch": {
            "title": "Batch",
            "type": "string",
            "description": "YC batch code, e.g. W22, S24, F26. This one YC's API really does apply. Leave empty for every batch."
          },
          "status": {
            "title": "Status",
            "enum": [
              "",
              "Active",
              "Inactive",
              "Public",
              "Acquired"
            ],
            "type": "string",
            "description": "Company status. Applied by YC's API.",
            "default": ""
          },
          "industry": {
            "title": "Industry",
            "type": "string",
            "description": "Keep only companies in this industry, e.g. Healthcare, Fintech, B2B. Applied by this Actor — YC's API accepts industry and silently ignores it, returning the entire directory as though it were filtered."
          },
          "tag": {
            "title": "Tag",
            "type": "string",
            "description": "YC tag, e.g. AI, Robotics, Developer Tools. Applied by YC's API."
          },
          "region": {
            "title": "Region",
            "type": "string",
            "description": "e.g. Europe, United States of America, Latin America. Applied by YC's API."
          },
          "minTeamSize": {
            "title": "Minimum team size",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only companies with at least this many people. Applied by this Actor — YC's API ignores team_size.",
            "default": 0
          },
          "maxTeamSize": {
            "title": "Maximum team size",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only companies with at most this many people. Useful for finding early-stage startups.",
            "default": 0
          },
          "batchYearFrom": {
            "title": "Batch year from",
            "minimum": 0,
            "type": "integer",
            "description": "Earliest batch year to include, e.g. 2020. 0 means no limit.",
            "default": 0
          },
          "batchYearTo": {
            "title": "Batch year to",
            "minimum": 0,
            "type": "integer",
            "description": "Latest batch year to include. 0 means no limit.",
            "default": 0
          },
          "hasWebsiteOnly": {
            "title": "Only companies with a website",
            "type": "boolean",
            "description": "Drop companies with no website listed. Useful when building a lead list.",
            "default": false
          },
          "topCompaniesOnly": {
            "title": "Top companies only",
            "type": "boolean",
            "description": "Keep only companies YC badges as a top company.",
            "default": false
          },
          "hiringOnly": {
            "title": "Hiring only",
            "type": "boolean",
            "description": "Keep only companies YC badges as currently hiring.",
            "default": false
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "default",
              "newest",
              "oldest",
              "teamSize",
              "name"
            ],
            "type": "string",
            "description": "How to order the results. 'default' keeps YC's own order, which is newest batch first.",
            "default": "default"
          },
          "maxItems": {
            "title": "Maximum rows",
            "minimum": 0,
            "maximum": 20000,
            "type": "integer",
            "description": "How many companies to return, and what you pay for. The whole directory is about 6,115 companies.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}