Get Full Company Data Endpoint
Retrieve comprehensive company information including registration details, business data, judicial records, risk assessment, and AI-powered analysis.
Request
GET /wp-json/chinacheckup/v1/getFull
Authentication
| Method |
Example |
| Header (preferred) |
X-API-Key: your-api-key |
| Query parameter |
?token=your-api-key |
Parameters
| Parameter |
Type |
Required |
Description |
uscc |
string |
Yes |
Company USCC (Unified Social Credit Code) – 18 characters |
Example Request
GET /wp-json/chinacheckup/v1/getFull?uscc=91110000625910848Y
Header: X-API-Key: YOUR_API_KEY
Response
{
"name": "东陶(中国)有限公司",
"registered_english_name": "Dongtao (China) Co., Ltd.",
"creditCode": "91110000625910848Y",
"regStatus": "Active",
"regStatus_interpretation": "This status indicates that the company exists and it is in operation.",
"estiblishTime": "1995-08-18",
"estiblishTime_formatted": "1995-08-18",
"company_age_years": "29",
"percentileScore": "85%",
"regCapital": "USD 50,000,000",
"actualCapital": "USD 50,000,000",
"companyOrgType": "Limited Liability Company (Foreign Investment)",
"city": "Beijing",
"base": "Beijing",
"district": "Chaoyang",
"regLocation": "No. 123 Example Road, Chaoyang District, Beijing",
"businessScope": "Manufacturing and sales of sanitary ware...",
"legalPersonName": "Zhang Wei",
"legalPersonType": "Person",
"phoneNumber": "010-12345678",
"email": "contact@example.com",
"website": "www.example.com",
"IndustryMain": "Manufacturing",
"IndustryBig": "Sanitary Ware",
"staffNumRange": "1000-4999",
"socialStaffNum": 2500,
"analysis": "This is a well-established foreign-invested company...",
"risk_info": {
"riskLevel": "low",
"ownRiskTotal": 0,
"associatedRiskTotal": 2,
"categories": [...]
},
"staffList": [...],
"shareHolderList": [...],
"branchList": [...],
"lawSuitList": [...],
"changeList": [...],
"translation_complete": 1,
"_credits": 95,
"_already_purchased": false
}
Response Fields
Basic Information
| Field |
Type |
Description |
name |
string |
Chinese company name |
registered_english_name |
string |
Official registered English name |
creditCode |
string |
USCC (18 characters) |
regStatus |
string |
Registration status (e.g., Active, Cancelled) |
regStatus_interpretation |
string |
Explanation of the registration status |
estiblishTime |
string |
Company establishment date |
company_age_years |
string |
Company age in years |
percentileScore |
string |
Company reliability score (0-100%) |
Financial Information
| Field |
Type |
Description |
regCapital |
string |
Registered capital |
actualCapital |
string |
Actual paid-in capital |
Location & Contact
| Field |
Type |
Description |
city |
string |
City (translated) |
base |
string |
Province/region (translated) |
district |
string |
District |
regLocation |
string |
Registered address |
phoneNumber |
string |
Contact phone number |
email |
string |
Contact email |
website |
string |
Company website |
Business Information
| Field |
Type |
Description |
companyOrgType |
string |
Company organization type |
businessScope |
string |
Business scope description |
IndustryMain |
string |
Main industry category |
IndustryBig |
string |
Industry major category |
IndustryMiddle |
string |
Industry middle category |
IndustrySmall |
string |
Industry minor category |
staffNumRange |
string |
Employee count range |
socialStaffNum |
integer |
Social insurance registered employees |
legalPersonName |
string |
Legal representative name |
legalPersonType |
string |
Legal representative type (Person/Company) |
Risk Assessment
| Field |
Type |
Description |
risk_info |
object |
Comprehensive risk assessment data |
analysis |
string |
AI-generated company analysis |
Lists (Arrays)
| Field |
Type |
Description |
staffList |
array |
Key personnel and executives |
shareHolderList |
array |
Shareholders and ownership structure |
branchList |
array |
Branch offices |
investList |
array |
Investments in other companies |
lawSuitList |
array |
Legal cases and lawsuits |
courtAnnouncementList |
array |
Court announcements |
dishonestList |
array |
Dishonest debtor records |
abnormalList |
array |
Business abnormalities |
changeList |
array |
Company changes history |
historyNameList |
array |
Previous company names |
Metadata
| Field |
Type |
Description |
translation_complete |
integer |
Translation status (0 = in progress, 1 = complete) |
_credits |
integer |
Your remaining credit balance |
_already_purchased |
boolean |
Whether this report was previously purchased |
Cost
1 credit per unique company (USCC). Subsequent calls for the same USCC are free.
Error Responses
| Status |
Code |
Description |
| 400 |
missing_uscc |
Missing uscc parameter |
| 400 |
no_wallet |
User has no wallet configured |
| 401 |
missing_api_key |
No API key provided |
| 402 |
insufficient_credits |
Not enough credits to purchase report |
| 403 |
invalid_api_key |
Invalid API key |
Notes
- Data is cached for 180 days – subsequent calls return cached data without additional API costs
- First call may take longer as data is fetched from source
- Check
translation_complete field – if 0, some fields may still be in Chinese
- Use
getTranslationStatus to poll for translation completion
- The
_already_purchased field indicates if this call was charged or free (previously purchased)