欢迎来到Wabc (wabc.cc)

翔云-增值税发票 真伪查验、验真、核验API(支持专票、普票、电子发票、机动车销售发票等验证真伪)

价格: ¥ 99 金币可抵¥ 1

最后更新: 2019-12-15 20:54:53

演示地址:

安装费: 免费

分类
Classtype
Brand
Language
Database
Encrypt
Authorize
大小
10 MB
发货方式
自动发货
下载方式
远程下载

API接口

发票查询验真API

发票查询验真API

调用地址:http://verinvoice.sinosecu.com.cn/verapi/verInvoice.do

请求方式:POST

返回类型:JSON

API 调用:API 简单身份认证调用方法(APPCODE)展开API 签名认证调用方法(AppKey & AppSecret)

调试工具:去调试

请求参数(Headers)

无参数

请求参数(Query)

无参数

请求参数(Body)
名称类型是否必须描述
billingDateSTRING必选开票日期:YYYY-MM-DD
checkCodeSTRING可选校验码后6位(普票、电子普票、卷式普票必填)
invoiceCodeSTRING必选发票代码
invoiceNumberSTRING必选发票号码
totalAmountSTRING可选合计金额(不含税),必须精确到两位小数(专票、货运专票、机动车专票必填)
请求示例
curl
Java
C#
PHP
Python
ObjectC
curl -i -X POST 'http://verinvoice.sinosecu.com.cn/verapi/verInvoice.do'  -H 'Authorization:APPCODE 你自己的AppCode' --data 'billingDate=billingDate&checkCode=checkCode&invoiceCode=invoiceCode&invoiceNumber=invoiceNumber&totalAmount=totalAmount'
    正常返回示例
    {
      "message": {
        "status": 2,
        "value": "查询成功"
      },
      "invoice": [
        {
          "invoiceList": [
            {
              "veritem": [
                {
                  "desc": "商品编码",
                  "name": "rowNo",
                  "content": "1"
                },
                {
                  "desc": "货物或应税劳务名称",
                  "name": "commodityName",
                  "content": "载货汽车"
                },
                {
                  "desc": "规格型号",
                  "name": "specificationModel",
                  "content": ""
                },
                {
                  "desc": "单位",
                  "name": "unit",
                  "content": "台"
                },
                {
                  "desc": "数量",
                  "name": "quantity",
                  "content": "0.5"
                },
                {
                  "desc": "单价",
                  "name": "unitPrice",
                  "content": "116239.31623931623"
                },
                {
                  "desc": "金额",
                  "name": "amount",
                  "content": "58119.66"
                },
                {
                  "desc": "税率",
                  "name": "taxRate",
                  "content": "0.17"
                }
              ]
            }
          ],
          "veritem": [
            {
              "desc": "发票类型",
              "name": "invoiceType",
              "content": "01"
            },
            {
              "desc": "所属行政区编码",
              "name": "administrativeDivisionNo",
              "content": "4200"
            },
            {
              "desc": "所属行政区名称",
              "name": "administrativeDivisionName",
              "content": "湖北"
            },
            {
              "desc": "发票代码",
              "name": "invoiceCode",
              "content": "420xxxx30"
            },
            {
              "desc": "发票号码",
              "name": "invoiceNumber",
              "content": "00xxxx36"
            },
            {
              "desc": "开票日期",
              "name": "billingDate",
              "content": "2017-02-22"
            },
            {
              "desc": "购方名称",
              "name": "purchaserName",
              "content": "保定xx有限公司"
            },
            {
              "desc": "购方税号",
              "name": "purchaserTaxNo",
              "content": "130604561996127"
            },
            {
              "desc": "购方地址电话",
              "name": "purchaserAddressPhone",
              "content": "保xxxx二村 0312-xx66"
            },
            {
              "desc": "购方开户行账户",
              "name": "purchaserBank",
              "content": "保定市xxx作联社 2xxx80"
            },
            {
              "desc": "销方名称",
              "name": "salesName",
              "content": "随州市xx有限公司"
            },
            {
              "desc": "销方税号",
              "name": "salesTaxNo",
              "content": "914xxxxx48X"
            },
            {
              "desc": "销方地址电话",
              "name": "salesAddressPhone",
              "content": "随州市xx北端 0722-xx36"
            },
            {
              "desc": "销方开户行账户",
              "name": "salesBank",
              "content": "中国工商银xxxx分行 180xxxx77"
            },
            {
              "desc": "合计金额",
              "name": "totalAmount",
              "content": "58119.66"
            },
            {
              "desc": "合计税额",
              "name": "totalTax",
              "content": "9880.34"
            },
            {
              "desc": "价税合计",
              "name": "amountTax",
              "content": "68000.0"
            },
            {
              "desc": "价税合计_中文",
              "name": "amountTaxCn",
              "content": "陆万捌仟圆整"
            },
            {
              "desc": "备注",
              "name": "remarks",
              "content": ""
            },
            {
              "desc": "机器编码",
              "name": "machineCode",
              "content": "661xxxx"
            },
            {
              "desc": "校验码",
              "name": "checkCode",
              "content": "6216xxxx"
            },
            {
              "desc": "发票状态",
              "name": "state",
              "content": "1"
            }
          ]
        }
      ]
    }
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    失败返回示例
    {
      "message": {
        "status": -1,
        "value": "识别失败!ReconClientL:-2"
      },
      "cardsinfo": []
    }
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    错误码定义
    错误码错误信息描述
    100000{ "message":{"status":100000,"value":"缺少参数"},缺少参数
    100001{ "message":{"status":100001,"value":"参数取值范围错误"},参数取值范围错误
    100005{ "message":{"status":100005,"value":"请求过于频繁"},请求过于频繁
    0 (0%)

    好评

    0 (0%)

    中评

    0 (0%)

    差评

    • 在线客服

      点击这里给我发消息

      官方微信

      仅处理投诉、举报及平台使用问题;
      商品问题请咨询商家客服!

    浏览记录