文档中心 > API类目 > 司法拍卖

taobao.auction.gov.data.monthly.get (按月统计法院拍卖数据)

按月统计法院拍卖数据 包含: 标的件数统计:发布标的件数、结束标的件数、开拍标的件数 竞价实况:预计成交金额、出价次数、报名人数 在线标的:在线标的件数、意向用户数、网拍围观人次 最长12个月,月的起始时间不能早于2017年3月

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
court_name String 必须 宁波北仑区法院 法院名称
is_include_sub Boolean 必须 false 统计数据是够包含下属法院
start_month String 必须 2017-03 开始月份
end_month String 必须 2018-02 截止月份(统计数据包含这个月)

响应参数

名称 类型 示例值 描述
results CourtsBidStatMonthlyList [] 111 按月统计结果列表
  • courts_bid_stat_sum
  • CourtsBidStatSum
  • 111
  • 法院按月维度标的统计汇总
  • └ publish_count
  • Number
  • 0
  • 发拍次数
  • └ start_count_dist
  • Number
  • 0
  • 开拍件数(去重)
  • └ hammer_price
  • Number
  • 0
  • 成交金额(成交标的)
  • └ hammer_count
  • Number
  • 0
  • 成交件数
  • └ bid_count
  • Number
  • 0
  • 出价次数
  • └ end_count
  • Number
  • 0
  • 结束标的数
  • └ end_count_dist
  • Number
  • 0
  • 结束标的件数(去重)
  • └ start_price
  • Number
  • 0
  • 起拍价(成交标的)
  • └ interest_count
  • Number
  • 0
  • 意向用户数(交保数+订阅数)
  • └ start_count
  • Number
  • 0
  • 开拍数
  • └ avg_addv_percent
  • Number
  • 0
  • 平均溢价率(万分位)
  • └ publish_count_dist
  • Number
  • 0
  • 发拍件数(去重)
  • └ apply_count
  • Number
  • 0
  • 报名人数(含交保失败)
  • └ period
  • String
  • 201708
  • 时间区间(月份)

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AuctionGovDataMonthlyGetRequest req = new AuctionGovDataMonthlyGetRequest();
req.setCourtName("宁波北仑区法院");
req.setIsIncludeSub(false);
req.setStartMonth("2017-03");
req.setEndMonth("2018-02");
AuctionGovDataMonthlyGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<auction_gov_data_monthly_get_response>
    <results>
        <courts_bid_stat_monthly_list>
            <courts_bid_stat_sum>
                <publish_count>0</publish_count>
                <start_count_dist>0</start_count_dist>
                <hammer_price>0</hammer_price>
                <hammer_count>0</hammer_count>
                <bid_count>0</bid_count>
                <end_count>0</end_count>
                <end_count_dist>0</end_count_dist>
                <start_price>0</start_price>
                <interest_count>0</interest_count>
                <start_count>0</start_count>
                <avg_addv_percent>0</avg_addv_percent>
                <publish_count_dist>0</publish_count_dist>
                <apply_count>0</apply_count>
            </courts_bid_stat_sum>
            <period>201708</period>
        </courts_bid_stat_monthly_list>
    </results>
</auction_gov_data_monthly_get_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部