Big Data 7 min read

What 6,271 Failed Startups Reveal About China’s Tech Boom and Bust

By scraping ITjuzi’s death‑company database with Python, the author collected data on 6,271 closed startups, analyzed trends from 2010‑2019, and uncovered how boom periods in 2013‑2014 led to massive closures in 2016‑2017, highlighting the volatile nature of China’s tech entrepreneurship.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
What 6,271 Failed Startups Reveal About China’s Tech Boom and Bust

Data Collection

Using the ITjuzi “death company” database, the author inspected the XHR requests, found the JSON API endpoint

https://www.itjuzi.com/api/closure?com_prov=&fund_status=&sort=&page=1

, and wrote a Python script to crawl the data.

def main():
    data = pd.DataFrame(columns=['com_name','born','close','live_time','total_money','cat_name','com_prov','closure_type'])
    for i in range(1,2):  # set number of pages to crawl
        url = 'https://www.itjuzi.com/api/closure?com_prov=&fund_status=&sort=&page=' + str(i)
        html = requests.get(url=url, headers=headers).content
        doc = json.loads(html.decode('utf-8'))['data']['info']
        for j in range(10):  # 10 companies per page
            data = data.append({
                'com_name': doc[j]['com_name'],
                'born': doc[j]['born'],
                'cat_name': doc[j]['cat_name'],
                'closure_type': doc[j]['closure_type'],
                'close': doc[j]['com_change_close_date'],
                'com_prov': doc[j]['com_prov'],
                'live_time': doc[j]['live_time'],
                'total_money': doc[j]['total_money']
            }, ignore_index=True)
            time.sleep(random.random())
    return data

The script successfully retrieved data for 6,271 closed companies.

Ten‑Year Survival Analysis

From the 6,271 records, 5,765 companies founded between 2010 and 2019 were selected for analysis. The data show a surge of new startups in 2013‑2014 followed by a wave of closures in 2016‑2017, with over 2,000 companies shutting down in 2017.

Various “wind‑up” trends such as mobile internet, live streaming, shared bikes, AI, and short video are illustrated, showing how many firms rode each wave only to burn through capital and collapse.

Even companies that seemed successful, like the short‑lived Panda Live, eventually fell victim to rising costs and market saturation.

Additional observations include “pseudo‑wind‑ups” such as shared charging stations and other low‑value sharing models that never gained traction.

The top “prayer” ranking (companies most remembered despite closure) is led by the infamous video platform QVOD.

Source code for the crawler is available on GitHub: https://github.com/zpw1995/aotodata/tree/master/interest/6217

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

Chinastartupventure capital
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.