Company Invoicing Information Lookup
Look up company invoicing information, including company name, tax ID, address, phone number, bank name, and bank account details. This facilitates invoice management and financial reconciliation.
Documentation
Feature Overview
This API provides comprehensive lookup services for company invoicing information. Users can quickly retrieve complete billing details of target companies using unique identifiers like the company name or Unified Social Credit Code. Returned data includes, but is not limited to, the full company name, taxpayer identification number (TIN), registered address, contact phone number, bank name, and bank account number. This service is designed to streamline the information verification workflow for financial personnel when issuing and receiving invoices, thereby improving operational efficiency and data accuracy.
Use Cases
- Financial Reconciliation: Before issuing invoices, suppliers or customers can use this API to verify the payee's or payer's billing information. This ensures invoice accuracy and prevents voided or returned invoices due to incorrect details.
- E-commerce Platforms: When processing B2B orders, e-commerce platforms can automatically look up and auto-fill invoicing information, enhancing user experience and reducing manual intervention.
- ERP System Integration: Internal enterprise systems such as ERP and OA can integrate this API to automate the management and querying of invoicing details, boosting internal operational efficiency.
- Financial Services: Banks or other financial institutions can use this to verify corporate identity and financial qualifications when serving business clients.
- Tax Compliance: Helps companies ensure their invoicing practices comply with tax regulations, mitigating tax-related risks.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"enterpriseName": "阿里巴巴(中国)有限公司",
"pageNo": 1,
"pageSize": 10
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"total": 1,
"list": [
{
"name": "阿里巴巴(中国)有限公司",
"creditNo": "91330100799655058B",
"address": "杭州市余杭区文一西路969号",
"phone": "0571-85022088",
"bank": "招商银行",
"account": "571900201510201"
}
]
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| enterpriseName | 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 | {"name":"阿里巴巴(中国)有限公司","creditNo":"91330100799655058B","address":"杭州市余杭区文一西路969号","phone":"0571-85022088","bank":"招商银行","account":"571900201510201"} |