Corporate Taxpayer Information Lookup
Query detailed general taxpayer information for businesses, including registration, operating status, and tax registration details. This helps users fully understand a target company's tax profile and operational compliance.
Documentation
Feature Introduction
This API provides detailed lookup services for general corporate taxpayers. Users can use the company name or Unified Social Credit Code as search criteria to obtain comprehensive tax data for a target company. The returned data covers key details such as the company's basic registration information, current operating status, detailed business scope, tax registration status, taxpayer qualification type, and related tax credit ratings. This service is designed to help users gain a deep understanding of a company's tax profile and operational compliance.
Application Scenarios
- Corporate Credit Assessment: Financial institutions can use this API to verify a company's tax qualifications and operating status prior to loan approval, business partnerships, or investment decisions, effectively assessing potential risks.
- Supplier/Customer Background Checks: When selecting partners (suppliers, customers, etc.), companies can quickly verify their tax compliance and historical credit to ensure transaction security and stability.
- Risk Monitoring: Continuously monitor changes in the tax status of affiliated companies to detect potential tax risks or operational anomalies in a timely manner.
- Market Analysis and Research: Collect tax data for companies in specific industries or regions for macroeconomic analysis, market trend insights, or competitor research.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"keyword": "阿里巴巴(中国)有限公司",
"pageNo": 1,
"pageSize": 10
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"total": 1,
"list": [
{
"enterpriseName": "阿里巴巴(中国)有限公司",
"creditNo": "91330100799655058B",
"taxpayerType": "一般纳税人"
}
]
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| keyword | string | 阿里巴巴(中国)有限公司 |
| pageNo | number | 1 |
| pageSize | number | 10 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | SUCCESS |
| message | string | success |
| data | object | {...} |
| data.total | number | 1 |
| data.list | array | {"enterpriseName":"阿里巴巴(中国)有限公司","creditNo":"91330100799655058B","taxpayerType":"一般纳税人"} |