{
  "openapi": "3.0.1",
  "info": {
    "title": "Y Combinator Companies & Jobs - 6,000+ startups + open roles",
    "description": "Export YC startups from the official directory (batch, status, team size, industries, hiring flag) or every open job at hiring YC companies from Work at a Startup (salary, equity, visa, skills, founders). Filter by batch, keyword, industry, region, remote.",
    "version": "0.6",
    "x-build-id": "Ytsrp7mULgePwYZUh"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/codeyouknowadmin~yc-companies-and-jobs/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-codeyouknowadmin-yc-companies-and-jobs",
        "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/codeyouknowadmin~yc-companies-and-jobs/runs": {
      "post": {
        "operationId": "runs-sync-codeyouknowadmin-yc-companies-and-jobs",
        "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/codeyouknowadmin~yc-companies-and-jobs/run-sync": {
      "post": {
        "operationId": "run-sync-codeyouknowadmin-yc-companies-and-jobs",
        "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": {
          "mode": {
            "title": "Mode",
            "enum": [
              "companies",
              "jobs"
            ],
            "type": "string",
            "description": "companies = export companies from YC's directory; jobs = every open job at the matching (hiring) companies, from Work at a Startup.",
            "default": "companies"
          },
          "batches": {
            "title": "Batches",
            "type": "array",
            "description": "YC batch codes, e.g. [\"F26\", \"S26\", \"W25\"]. Leave empty for all batches (~6,000 companies).",
            "items": {
              "type": "string"
            }
          },
          "keywords": {
            "title": "Keywords (any match)",
            "type": "array",
            "description": "Match against name, one-liner, description, tags and industries. Example: [\"fintech\", \"payments\"].",
            "items": {
              "type": "string"
            }
          },
          "industries": {
            "title": "Industries",
            "type": "array",
            "description": "Substring match on industries, e.g. [\"B2B\", \"Healthcare\", \"Fintech\", \"Consumer\", \"Industrials\"].",
            "items": {
              "type": "string"
            }
          },
          "tags": {
            "title": "Tags",
            "type": "array",
            "description": "Substring match on tags, e.g. [\"AI\", \"Developer Tools\", \"SaaS\", \"Marketplace\"].",
            "items": {
              "type": "string"
            }
          },
          "regions": {
            "title": "Regions / locations",
            "type": "array",
            "description": "Substring match on regions and locations, e.g. [\"Remote\", \"Europe\", \"San Francisco\", \"India\"].",
            "items": {
              "type": "string"
            }
          },
          "statuses": {
            "title": "Status",
            "type": "array",
            "description": "Company status: Active, Acquired, Public, Inactive.",
            "items": {
              "type": "string",
              "enum": [
                "Active",
                "Acquired",
                "Public",
                "Inactive"
              ]
            }
          },
          "hiringOnly": {
            "title": "Currently hiring only",
            "type": "boolean",
            "description": "Keep only companies flagged as hiring on YC's directory.",
            "default": false
          },
          "minTeamSize": {
            "title": "Min team size",
            "minimum": 0,
            "type": "integer",
            "description": "Keep companies with at least this many employees."
          },
          "maxTeamSize": {
            "title": "Max team size",
            "minimum": 0,
            "type": "integer",
            "description": "Keep companies with at most this many employees."
          },
          "searchQuery": {
            "title": "Search query (server-side)",
            "type": "string",
            "description": "Free-text search passed to YC's directory search (fast). Combine with the filters above."
          },
          "maxCompanies": {
            "title": "Max companies",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Upper bound of results written (you pay per company).",
            "default": 1000
          },
          "jobKeywords": {
            "title": "Job title keywords (jobs mode)",
            "type": "array",
            "description": "Keep jobs whose title/location contain ANY of these, e.g. [\"engineer\", \"designer\"].",
            "items": {
              "type": "string"
            }
          },
          "jobRemoteOnly": {
            "title": "Remote jobs only (jobs mode)",
            "type": "boolean",
            "description": "Keep only jobs whose location mentions remote.",
            "default": false
          },
          "jobVisaOnly": {
            "title": "Visa-friendly jobs only (jobs mode)",
            "type": "boolean",
            "description": "Drop jobs marked e.g. \"US citizen/visa only\".",
            "default": false
          },
          "includeJobDetails": {
            "title": "Include full job details (jobs mode)",
            "type": "boolean",
            "description": "Fetch each job's page for the full description, required skills and interview process. One extra request per job (slower, same price per job).",
            "default": false
          },
          "maxJobs": {
            "title": "Max jobs (jobs mode)",
            "minimum": 1,
            "maximum": 20000,
            "type": "integer",
            "description": "Upper bound on jobs written (you pay per job).",
            "default": 2000
          },
          "concurrency": {
            "title": "Concurrency (jobs mode)",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Parallel page fetches. Lower it if you see 429s.",
            "default": 5
          },
          "proxyConfiguration": {
            "title": "Proxy (jobs mode)",
            "type": "object",
            "description": "Optional. Job pages are fetched without a proxy by default; enable Apify Proxy only if the run reports blocked (403/429) pages.",
            "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}