POST公開中enterprise-general-taxpayer-query
企业纳税人信息查询
查询企业的通用纳税人详细信息,包括注册、经营状态及税务登记情况,帮助用户全面了解目标企业的税务画像和运营合规性。
エンドポイント
https://openapi.toolkk.com/enterprise/general-taxpayer/query
レート制限
毎分 60 回
タイムアウト
5000 ms
查询企业的通用纳税人详细信息,包括注册、经营状态及税务登记情况,帮助用户全面了解目标企业的税务画像和运营合规性。
エンドポイント
https://openapi.toolkk.com/enterprise/general-taxpayer/query
レート制限
毎分 60 回
タイムアウト
5000 ms
すべての API は code、message、data の標準構造で解析する前提です。
{ code, message, data }
curl --request POST \
--url 'https://openapi.toolkk.com/enterprise/general-taxpayer/query' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"logo": {
"type": "string",
"example": "",
"description": "公司logo"
},
"name": {
"type": "string",
"example": "杭州安那其科技有限公司",
"description": "公司名"
},
"alias": {
"type": "string",
"example": "",
"description": "公司简称"
},
"endDate": {
"type": "string",
"example": "9999-12-31 00:00:00",
"description": "认定有效期截止"
},
"startDate": {
"type": "string",
"example": "2021-02-01 00:00:00",
"description": "认定有效期起始时间"
},
"taxpayerQualificationType": {
"type": "string",
"example": "增值税一般纳税人",
"description": "纳税人资格类型"
},
"taxpayerIdentificationNumber": {
"type": "string",
"example": "91330110MA2CC1X505",
"description": "纳税人识别号"
}
}
},
"example": [
{
"logo": "",
"name": "杭州安那其科技有限公司",
"alias": "",
"endDate": "9999-12-31 00:00:00",
"startDate": "2021-02-01 00:00:00",
"taxpayerQualificationType": "增值税一般纳税人",
"taxpayerIdentificationNumber": "91330110MA2CC1X505"
}
]
},
"total": {
"type": "string",
"example": "1",
"description": "总数"
}
},
"message": "success"
}以下の項目はサンプル JSON から自動抽出した参考情報です。
| パス | 型 | サンプル値 |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.items | object | {...} |
| data.items.type | string | array |
| data.total | object | {...} |
| data.total.type | string | string |
| data.total.example | string | 1 |
| data.total.description |
| string |
| 总数 |
| message | string | success |