查询当日成交接口1

信用账户查询当日成交接口

/api/v1.0/creditorder

请求方式:GET

参数 必填 类型 描述
account Y string 交易账号
daytype Y string 0=当日 1=历史
type Y string 0=委托 1=成交

请求实列:

http://127.0.0.1:9999/api/v1.0/creditorder?account=1200012000&daytype=0&type=1

返回数据:

[
    [
        "成交时间",
        "股东帐户",
        "交易市场",
        "证券代码",
        "证券名称",
        "操作",
        "成交数量",
        "成交均价",
        "成交金额",
        "合同编号",
        "成交编号",
        ""
    ],
    [
        "13:36:06",
        "0602926759",
        "深圳A股",
        "000725",
        "京东方A",
        "融资买入",
        "100",
        "3.450",
        "345.000",
        "1066",
        "2283",
        ""
    ],
    [
        "09:30:02",
        "0602926759",
        "深圳A股",
        "000725",
        "京东方A",
        "担保品卖出",
        "100",
        "3.460",
        "346.000",
        "76",
        "52",
        ""
    ]
]

?>