├── .github └── workflows │ └── auto_update.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── combine_responses.rb ├── data ├── combined_companies_data.json ├── yc_essential_data.csv └── yc_essential_data.json ├── json_to_csv.rb ├── refresh_data.sh ├── remove_extra_key.sh ├── responses ├── F24.json ├── Fall 2024.json ├── Fall 2025.json ├── IK12.json ├── S05.json ├── S06.json ├── S07.json ├── S08.json ├── S09.json ├── S10.json ├── S11.json ├── S12.json ├── S13.json ├── S14.json ├── S15.json ├── S16.json ├── S17.json ├── S18.json ├── S19.json ├── S20.json ├── S21.json ├── S22.json ├── S23.json ├── S24.json ├── Spring 2025.json ├── Summer 2005.json ├── Summer 2006.json ├── Summer 2007.json ├── Summer 2008.json ├── Summer 2009.json ├── Summer 2010.json ├── Summer 2011.json ├── Summer 2012.json ├── Summer 2013.json ├── Summer 2014.json ├── Summer 2015.json ├── Summer 2016.json ├── Summer 2017.json ├── Summer 2018.json ├── Summer 2019.json ├── Summer 2020.json ├── Summer 2021.json ├── Summer 2022.json ├── Summer 2023.json ├── Summer 2024.json ├── Summer 2025.json ├── Unspecified.json ├── W06.json ├── W07.json ├── W08.json ├── W09.json ├── W10.json ├── W11.json ├── W12.json ├── W13.json ├── W14.json ├── W15.json ├── W16.json ├── W17.json ├── W18.json ├── W19.json ├── W20.json ├── W21.json ├── W22.json ├── W23.json ├── W24.json ├── W25.json ├── Winter 2006.json ├── Winter 2007.json ├── Winter 2008.json ├── Winter 2009.json ├── Winter 2010.json ├── Winter 2011.json ├── Winter 2012.json ├── Winter 2013.json ├── Winter 2014.json ├── Winter 2015.json ├── Winter 2016.json ├── Winter 2017.json ├── Winter 2018.json ├── Winter 2019.json ├── Winter 2020.json ├── Winter 2021.json ├── Winter 2022.json ├── Winter 2023.json ├── Winter 2024.json ├── Winter 2025.json ├── X25.json └── yc_batches.json └── scraper.rb /.github/workflows/auto_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/.github/workflows/auto_update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | - 0.1 2 | 3 | - Initial release with data upto S21 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/README.md -------------------------------------------------------------------------------- /combine_responses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/combine_responses.rb -------------------------------------------------------------------------------- /data/combined_companies_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/data/combined_companies_data.json -------------------------------------------------------------------------------- /data/yc_essential_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/data/yc_essential_data.csv -------------------------------------------------------------------------------- /data/yc_essential_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/data/yc_essential_data.json -------------------------------------------------------------------------------- /json_to_csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/json_to_csv.rb -------------------------------------------------------------------------------- /refresh_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/refresh_data.sh -------------------------------------------------------------------------------- /remove_extra_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/remove_extra_key.sh -------------------------------------------------------------------------------- /responses/F24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/F24.json -------------------------------------------------------------------------------- /responses/Fall 2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Fall 2024.json -------------------------------------------------------------------------------- /responses/Fall 2025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Fall 2025.json -------------------------------------------------------------------------------- /responses/IK12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/IK12.json -------------------------------------------------------------------------------- /responses/S05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S05.json -------------------------------------------------------------------------------- /responses/S06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S06.json -------------------------------------------------------------------------------- /responses/S07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S07.json -------------------------------------------------------------------------------- /responses/S08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S08.json -------------------------------------------------------------------------------- /responses/S09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S09.json -------------------------------------------------------------------------------- /responses/S10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S10.json -------------------------------------------------------------------------------- /responses/S11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S11.json -------------------------------------------------------------------------------- /responses/S12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S12.json -------------------------------------------------------------------------------- /responses/S13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S13.json -------------------------------------------------------------------------------- /responses/S14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S14.json -------------------------------------------------------------------------------- /responses/S15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S15.json -------------------------------------------------------------------------------- /responses/S16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S16.json -------------------------------------------------------------------------------- /responses/S17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S17.json -------------------------------------------------------------------------------- /responses/S18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S18.json -------------------------------------------------------------------------------- /responses/S19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S19.json -------------------------------------------------------------------------------- /responses/S20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S20.json -------------------------------------------------------------------------------- /responses/S21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S21.json -------------------------------------------------------------------------------- /responses/S22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S22.json -------------------------------------------------------------------------------- /responses/S23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S23.json -------------------------------------------------------------------------------- /responses/S24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/S24.json -------------------------------------------------------------------------------- /responses/Spring 2025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Spring 2025.json -------------------------------------------------------------------------------- /responses/Summer 2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2005.json -------------------------------------------------------------------------------- /responses/Summer 2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2006.json -------------------------------------------------------------------------------- /responses/Summer 2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2007.json -------------------------------------------------------------------------------- /responses/Summer 2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2008.json -------------------------------------------------------------------------------- /responses/Summer 2009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2009.json -------------------------------------------------------------------------------- /responses/Summer 2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2010.json -------------------------------------------------------------------------------- /responses/Summer 2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2011.json -------------------------------------------------------------------------------- /responses/Summer 2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2012.json -------------------------------------------------------------------------------- /responses/Summer 2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2013.json -------------------------------------------------------------------------------- /responses/Summer 2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2014.json -------------------------------------------------------------------------------- /responses/Summer 2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2015.json -------------------------------------------------------------------------------- /responses/Summer 2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2016.json -------------------------------------------------------------------------------- /responses/Summer 2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2017.json -------------------------------------------------------------------------------- /responses/Summer 2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2018.json -------------------------------------------------------------------------------- /responses/Summer 2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2019.json -------------------------------------------------------------------------------- /responses/Summer 2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2020.json -------------------------------------------------------------------------------- /responses/Summer 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2021.json -------------------------------------------------------------------------------- /responses/Summer 2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2022.json -------------------------------------------------------------------------------- /responses/Summer 2023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2023.json -------------------------------------------------------------------------------- /responses/Summer 2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2024.json -------------------------------------------------------------------------------- /responses/Summer 2025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Summer 2025.json -------------------------------------------------------------------------------- /responses/Unspecified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Unspecified.json -------------------------------------------------------------------------------- /responses/W06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W06.json -------------------------------------------------------------------------------- /responses/W07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W07.json -------------------------------------------------------------------------------- /responses/W08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W08.json -------------------------------------------------------------------------------- /responses/W09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W09.json -------------------------------------------------------------------------------- /responses/W10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W10.json -------------------------------------------------------------------------------- /responses/W11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W11.json -------------------------------------------------------------------------------- /responses/W12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W12.json -------------------------------------------------------------------------------- /responses/W13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W13.json -------------------------------------------------------------------------------- /responses/W14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W14.json -------------------------------------------------------------------------------- /responses/W15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W15.json -------------------------------------------------------------------------------- /responses/W16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W16.json -------------------------------------------------------------------------------- /responses/W17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W17.json -------------------------------------------------------------------------------- /responses/W18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W18.json -------------------------------------------------------------------------------- /responses/W19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W19.json -------------------------------------------------------------------------------- /responses/W20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W20.json -------------------------------------------------------------------------------- /responses/W21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W21.json -------------------------------------------------------------------------------- /responses/W22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W22.json -------------------------------------------------------------------------------- /responses/W23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W23.json -------------------------------------------------------------------------------- /responses/W24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W24.json -------------------------------------------------------------------------------- /responses/W25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/W25.json -------------------------------------------------------------------------------- /responses/Winter 2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2006.json -------------------------------------------------------------------------------- /responses/Winter 2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2007.json -------------------------------------------------------------------------------- /responses/Winter 2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2008.json -------------------------------------------------------------------------------- /responses/Winter 2009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2009.json -------------------------------------------------------------------------------- /responses/Winter 2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2010.json -------------------------------------------------------------------------------- /responses/Winter 2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2011.json -------------------------------------------------------------------------------- /responses/Winter 2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2012.json -------------------------------------------------------------------------------- /responses/Winter 2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2013.json -------------------------------------------------------------------------------- /responses/Winter 2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2014.json -------------------------------------------------------------------------------- /responses/Winter 2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2015.json -------------------------------------------------------------------------------- /responses/Winter 2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2016.json -------------------------------------------------------------------------------- /responses/Winter 2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2017.json -------------------------------------------------------------------------------- /responses/Winter 2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2018.json -------------------------------------------------------------------------------- /responses/Winter 2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2019.json -------------------------------------------------------------------------------- /responses/Winter 2020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2020.json -------------------------------------------------------------------------------- /responses/Winter 2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2021.json -------------------------------------------------------------------------------- /responses/Winter 2022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2022.json -------------------------------------------------------------------------------- /responses/Winter 2023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2023.json -------------------------------------------------------------------------------- /responses/Winter 2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2024.json -------------------------------------------------------------------------------- /responses/Winter 2025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/Winter 2025.json -------------------------------------------------------------------------------- /responses/X25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/X25.json -------------------------------------------------------------------------------- /responses/yc_batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/responses/yc_batches.json -------------------------------------------------------------------------------- /scraper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybhalotia/yc_company_scraper/HEAD/scraper.rb --------------------------------------------------------------------------------