qcc.com APIqcc.com ↗
Search Chinese companies and retrieve full business registration profiles from QCC.com, including credit codes, legal representatives, and registration authority details.
curl -X GET 'https://api.parse.bot/scraper/a40e9f2c-67f8-43c6-b8c7-25855389a87b/search_companies?query=%E8%85%BE%E8%AE%AF' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for companies by keyword and return a list of matching company cards. Supports Chinese characters, pinyin, and English company names as search queries.
| Param | Type | Description |
|---|---|---|
| queryrequired | string | Search keyword (company name in Chinese or English, registration number, credit code, etc.) |
{
"type": "object",
"fields": {
"items": "array of company summary objects with name, key_no, status, legal_rep, reg_capital, start_date, address, unified_social_credit_code",
"total": "integer total number of matching companies"
},
"sample": {
"data": {
"items": [
{
"name": "阿里巴巴(中国)网络技术有限公司",
"key_no": "c70a55cb048c8e4db7bca357a2c113e0",
"status": "存续",
"address": "浙江省杭州市滨江区网商路699号",
"legal_rep": "蒋芳",
"start_date": 936806400000,
"reg_capital": "599598.54055万美元",
"unified_social_credit_code": "91330100716105852F"
}
],
"total": 7
},
"status": "success"
}
}About the qcc.com API
The QCC.com API provides access to Chinese business registration data through 2 endpoints, covering company search and full profile retrieval. The search_companies endpoint accepts queries in Chinese characters, pinyin, or registration numbers and returns a list of matching company summaries. The get_company_profile endpoint returns structured registration details including unified social credit codes, registered capital, and scope of operations.
Company Search
The search_companies endpoint accepts a query parameter — a Chinese company name, English name, unified social credit code, or registration number — and returns an array of matching company summary objects. Each item in the items array includes name, key_no (the unique company hash ID), status, legal_rep, reg_capital, start_date, address, and unified_social_credit_cod. The total field indicates how many matching companies exist across all pages, useful for assessing query breadth before iterating results.
Company Profile
The get_company_profile endpoint accepts a key_no value — obtained from search results — and returns a full company profile. The basic_info object includes credit_code, reg_capital, paid_capital, econ_kind (economic entity type), address, scope (business scope/operations description), reg_no, org_no, english_name, belong_org (registration authority), and leg (legal representative details). The top-level response also surfaces name, key_no, and status directly.
Data Coverage and Scope
QCC.com aggregates Chinese enterprise registration data sourced from official government filings. The API covers mainland Chinese companies registered with the State Administration for Market Regulation. Fields like econ_kind distinguish between limited liability companies, joint-stock companies, and other entity types. The scope field captures the officially registered business scope text, which can be several hundred characters for companies with broad operational licenses.
- Verify a Chinese supplier's registration status and legal representative before entering a procurement contract
- Enrich a B2B database with registered capital and unified social credit codes for mainland Chinese entities
- Screen potential partners by checking
statusandecon_kindfields against internal compliance criteria - Map company addresses from the
addressfield to geo-coordinates for regional market analysis - Resolve a company name or registration number to a canonical
key_nofor use as a stable identifier across systems - Audit the registered scope of operations (
scopefield) to confirm a vendor is licensed for the services they claim - Build a company monitoring feed by polling
get_company_profilefor changes in registration status or legal representative
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does QCC.com have an official developer API?+
What does the `status` field in search and profile results represent?+
status field reflects the company's current registration standing as recorded in official filings — values typically include states such as active (存续), cancelled (注销), revoked (吊销), or similar. It is returned both in the summary items from search_companies and at the top level of get_company_profile responses.Does the API return shareholder, equity structure, or beneficial ownership data?+
Are companies from Hong Kong, Macau, or Taiwan included in search results?+
How should I handle a `query` that returns a high `total` count in `search_companies`?+
total field indicates the full match count across the dataset. Common or generic query strings can return thousands of results. Using a more specific identifier — such as a full unified social credit code or exact registered name — will narrow results and surface the correct key_no for use with get_company_profile.