数据服务
  1. 申报表数据查询
数据服务
  • 接口鉴权(AK/SK 请求头校验)
  • 基本介绍
  • 订单管理
    • 查询数据采集订单接口
      POST
  • 采集数据查询
    • 企业信息
      • 查询企业基础信息数据
      • 查询纳税信用评级数据
      • 查询欠税信息
      • 查询缴款数据接口
      • 查询黑名单数据
    • 发票数据查询
      • 查询发票数据接口
    • 申报表数据查询
      • 查询财务报表数据接口
        POST
      • 查询增值税数据接口
        POST
      • 查询企业所得税数据接口
        POST
  • 数据模型
    • 示例数据模型
      • Pet
      • Category
      • Tag
    • Schemas
      • 企业所得税年报申报表主表
      • 企业基本信息
      • 增值税一般纳税人
      • 纳税基础信息
      • 企业所得税年报表
      • 注册经营信息
      • 增值税小规模纳税人
      • 主表内容
      • 按季度填报信息
      • 企业经营信息
      • 增值税报表
      • 一般纳税人
      • 汇总纳税企业总分机构税款计算
      • 法定代表人关联企业信息
      • com.easydatalink.tech.szyhdataservice.authcollector.client.openservice.authcollect.model.VATOrderOpenForm
      • 实际税额计算
      • 业主信息
      • com.easydatalink.tech.szyhdataservice.authcollector.client.openservice.openapi.DeclareOrderVATOpenResp
      • 小规模纳税人
      • 附报事项
      • 投资信息详情
      • 预缴税款计算
      • 投资信息
      • com.easydatalink.tech.szyhdataservice.authcollector.client.openservice.authcollect.model.vat.VatOrderOpenForm
      • 企业所得税月(季)报申报表主表
      • 基础信息
      • 资质信息
      • com.easydatalink.tech.szyhdataservice.authcollector.client.openservice.authcollect.model.CITOrderOpenForm
      • 月度企业所得税表单
      • 印花税核定信息
      • com.easydatalink.tech.szyhdataservice.authcollector.client.openservice.openapi.DeclareOrderCITOpenResp
      • 核定征收信息
      • com.easydatalink.tech.szyhdataservice.authcollector.client.openservice.authcollect.model.cit.CitOrderOpenForm
      • 三方协议信息
      • 存款账户信息
      • 企业信息
      • com.easydatalink.tech.szyhdataservice.authcollector.client.openservice.openapi.BasicInfoOrderResp
    • 开放接口
      • PaymentOrder
      • TaxNegativeBlackDetail
      • PaymentOrderResp
      • TaxNegativeBlack
      • BaseResultPaymentOrderResp
      • TaxNegativeBlackResp
      • TaxPaymentDataReq
      • BaseResultTaxNegativeBlackResp
      • TaxNegativeBlackReq
    • 开放接口,采集数据查询
      • TaxDelinqInfoDataResp
      • CollectDataRespListTaxDelinqInfoDataResp
      • BaseResult«List«TaxCreditRatingDataResp»»
      • TaxCreditRatingDataResp
      • CollectDataRespListTaxCreditRatingDataResp
      • TaxCreditRatingDataReq
      • BaseResultCollectDataRespListTaxDelinqInfoDataResp
      • BaseResultCollectDataRespListTaxCreditRatingDataResp
      • BaseCollectDataReq
      • TaxCreditRatingIndicatorDataResp
    • AuthCollectOrderPageOpenResp
    • OrderPageOpenResp
    • BaseResultOrderPageOpenResp
    • OrderPageReq
    • AuthOrderInvoiceDetailOpenResp
    • AuthOrderInvoiceOpenResp
    • OrderInvoiceOpenResp
    • BaseResultOrderInvoiceOpenResp
    • OrderInvoicePageReq
    • BalanceSheet
    • key
    • CashFlowStatement
    • MapObject
    • EquityChangeStatement
    • FinancialOrderOpenForm
    • IncomeStatement
    • FinancialOrderOpenResp
    • FinancialStatements
    • BaseResultFinancialOrderOpenResp
    • OrderFinancialOpenReq
  1. 申报表数据查询

查询财务报表数据接口

POST
https://gateway.bigfintax.com/szyh-data-service/api/v1/openapi/data/taxReturn/financial

接口描述#

支持用户查询资产负债表、利润表、现金流量表等各类财务报表数据,以标准化的数据格式呈现,便于用户进行财务分析。

业务规则#

调用限制#

查询请求时,若采集任务未完成,将驳回请求,请您稍后再试。

数据排列#

返回的数据将按照“申报时间”正序排列,当查询数据时,可能会出现“在查询请求期间发生数据更新(更正申报)”的情况,更新的数据可能会被一同返回,为保证数据完整,可根据totalpage参数判断是否增加查询次数。

请求参数

Header 参数

Body 参数application/json

示例
{
    "orderNo": "string",
    "taxPeriodStart": "string",
    "taxPeriodEnd": "string"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://gateway.bigfintax.com/szyh-data-service/api/v1/openapi/data/taxReturn/financial' \
--header 'X-App-Key;' \
--header 'X-App-Secret-Key;' \
--header 'X-Tenant-Id;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "orderNo": "string",
    "taxPeriodStart": "string",
    "taxPeriodEnd": "string"
}'

返回响应

🟢200成功
application/json
Body

示例
{
  "success": false,
  "code": 0,
  "data": {
    "data": [
      {
        "taxPeriodStart": "",
        "taxPeriodEnd": "",
        "declareDate": "",
        "detail": {
          "": {}
        }
      }
    ],
    "orderNo": "",
    "orgName": "",
    "orgTaxNum": "",
    "taxPeriodStart": "",
    "taxPeriodEnd": ""
  },
  "errorMessage": ""
}
修改于 2025-06-16 03:02:08
上一页
查询发票数据接口
下一页
查询增值税数据接口
Built with